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
|
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",
|
"request": "launch",
|
||||||
"preLaunchTask": "build dll",
|
"preLaunchTask": "build dll",
|
||||||
"args": [],
|
"args": [],
|
||||||
// C:/Program Files (x86)/Steam/steamapps/common/RimWorld/RimWorldWin64.exe
|
"program": "../../RimWorldWin64.exe", // C:/Program Files (x86)/Steam/steamapps/common/RimWorld/RimWorldWin64.exe
|
||||||
"program": "../../RimWorldWin64.exe",
|
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
"console": "internalConsole",
|
"console": "internalConsole",
|
||||||
"stopAtEntry": true
|
"stopAtEntry": true
|
||||||
|
|
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
|
@ -8,7 +8,7 @@
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"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,21 +2,20 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<TargetFramework>net472</TargetFramework>
|
<TargetFramework>net472</TargetFramework>
|
||||||
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
|
|
||||||
<RootNamespace>Template</RootNamespace>
|
<RootNamespace>Template</RootNamespace>
|
||||||
<AssemblyName>Template</AssemblyName>
|
<AssemblyName>Template</AssemblyName>
|
||||||
|
<OutputPath>../1.1/Assemblies</OutputPath>
|
||||||
<OutputPath>..\Assemblies\</OutputPath>
|
|
||||||
<PlatformTarget>x64</PlatformTarget>
|
|
||||||
|
|
||||||
<DebugType>none</DebugType>
|
<DebugType>none</DebugType>
|
||||||
<DebugSymbols>false</DebugSymbols>
|
<DebugSymbols>false</DebugSymbols>
|
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<!-- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\*.dll -->
|
<!-- C:\Program Files (x86)\Steam\steamapps\common\RimWorld\RimWorldWin64_Data\Managed\*.dll -->
|
||||||
<Reference Include="..\..\..\..\RimWorldWin64_Data\Managed\*.dll">
|
<Reference Include="../../../RimWorldWin64_Data/Managed/*.dll">
|
||||||
<Private>False</Private>
|
<Private>False</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
Loading…
Reference in a new issue