Skip to content

Commit

Permalink
15.9.3 preview 1
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Jun 2, 2019
1 parent 41d18b5 commit 45919ae
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions debug_and_release_in_parallel.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Solution Include="*.sln">
<Properties>Configuration=Debug;Platform=x64</Properties>
</Solution>
<Solution Include="*.sln">
<Properties>Configuration=Release;Platform=x64</Properties>
</Solution>
</ItemGroup>
<Target Name="Build">
<MSBuild Projects="@(Solution)" BuildInParallel="true" Targets="Build" />
</Target>
<Target Name="Clean">
<MSBuild Projects="@(Solution)" BuildInParallel="true" Targets="Clean" />
</Target>
<Target Name="Rebuild">
<MSBuild Projects="@(Solution)" BuildInParallel="true" Targets="Rebuild" />
</Target>
</Project>

2 changes: 1 addition & 1 deletion find_msbuild.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$version = "15.9.4"
$version = "15.9.3"
$preview = "1"

$vswhere = "${Env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe";
Expand Down

0 comments on commit 45919ae

Please sign in to comment.