Fix small thing

This commit is contained in:
Garrett
2024-05-15 20:28:05 -05:00
parent 15c1e824f5
commit 19e9a2ee0b
3 changed files with 11 additions and 5 deletions

View File

@@ -36,10 +36,10 @@ namespace SeamlessClient.Messages
this.PluginVersion = PluginVersion;
}
public ClientMessage(ClientMessageType messageType, string NexusVersion)
public ClientMessage(ClientMessageType messageType, Version NexusVersion)
{
this.MessageType = messageType;
this.NexusVersion = NexusVersion;
this.NexusVersion = NexusVersion.ToString();
}

View File

@@ -31,8 +31,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>GameBinaries\0Harmony.dll</HintPath>
<Reference Include="0Harmony, Version=2.3.1.1, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Lib.Harmony.2.3.1.1\lib\net48\0Harmony.dll</HintPath>
</Reference>
<Reference Include="NLog">
<HintPath>GameBinaries\NLog.dll</HintPath>
@@ -87,7 +87,8 @@
<HintPath>GameBinaries\VRage.Input.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VRage.Library, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="VRage.Library">
<HintPath>GameBinaries\VRage.Library.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="VRage.Math">
@@ -123,6 +124,7 @@
<Compile Include="Utilities\Types.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="SetupSolution.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

4
packages.config Normal file
View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Lib.Harmony" version="2.3.1.1" targetFramework="net48" />
</packages>