Skip to content

Commit

Permalink
Send logs to socket (#101)
Browse files Browse the repository at this point in the history
* Add VR patch for Outer Wilds update 1.0.6

* updated the readme (#87)

* Owml manifest (#88)

* owml manifest file

* fixed error messages in storage helper (#89)

* adaptations for the mod manager (#90)

* removed (slow) version checking
* added descriptions
* updated readme

* mods have separate logger and console objects (#91)

* mods have separate logger and console objects

* Logging some stuff to socket

* Sending absolutely everything to socket

* Cleanup

* Pick between file and socket consoles

* Console port argument constant

* Simpler argument get

* Add separate project for logging

* Move all logging-related stuff to Logging project

* Helper Output.cs

* Use public property instead of getter / setter.

* Simplified command line argument parsing

* Socket creation early return

* Exit console if socket port argument present

* Remove this line that I don't know why I had in the first place

* Use Output.OnWrite instead of ModConsole.OnConsole

* Simplify decrecated event

* Cleanup

* Make Mod*Output extend from ModConsole

* Mod interaction (#93)

Added mod interaction methods, and improved Invoke method.

* Simplify modsocketoutput constructor

* Remove unnecessary statics

* Revert "Remove unnecessary statics"

This reverts commit 8dc0c63.

* Revert ModConsole namespace

* Rename ModConsole to ModOutput

* Ouput factory

* Remove redundant elses

* Rename instance to OwmlOutput, remove deprecated

* Cleanup

* formatting, removed unused stuff

* .

* Using ExitConsole in two places

* Name / message separator as const

* version

* Move ModHelper.Logging to ModHelper

* Revert singletone instance

* Remove references to Logging project

* Rename protected variables

* protected ModConsole constructor

* Move logging stuff to Logging subdirectory

* Update OW.Unity.Dlls to 1.0.5

* Bump version

Co-authored-by: AmazingAlek <[email protected]>
Co-authored-by: Mister_Nebula <[email protected]>
  • Loading branch information
3 people authored May 13, 2020
1 parent 1536b96 commit 058d62d
Show file tree
Hide file tree
Showing 38 changed files with 397 additions and 205 deletions.
26 changes: 26 additions & 0 deletions OWML.Common/CommandLineArguments.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace OWML.Common
{
public static class CommandLineArguments
{
public static string GetArgument(string name)
{
var arguments = Environment.GetCommandLineArgs();
var keyIndex = Array.IndexOf(arguments, $"-{name}");
if (keyIndex == -1 || keyIndex >= arguments.Length - 1)
{
return null;
}
return arguments[keyIndex + 1];
}

public static bool HasArgument(string name)
{
return GetArgument(name) != null;
}
}
}
1 change: 1 addition & 0 deletions OWML.Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
public class Constants
{
public const string QuitKeyPhrase = "{RageAgainstTheDyingOfTheLight}";
public const string ConsolePortArgument = "consolePort";
}
}
68 changes: 36 additions & 32 deletions OWML.Common/OWML.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,38 +32,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="OW.Unity.Dlls, Version=1.0.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\OW.Unity.Dlls.dll</HintPath>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="CommandLineArguments.cs" />
<Compile Include="Constants.cs" />
<Compile Include="Events.cs" />
<Compile Include="IHarmonyHelper.cs" />
Expand Down Expand Up @@ -100,6 +69,41 @@
<Compile Include="Menus\IModToggleInput.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="OW.Unity.Dlls, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\OW.Unity.Dlls.dll</HintPath>
</Reference>
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion OWML.Common/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="OW.Unity.Dlls" version="1.0.4" targetFramework="net35" />
<package id="OW.Unity.Dlls" version="1.0.5" targetFramework="net35" />
</packages>
18 changes: 16 additions & 2 deletions OWML.Launcher/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ public void Run(string[] args)

CopyGameFiles();

ListenForOutput();
var hasPortArgument = CommandLineArguments.HasArgument(Constants.ConsolePortArgument);
if (!hasPortArgument)
{
ListenForOutput();
}

var mods = _modFinder.GetMods();

Expand All @@ -52,6 +56,11 @@ public void Run(string[] args)

StartGame(args);

if (hasPortArgument)
{
ExitConsole();
}

Console.ReadLine();
}

Expand Down Expand Up @@ -125,7 +134,7 @@ private void OnOutput(string s)
_writer.WriteLine(line);
if (line.EndsWith(Constants.QuitKeyPhrase))
{
Environment.Exit(0);
ExitConsole();
}
}
}
Expand Down Expand Up @@ -153,5 +162,10 @@ private void StartGame(string[] args)
}
}

private void ExitConsole()
{
Environment.Exit(0);
}

}
}
1 change: 0 additions & 1 deletion OWML.Launcher/OWML.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
<ItemGroup>
<Compile Include="App.cs" />
<Compile Include="OutputListener.cs" />
<Compile Include="OutputWriter.cs" />
<Compile Include="PathFinder.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
Expand Down
4 changes: 2 additions & 2 deletions OWML.Launcher/OWML.Manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"author": "Alek",
"name": "OWML",
"uniqueName": "Alek.OWML",
"version": "0.3.48",
"version": "0.3.49",
"description": "The mod loader and mod framework for Outer Wilds"
}
}
2 changes: 1 addition & 1 deletion OWML.Launcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ static void Main(string[] args)
{
var owmlConfig = GetOwmlConfig();
var owmlManifest = GetOwmlManifest();
var writer = new OutputWriter();
var writer = OutputFactory.CreateOutput(owmlConfig, null, owmlManifest);
var modFinder = new ModFinder(owmlConfig, writer);
var outputListener = new OutputListener(owmlConfig);
var pathFinder = new PathFinder(owmlConfig, writer);
Expand Down
25 changes: 14 additions & 11 deletions OWML.ModHelper.Assets/OWML.ModHelper.Assets.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,38 +34,41 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\Assembly-CSharp.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="NAudio-Unity">
<HintPath>NAudio-Unity\NAudio-Unity.dll</HintPath>
</Reference>
<Reference Include="OW.Unity.Dlls, Version=1.0.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\OW.Unity.Dlls.dll</HintPath>
<Reference Include="OW.Unity.Dlls, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\OW.Unity.Dlls.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.AudioModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.CoreModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UI.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UIModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion OWML.ModHelper.Assets/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="OW.Unity.Dlls" version="1.0.4" targetFramework="net35" />
<package id="OW.Unity.Dlls" version="1.0.5" targetFramework="net35" />
</packages>
25 changes: 14 additions & 11 deletions OWML.ModHelper.Events/OWML.ModHelper.Events.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,35 +36,38 @@
<HintPath>..\packages\Lib.Harmony.1.2.0.1\lib\net35\0Harmony.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\Assembly-CSharp.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="OW.Unity.Dlls, Version=1.0.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\OW.Unity.Dlls.dll</HintPath>
<Reference Include="OW.Unity.Dlls, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\OW.Unity.Dlls.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.AudioModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.CoreModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UI.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UIModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion OWML.ModHelper.Events/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Lib.Harmony" version="1.2.0.1" targetFramework="net35" />
<package id="OW.Unity.Dlls" version="1.0.4" targetFramework="net35" />
<package id="OW.Unity.Dlls" version="1.0.5" targetFramework="net35" />
</packages>
26 changes: 16 additions & 10 deletions OWML.ModHelper.Interaction/OWML.ModHelper.Interaction.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\Assembly-CSharp.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="OW.Unity.Dlls, Version=1.0.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\OW.Unity.Dlls.dll</HintPath>
<Reference Include="OW.Unity.Dlls, Version=1.0.5.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\OW.Unity.Dlls.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -44,25 +44,31 @@
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AudioModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.AudioModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.AudioModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.CoreModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UI.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UIModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestWWWModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OW.Unity.Dlls.1.0.4\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
<HintPath>..\packages\OW.Unity.Dlls.1.0.5\lib\net35\UnityEngine.UnityWebRequestWWWModule.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Loading

0 comments on commit 058d62d

Please sign in to comment.