32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net46</TargetFramework>
|
|||
|
<LangVersion>latest</LangVersion>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<AssemblyName>Assembly-CSharp.Singleplayer.mm</AssemblyName>
|
|||
|
<NoWarn>CS0626,CS0649,CS8618</NoWarn>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="MonoMod">
|
|||
|
<HintPath>..\External\MonoMod.exe</HintPath>
|
|||
|
<Private>False</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="Assembly-CSharp">
|
|||
|
<HintPath>..\External\Assembly-CSharp.dll</HintPath>
|
|||
|
<Private>False</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="UnityEngine">
|
|||
|
<HintPath>..\External\UnityEngine.dll</HintPath>
|
|||
|
<Private>False</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="UnityEngine.CoreModule">
|
|||
|
<HintPath>..\External\UnityEngine.CoreModule.dll</HintPath>
|
|||
|
<Private>False</Private>
|
|||
|
</Reference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|