From dce713e276b01290db02ced406f2c788e6680839 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Mon, 2 Jan 2017 09:54:21 +0000 Subject: [PATCH] drop unwanted build cmds --- build/Program.cs | 3 +-- build/build-inner.cmd | 0 build/config.cmd | 8 -------- 3 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 build/build-inner.cmd delete mode 100644 build/config.cmd diff --git a/build/Program.cs b/build/Program.cs index 47dafb6f95..a5818c706e 100644 --- a/build/Program.cs +++ b/build/Program.cs @@ -57,10 +57,9 @@ namespace ConsoleApplication var sb = new StringBuilder(); foreach (var p in projects) { - sb.AppendLine($@"dotnet pack --configuration Release --output ""artifacts\bin\ImageSharp"" ""{p.ProjectFilePath}"""); } - File.Copy("build-inner.cmd", "build-inner.bak", true); + File.WriteAllText("build-inner.cmd", sb.ToString()); } diff --git a/build/build-inner.cmd b/build/build-inner.cmd deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/build/config.cmd b/build/config.cmd deleted file mode 100644 index 1619c2b1c2..0000000000 --- a/build/config.cmd +++ /dev/null @@ -1,8 +0,0 @@ -@echo Off -REM ====================== -REM = Configure settings = - -REM Space seperated list of projects to version and package -SET projects=".\src\ImageSharp" ".\src\ImageSharp.Drawing" - -REM ====================== \ No newline at end of file