structure change
This commit is contained in:
parent
5d9f97041e
commit
24d25676c8
5 changed files with 12 additions and 10 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,2 +1,6 @@
|
|||
Source/obj
|
||||
Assemblies
|
||||
1.0/Assemblies
|
||||
1.1/Assemblies
|
||||
1.2/Assemblies
|
||||
1.3/Assemblies
|
||||
1.4/Assemblies
|
3
.vscode/launch.json
vendored
3
.vscode/launch.json
vendored
|
@ -10,8 +10,7 @@
|
|||
"request": "launch",
|
||||
"preLaunchTask": "build dll",
|
||||
"args": [],
|
||||
// C:/Program Files (x86)/Steam/steamapps/common/RimWorld/RimWorldWin64.exe
|
||||
"program": "../../RimWorldWin64.exe",
|
||||
"program": "../../RimWorldWin64.exe", // C:/Program Files (x86)/Steam/steamapps/common/RimWorld/RimWorldWin64.exe
|
||||
"cwd": "${workspaceFolder}",
|
||||
"console": "internalConsole",
|
||||
"stopAtEntry": true
|
||||
|
|
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
|
@ -8,7 +8,7 @@
|
|||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"command": "dotnet build 1.1/Source \n del 1.1/Source\\obj -r",
|
||||
"command": "dotnet build Source \n del Source/obj -r",
|
||||
},
|
||||
]
|
||||
}
|
|
@ -2,12 +2,11 @@
|
|||
<PropertyGroup>
|
||||
<OutputType>Library</OutputType>
|
||||
<TargetFramework>net472</TargetFramework>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
|
||||
<RootNamespace>Template</RootNamespace>
|
||||
<AssemblyName>Template</AssemblyName>
|
||||
|
||||
<OutputPath>..\Assemblies\</OutputPath>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<OutputPath>../1.1/Assemblies</OutputPath>
|
||||
|
||||
<DebugType>none</DebugType>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
|
@ -15,8 +14,8 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\*.dll -->
|
||||
<Reference Include="..\..\..\..\RimWorldWin64_Data\Managed\*.dll">
|
||||
<!-- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\*.dll -->
|
||||
<Reference Include="../../../RimWorldWin64_Data/Managed/*.dll">
|
||||
<Private>False</Private>
|
||||
</Reference>
|
||||
</ItemGroup>
|
Loading…
Reference in a new issue