mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-04 10:59:22 +00:00
60 lines
2 KiB
XML
60 lines
2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<PackageId>PlayerAvatarHistory</PackageId>
|
|
<AssemblyName>PlayerAvatarHistory</AssemblyName>
|
|
<Authors>SDraw</Authors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DebugType>embedded</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="resources/delete.png" />
|
|
<None Remove="resources/guardian.png" />
|
|
<None Remove="resources/save.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="resources/delete.png" />
|
|
<EmbeddedResource Include="resources/guardian.png" />
|
|
<EmbeddedResource Include="resources/save.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Assembly-CSharp">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="BTKUILib">
|
|
<HintPath>$(CVRPath)/Mods/BTKUILib.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="MelonLoader">
|
|
<HintPath>$(CVRPath)/MelonLoader/net35/MelonLoader.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="Newtonsoft.Json">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/Newtonsoft.Json.dll</HintPath>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.CoreModule">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.CoreModule.dll</HintPath>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy /y "$(TargetPath)" "$(CVRPath)/Mods/"" />
|
|
</Target>
|
|
|
|
</Project>
|