2021-01-16 06:02:39 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-06-11 03:38:11 +00:00
|
|
|
|
<PropertyGroup>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
<LangVersion>8</LangVersion>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
<NoWarn>1701;1702;CS0649;CS1591</NoWarn>
|
2022-10-24 04:49:53 +00:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-06-11 03:38:11 +00:00
|
|
|
|
</PropertyGroup>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
|
2019-06-11 03:38:11 +00:00
|
|
|
|
<ItemGroup>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
<Reference Include="Assembly-CSharp, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
|
|
|
|
|
<HintPath>dlls\Assembly-CSharp.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
|
|
|
|
|
<HintPath>dlls\UnityEngine.dll</HintPath>
|
2019-06-11 03:38:11 +00:00
|
|
|
|
</Reference>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
<Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
|
|
|
|
|
<HintPath>dlls\UnityEngine.CoreModule.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="UnityEngine.PhysicsModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
|
|
|
|
|
<HintPath>dlls\UnityEngine.PhysicsModule.dll</HintPath>
|
2019-06-11 03:38:11 +00:00
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
|
2019-06-11 03:38:11 +00:00
|
|
|
|
<ItemGroup>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
<Compile Remove="dlls\**" />
|
2019-06-11 03:38:11 +00:00
|
|
|
|
</ItemGroup>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Remove="dlls\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="dlls\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2022-10-24 04:49:53 +00:00
|
|
|
|
<MakeDir Directories="$(SolutionDir)/GameData/DepthMask"/>
|
|
|
|
|
<Copy SourceFiles="$(OutDir)DepthMask.dll" DestinationFolder="$(SolutionDir)/GameData/DepthMask"/>
|
2021-01-16 06:02:39 +00:00
|
|
|
|
</Target>
|
|
|
|
|
|
2019-06-11 03:38:11 +00:00
|
|
|
|
</Project>
|