Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit 7b7aced

Browse files
committed
Fix Dependencies
1 parent 86a72fc commit 7b7aced

1 file changed

Lines changed: 26 additions & 34 deletions

File tree

ModLoader/ModLoader.csproj

Lines changed: 26 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<Deterministic>true</Deterministic>
1616
<NuGetPackageImportStamp>
1717
</NuGetPackageImportStamp>
18-
1918
</PropertyGroup>
2019
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2120
<DebugSymbols>true</DebugSymbols>
@@ -35,14 +34,6 @@
3534
<WarningLevel>4</WarningLevel>
3635
</PropertyGroup>
3736
<ItemGroup>
38-
<Reference Include="Assembly-CSharp">
39-
<HintPath>..\Dependencies\Assembly-CSharp.dll</HintPath>
40-
<Private>True</Private>
41-
</Reference>
42-
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
43-
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>..\Dependencies\Newtonsoft.Json.dll</HintPath>
45-
</Reference>
4637
<Reference Include="System" />
4738
<Reference Include="System.Core" />
4839
<Reference Include="System.Xml.Linq" />
@@ -51,50 +42,52 @@
5142
<Reference Include="System.Data" />
5243
<Reference Include="System.Net.Http" />
5344
<Reference Include="System.Xml" />
54-
<Reference Include="UnityEngine">
45+
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
46+
<SpecificVersion>False</SpecificVersion>
47+
<HintPath>..\Dependencies\Assembly-CSharp.dll</HintPath>
48+
</Reference>
49+
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
50+
<SpecificVersion>False</SpecificVersion>
5551
<HintPath>..\Dependencies\UnityEngine.dll</HintPath>
56-
<Private>True</Private>
5752
</Reference>
58-
<Reference Include="UnityEngine.AssetBundleModule">
53+
<Reference Include="UnityEngine.AssetBundleModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54+
<SpecificVersion>False</SpecificVersion>
5955
<HintPath>..\Dependencies\UnityEngine.AssetBundleModule.dll</HintPath>
60-
<Private>True</Private>
6156
</Reference>
62-
<Reference Include="UnityEngine.CoreModule">
57+
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
58+
<SpecificVersion>False</SpecificVersion>
6359
<HintPath>..\Dependencies\UnityEngine.CoreModule.dll</HintPath>
64-
<Private>True</Private>
6560
</Reference>
66-
<Reference Include="UnityEngine.IMGUIModule">
61+
<Reference Include="UnityEngine.IMGUIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
62+
<SpecificVersion>False</SpecificVersion>
6763
<HintPath>..\Dependencies\UnityEngine.IMGUIModule.dll</HintPath>
68-
<Private>True</Private>
6964
</Reference>
70-
<Reference Include="UnityEngine.InputLegacyModule">
65+
<Reference Include="UnityEngine.InputLegacyModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
66+
<SpecificVersion>False</SpecificVersion>
7167
<HintPath>..\Dependencies\UnityEngine.InputLegacyModule.dll</HintPath>
7268
</Reference>
73-
<Reference Include="UnityEngine.InputModule">
69+
<Reference Include="UnityEngine.InputModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
70+
<SpecificVersion>False</SpecificVersion>
7471
<HintPath>..\Dependencies\UnityEngine.InputModule.dll</HintPath>
7572
</Reference>
76-
<Reference Include="UnityEngine.UI">
77-
<HintPath>..\Dependencies\UnityEngine.UI.dll</HintPath>
78-
<Private>True</Private>
79-
</Reference>
80-
<Reference Include="UnityEngine.UIModule">
81-
<HintPath>..\Dependencies\UnityEngine.UIModule.dll</HintPath>
82-
</Reference>
83-
<Reference Include="UnityEngine.IMGUIModule">
84-
<HintPath>..\..\..\My Mods\References\Assemby-CSharp\UnityEngine.IMGUIModule.dll</HintPath>
73+
<Reference Include="UnityEngine.TextCoreModule">
74+
<HintPath>..\Dependencies\UnityEngine.TextCoreModule.dll</HintPath>
8575
</Reference>
8676
<Reference Include="UnityEngine.TextRenderingModule">
87-
<HintPath>..\..\..\My Mods\References\Assemby-CSharp\UnityEngine.TextRenderingModule.dll</HintPath>
77+
<HintPath>..\Dependencies\UnityEngine.TextRenderingModule.dll</HintPath>
8878
</Reference>
89-
<Reference Include="UnityEngine.UI">
90-
<HintPath>..\..\..\My Mods\References\Assemby-CSharp\UnityEngine.UI.dll</HintPath>
79+
<Reference Include="UnityEngine.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
80+
<SpecificVersion>False</SpecificVersion>
81+
<HintPath>..\Dependencies\UnityEngine.UI.dll</HintPath>
9182
</Reference>
92-
<Reference Include="UnityEngine.UIModule">
93-
<HintPath>..\..\..\My Mods\References\Assemby-CSharp\UnityEngine.UIModule.dll</HintPath>
83+
<Reference Include="UnityEngine.UIModule, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
84+
<SpecificVersion>False</SpecificVersion>
85+
<HintPath>..\Dependencies\UnityEngine.UIModule.dll</HintPath>
9486
</Reference>
9587
</ItemGroup>
9688
<ItemGroup>
9789
<Compile Include="ConsoleGUI.cs" />
90+
<Compile Include="ModsMenu.cs" />
9891
<Compile Include="Helper.cs" />
9992
<Compile Include="Loader.cs" />
10093
<Compile Include="Console.cs" />
@@ -105,7 +98,6 @@
10598
<ItemGroup>
10699
<None Include="packages.config" />
107100
</ItemGroup>
108-
<ItemGroup />
109101
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
110102
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
111103
<PropertyGroup>

0 commit comments

Comments
 (0)