From f3207ed440dce2dae0176c9334400fc1e93c21cd Mon Sep 17 00:00:00 2001 From: moozzyk Date: Fri, 1 May 2015 13:16:51 -0700 Subject: [PATCH] Fixing a build break in Helios Removing Common.Native.targets - to avoid increasing build complexity repo with native projects will have their own target that generates version.h file --- build/Common.Native.targets | 23 ----------------------- build/_k-standard-goals.shade | 4 ++-- 2 files changed, 2 insertions(+), 25 deletions(-) delete mode 100644 build/Common.Native.targets diff --git a/build/Common.Native.targets b/build/Common.Native.targets deleted file mode 100644 index e4d7a67ec4..0000000000 --- a/build/Common.Native.targets +++ /dev/null @@ -1,23 +0,0 @@ - - - - - 0.0.0 - 0 - $(ProductVersion).$(FileRevision) - -$(BuildVersion) - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/build/_k-standard-goals.shade b/build/_k-standard-goals.shade index 5dd1943212..43524358cd 100644 --- a/build/_k-standard-goals.shade +++ b/build/_k-standard-goals.shade @@ -112,8 +112,8 @@ default Configuration='${E("Configuration")}' foreach (var project in nativeProjects) { - Exec(msbuildPath, project + " /p:Configuration=Platform=Win32" + commonParameters); - Exec(msbuildPath, project + " /p:Configuration=Platform=x64" + commonParameters); + Exec(msbuildPath, project + " /p:Platform=Win32" + commonParameters); + Exec(msbuildPath, project + " /p:Platform=x64" + commonParameters); } break;