Skip to content

Instantly share code, notes, and snippets.

1x Gigabyte 960OC 4GB
1x Crucial Ballistic 8GB DDR4 2400Mhz
1x i3-6100 3.7Ghz Skylake Intel CPU
2x Fractal Design Core 1000
1x Super Flower 450W 80 Plus Bronze PSU
1x Asus H110M-A Micro ATX
1x Sandisk Ultra SATAIII 64GB SSD
@chrisabird
chrisabird / gist:1091870
Created July 19, 2011 09:53
MSBuildBuildInParalell
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Target Name="Compile">
<MSBuild Projects="Dev2.proj" BuildInParallel="false" Targets="Clean" />
<MSBuild Projects="Dev2.proj" BuildInParallel="false" Targets="Compile" />
<MSBuild Projects="Dev2.proj" BuildInParallel="false" Targets="SetupConnectionStrings" />
<MSBuild Projects="Dev2.proj" BuildInParallel="false" Targets="SetupApplicationSettings" />
</Target>