mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-05 03:19:23 +00:00
consolidate dll list in one place
This commit is contained in:
parent
0d7f442e9a
commit
253fd1ae81
16 changed files with 176 additions and 906 deletions
31
Directory.Build.props
Normal file
31
Directory.Build.props
Normal file
|
@ -0,0 +1,31 @@
|
|||
<Project>
|
||||
|
||||
<PropertyGroup>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<GenerateDependencyFile>false</GenerateDependencyFile>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<!-- Put your ChilloutVR path in a new environnment variable CVRPATH -->
|
||||
<OutputPath>$(CVRPATH)/Mods/</OutputPath>
|
||||
<Platforms>x64</Platforms>
|
||||
<TargetFramework>netstandard2.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
||||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>embedded</DebugType>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- Hack! MelonLoader is locking the Mod files, this way I can build and output the mod dll with the game running -->
|
||||
<Target Name="DeleteOutputDLLIfExists" BeforeTargets="BeforeBuild">
|
||||
<Exec Command="if exist "$(OutputPath)$(TargetName).dll" del /F /Q "$(OutputPath)$(TargetName).dll"" />
|
||||
</Target>
|
||||
|
||||
<!-- Import all CVR and MelonLoader Managed Refs -->
|
||||
<Import Project="References.Items.props" />
|
||||
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue