Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GlitterWorld Prime Mod
Release build
Commits
dc28d48d
Commit
dc28d48d
authored
Mar 27, 2019
by
Adam Leyshon
Browse files
Delete and recreate the Assemblies staging area before each build.
parent
33c1d56e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
build.cake
build.cake
+7
-1
No files found.
build.cake
View file @
dc28d48d
...
...
@@ -15,7 +15,7 @@ var mod_base_path = "./mod_package";
var mod_path = $"./{mod_base_path}/{modname} [{version}]";
var git_hash = "";
var asm_version = "";
var steam_folder = @"
E
:\Games\Steam\steamapps\common\RimWorld\Mods";
var steam_folder = @"
D
:\Games\Steam\steamapps\common\RimWorld\Mods";
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
...
...
@@ -44,6 +44,12 @@ Task("CopyDataFolders")
CopyDirectory("./Defs", mod_path+"/Defs");
CopyDirectory("./Languages", mod_path+"/Languages");
CopyDirectory("./Textures", mod_path+"/Textures");
CreateDirectory(mod_path+"/Assemblies");
DeleteDirectory(mod_path+"/Assemblies", new DeleteDirectorySettings {
Recursive = true,
Force = true
});
CreateDirectory(mod_path+"/Assemblies");
});
Task("CopyDLLs")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment