Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlateralusX <lateralusx.github@gmail.com>2016-04-12 15:14:58 +0300
committerlateralusX <lateralusx.github@gmail.com>2016-06-15 10:40:06 +0300
commit51870b34bd1810497f2f77c1bc4c960a1fe614f2 (patch)
tree877d3c9a6a898f7f9d5f1acd385e3dfd8e4846ed /msvc/build-package.vcxproj
parentb1c604eee2bf5f80c14d4708424a1606894bb5b9 (diff)
Better property manager and user macros support.
* Added support for user macros in order to set build/install/sgen. * Added support for more arguments to bat files + support for quoted paths. * Added support for verbose/quite output in bat files. * Moved libmono xcopy post build step into separate bat file. * Cleaned some sgen configs still left in vcxprojs.
Diffstat (limited to 'msvc/build-package.vcxproj')
-rw-r--r--msvc/build-package.vcxproj8
1 files changed, 4 insertions, 4 deletions
diff --git a/msvc/build-package.vcxproj b/msvc/build-package.vcxproj
index 201c46d094f..c48f54582cf 100644
--- a/msvc/build-package.vcxproj
+++ b/msvc/build-package.vcxproj
@@ -95,7 +95,7 @@
<SDLCheck>true</SDLCheck>
</ClCompile>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) "$(MONO_BUILD_DIR_PREFIX)" -q</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@@ -105,7 +105,7 @@
<SDLCheck>true</SDLCheck>
</ClCompile>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) "$(MONO_BUILD_DIR_PREFIX)" -q</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@@ -121,7 +121,7 @@
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) "$(MONO_BUILD_DIR_PREFIX)" -q</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@@ -137,7 +137,7 @@
<OptimizeReferences>true</OptimizeReferences>
</Link>
<PostBuildEvent>
- <Command>.\package.bat $(Platform) $(Configuration) $(MONO_BUILD_DIR_PREFIX)</Command>
+ <Command>.\package.bat $(Platform) $(Configuration) "$(MONO_BUILD_DIR_PREFIX)" -q</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>