convert packages.config files to project.json

* reduce console output in builds
This commit is contained in:
Marko Lahma
2016-05-22 10:40:12 +03:00
committed by Marko Lahma
parent 4364f74e37
commit 2b4eade2cb
328 changed files with 1276 additions and 10035 deletions

View File

@@ -35,10 +35,16 @@ Rebuilding Solutions using Nant and "solutions.build":
<readregistry property="net35.install.dir" key="${reg.software.prefix}\NET Framework Setup\NDP\v3.5\InstallPath" hive="LocalMachine" failonerror="true"/>
<readregistry property="net40.install.dir" key="${reg.software.prefix}\NET Framework Setup\NDP\v4\Full\InstallPath" hive="LocalMachine" failonerror="true"/>
<property name="msbuild.v12.path" value="C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe" />
<property name="msbuild.v14.path" value="C:\Program Files (x86)\MSBuild\14.0\Bin\MsBuild.exe" />
<property name="msbuild.exe" value="${net40.install.dir}\msbuild.exe"/>
<if test="${file::exists('C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe')}">
<property name="msbuild.exe" value="C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe" />
<echo message="Swithing to installed MSBuild at location ${msbuild.exe}" />
<if test="${file::exists(msbuild.v14.path)}">
<property name="msbuild.exe" value="${msbuild.v14.path}" />
<echo message="Switching to installed MSBuild at location ${msbuild.exe}" />
</if>
<if test="${file::exists(msbuild.v14.path) == false and file::exists(msbuild.v12.path)}">
<property name="msbuild.exe" value="${msbuild.v12.path}" />
<echo message="Switching to installed MSBuild at location ${msbuild.exe}" />
</if>
<property name="buildconfiguration" value="Debug" />

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>