mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-03-10 16:14:45 +00:00
Update OWML to 0.3.37
* just formatting * * moved message stuff to new project * generated .gitignore from https://gitignore.io/api/unity,visualstudio * owml 0.3.37 * fixed build event for message project
This commit is contained in:
parent
fb349c78c6
commit
522f51ea4a
6
QSB.Messaging/packages.config
Normal file
6
QSB.Messaging/packages.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Json.Net.Unity3D" version="9.0.1" targetFramework="net35" />
|
||||
<package id="Lib.Harmony" version="1.2.0.1" targetFramework="net35" />
|
||||
<package id="OWML" version="0.3.37" targetFramework="net35" />
|
||||
</packages>
|
@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
@ -29,17 +30,12 @@ namespace QSB
|
||||
|
||||
private static string JoinAll(params object[] logObjects)
|
||||
{
|
||||
var result = "";
|
||||
foreach (var obj in logObjects)
|
||||
{
|
||||
result += obj + " ";
|
||||
}
|
||||
return result;
|
||||
return string.Join(" ", logObjects.Select(o => o.ToString()).ToArray());
|
||||
}
|
||||
|
||||
public static void Console(params object[] logObjects)
|
||||
{
|
||||
QSB.Helper.Console.WriteLine(JoinAll(logObjects));
|
||||
QSB.Helper.Console.WriteLine(logObjects);
|
||||
}
|
||||
|
||||
public static void Screen(params object[] logObjects)
|
||||
|
@ -38,28 +38,28 @@
|
||||
<HintPath>$(StartWorkingDirectory)\..\OuterWilds_Data\Managed\Assembly-CSharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NAudio-Unity, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\NAudio-Unity.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\NAudio-Unity.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Json.Net.Unity3D.9.0.1\lib\net35\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="OWML, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\OWML.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\OWML.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="OWML.Common, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\OWML.Common.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\OWML.Common.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="OWML.ModHelper, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\OWML.ModHelper.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\OWML.ModHelper.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="OWML.ModHelper.Assets, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\OWML.ModHelper.Assets.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\OWML.ModHelper.Assets.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="OWML.ModHelper.Events, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\OWML.ModHelper.Events.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\OWML.ModHelper.Events.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="OWML.ModHelper.Menus, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\OWML.0.3.35\lib\net35\OWML.ModHelper.Menus.dll</HintPath>
|
||||
<HintPath>..\packages\OWML.0.3.37\lib\net35\OWML.ModHelper.Menus.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
|
@ -4,5 +4,5 @@
|
||||
"name": "QuantumSpaceBuddies",
|
||||
"uniqueName": "Raicuparta.QuantumSpaceBuddies",
|
||||
"version": "0.1",
|
||||
"owmlVersion": "0.3.30"
|
||||
"owmlVersion": "0.3.37"
|
||||
}
|
||||
|
@ -2,5 +2,5 @@
|
||||
<packages>
|
||||
<package id="Json.Net.Unity3D" version="9.0.1" targetFramework="net35" />
|
||||
<package id="Lib.Harmony" version="1.2.0.1" targetFramework="net35" />
|
||||
<package id="OWML" version="0.3.35" targetFramework="net35" />
|
||||
<package id="OWML" version="0.3.37" targetFramework="net35" />
|
||||
</packages>
|
Loading…
x
Reference in New Issue
Block a user