relocated intermediate files
This commit is contained in:
parent
5aabf956d2
commit
56bbdf0973
3 changed files with 13 additions and 6 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
||||||
/Source/obj
|
/Source/obj
|
||||||
/*/Assemblies
|
/.vscode/obj
|
||||||
|
|
||||||
|
# /*/Assemblies
|
||||||
|
# /Source
|
||||||
|
|
4
.vscode/build.bat
vendored
4
.vscode/build.bat
vendored
|
@ -4,7 +4,7 @@ REM remove unnecessary assemblies
|
||||||
DEL .\*\Assemblies\*.*
|
DEL .\*\Assemblies\*.*
|
||||||
|
|
||||||
REM build dll
|
REM build dll
|
||||||
dotnet build Source
|
dotnet build Source --no-restore
|
||||||
|
|
||||||
REM remove obj folder for less clutter
|
REM remove nuget dependencies folder for less clutter in case it's generated
|
||||||
RMDIR /s /q Source\obj
|
RMDIR /s /q Source\obj
|
|
@ -4,22 +4,26 @@
|
||||||
<TargetFramework>net472</TargetFramework>
|
<TargetFramework>net472</TargetFramework>
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
|
|
||||||
<!-- Modify [RootNamespace], [AssemblyName], [OutputPath] according to your needs -->
|
<!-- Modify [RootNamespace], [AssemblyName], [OutputPath], [VersionPrefix] according to your needs -->
|
||||||
<RootNamespace>Template</RootNamespace>
|
<RootNamespace>Template</RootNamespace>
|
||||||
<AssemblyName>Template</AssemblyName>
|
<AssemblyName>Template</AssemblyName>
|
||||||
<OutputPath>../1.1/Assemblies</OutputPath>
|
<OutputPath>../1.1/Assemblies</OutputPath>
|
||||||
|
<VersionPrefix>1.0.0.0</VersionPrefix>
|
||||||
|
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<DebugSymbols>false</DebugSymbols>
|
<DebugSymbols>false</DebugSymbols>
|
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<IntermediateOutputPath>../.vscode/obj</IntermediateOutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<!-- Rimworld -->
|
||||||
<Reference Include="../../../RimWorldWin64_Data/Managed/*.dll">
|
<Reference Include="../../../RimWorldWin64_Data/Managed/*.dll">
|
||||||
<Private>False</Private>
|
<Private>False</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<!-- HARMONY!
|
|
||||||
|
<!-- Harmony -->
|
||||||
|
<!--
|
||||||
<Reference Include="../../Harmony/v1.1/Assemblies/0Harmony.dll">
|
<Reference Include="../../Harmony/v1.1/Assemblies/0Harmony.dll">
|
||||||
<Private>False</Private>
|
<Private>False</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
|
Loading…
Reference in a new issue