From 797d166da22842e2aaef959a16c2530d68e1274a Mon Sep 17 00:00:00 2001 From: Louis DeJardin Date: Sat, 6 Feb 2010 20:10:12 -0800 Subject: [PATCH] Adding a msbuild proj file and associated cmd files Initially contains Clean, Compile, Stage targets. Default target, Build, calls each in order. All outputs end in /build folder, which is ignored for source control purposes --HG-- branch : dev --- .hgignore | 2 ++ ClickToBuild.cmd | 2 ++ Orchard.proj | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ build.cmd | 1 + 4 files changed, 54 insertions(+) create mode 100644 ClickToBuild.cmd create mode 100644 Orchard.proj create mode 100644 build.cmd diff --git a/.hgignore b/.hgignore index 3e28805f5..835986441 100644 --- a/.hgignore +++ b/.hgignore @@ -6,3 +6,5 @@ glob:src/Orchard.suo glob:*.user glob:*.patch glob:*.hg +glob:build +glob:*.sln.cache diff --git a/ClickToBuild.cmd b/ClickToBuild.cmd new file mode 100644 index 000000000..f397912ac --- /dev/null +++ b/ClickToBuild.cmd @@ -0,0 +1,2 @@ +call build +pause diff --git a/Orchard.proj b/Orchard.proj new file mode 100644 index 000000000..b755fba50 --- /dev/null +++ b/Orchard.proj @@ -0,0 +1,49 @@ + + + + + $(MSBuildProjectDirectory)\lib + $(MSBuildProjectDirectory)\src + $(MSBuildProjectDirectory)\build + + $(BuildFolder)\Compile + $(CompileFolder)\_PublishedWebsites + $(BuildFolder)\Stage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build.cmd b/build.cmd new file mode 100644 index 000000000..2e36462bc --- /dev/null +++ b/build.cmd @@ -0,0 +1 @@ +msbuild \ No newline at end of file