-
Notifications
You must be signed in to change notification settings - Fork 58
/
MSBuild.xml
11 lines (11 loc) · 880 Bytes
/
MSBuild.xml
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="Build">
<MSBuild Projects="WheresMyImplant\WheresMyImplant.csproj" Properties="Configuration=Debug;Platform=AnyCPU" />
<MSBuild Projects="WheresMyImplant\WheresMyImplant.csproj" Properties="Configuration=Release;Platform=AnyCPU" />
<MSBuild Projects="WheresMyImplant\WheresMyImplant.csproj" Properties="Configuration=Debug-Net35;Platform=AnyCPU" />
<MSBuild Projects="WheresMyImplant\WheresMyImplant.csproj" Properties="Configuration=Release-Net35;Platform=AnyCPU" />
<MSBuild Projects="WheresMyImplant\WheresMyImplant.csproj" Properties="Configuration=Debug-Net45;Platform=AnyCPU" />
<MSBuild Projects="WheresMyImplant\WheresMyImplant.csproj" Properties="Configuration=Release-Net45;Platform=AnyCPU" />
</Target>
</Project>