mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-04 19:09:23 +00:00
75 lines
2.7 KiB
XML
75 lines
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<PackageId>AvatarSyncedLook</PackageId>
|
|
<Authors>SDraw</Authors>
|
|
<Company>SDraw</Company>
|
|
<Product>AvatarSyncedLook</Product>
|
|
<Version>1.1.2</Version>
|
|
<AssemblyName>AvatarSyncedLook</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DebugType>embedded</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="resources/mod_menu.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="0Harmony">
|
|
<HintPath>$(CVRPath)/MelonLoader/net35/0Harmony.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="Assembly-CSharp">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="Assembly-CSharp-firstpass">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp-firstpass.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="cohtml.Net">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/cohtml.Net.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="Cohtml.Runtime">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/Cohtml.Runtime.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="UnityEngine">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.dll</HintPath>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.CoreModule">
|
|
<HintPath>$(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.CoreModule.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="../js/mods_extension.js" Link="resources/mods_extension.js" />
|
|
<EmbeddedResource Include="resources/mod_menu.js" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy /y "$(TargetPath)" "$(CVRPath)/Mods/"" />
|
|
</Target>
|
|
|
|
</Project>
|