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
|
||||
/*/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\*.*
|
||||
|
||||
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
|
|
@ -4,22 +4,26 @@
|
|||
<TargetFramework>net472</TargetFramework>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
|
||||
<!-- Modify [RootNamespace], [AssemblyName], [OutputPath] according to your needs -->
|
||||
<!-- Modify [RootNamespace], [AssemblyName], [OutputPath], [VersionPrefix] according to your needs -->
|
||||
<RootNamespace>Template</RootNamespace>
|
||||
<AssemblyName>Template</AssemblyName>
|
||||
<OutputPath>../1.1/Assemblies</OutputPath>
|
||||
<VersionPrefix>1.0.0.0</VersionPrefix>
|
||||
|
||||
<DebugType>none</DebugType>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<IntermediateOutputPath>../.vscode/obj</IntermediateOutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- Rimworld -->
|
||||
<Reference Include="../../../RimWorldWin64_Data/Managed/*.dll">
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
<!-- HARMONY!
|
||||
|
||||
<!-- Harmony -->
|
||||
<!--
|
||||
<Reference Include="../../Harmony/v1.1/Assemblies/0Harmony.dll">
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
|
|
Loading…
Reference in a new issue