mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 10:29:22 +00:00
91 lines
3.8 KiB
XML
91 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<PackageId>PlayersInstanceNotifier</PackageId>
|
|
<Authors>SDraw</Authors>
|
|
<Company>None</Company>
|
|
<Product>PlayersInstanceNotifier</Product>
|
|
<Version>1.0.7</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DebugType>embedded</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="resources\Chime.wav" />
|
|
<None Remove="resources\DoorClose.wav" />
|
|
<None Remove="resources\mod_menu.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="resources\Chime.wav" />
|
|
<EmbeddedResource Include="resources\DoorClose.wav" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="..\js\mods_extension.js" Link="resources\mods_extension.js" />
|
|
<EmbeddedResource Include="resources\mod_menu.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="0Harmony">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\MelonLoader\net35\0Harmony.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="Assembly-CSharp">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\Assembly-CSharp.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="cohtml.Net">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\cohtml.Net.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="Cohtml.Runtime">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\Cohtml.Runtime.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="MelonLoader">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\MelonLoader\net35\MelonLoader.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="UnityEngine">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.AudioModule">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.AudioModule.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.CoreModule">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.UnityWebRequestAudioModule">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.UnityWebRequestAudioModule.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
<Reference Include="UnityEngine.UnityWebRequestModule">
|
|
<HintPath>D:\Games\Steam\steamapps\common\ChilloutVR\ChilloutVR_Data\Managed\UnityEngine.UnityWebRequestModule.dll</HintPath>
|
|
<Private>false</Private>
|
|
<SpecificVersion>false</SpecificVersion>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="copy /y "$(TargetPath)" "D:\Games\Steam\steamapps\common\ChilloutVR\Mods\"" />
|
|
</Target>
|
|
|
|
</Project>
|