forked from robinrodricks/FluentFTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsbuild_VS2012.proj
27 lines (20 loc) · 948 Bytes
/
msbuild_VS2012.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="All">
<Target Name="All">
<!-- .NET 2.0 -->
<MSBuild Projects="FluentFTP_NET_VS2012.sln" Targets="Rebuild"
Properties="Configuration=ReleaseNET2" StopOnFirstFailure="true">
</MSBuild>
<!-- .NET 3.5 -->
<MSBuild Projects="FluentFTP_NET_VS2012.sln" Targets="Rebuild"
Properties="Configuration=ReleaseNET35" StopOnFirstFailure="true">
</MSBuild>
<!-- .NET 4.0 -->
<MSBuild Projects="FluentFTP_NET_VS2012.sln" Targets="Rebuild"
Properties="Configuration=ReleaseNET4" StopOnFirstFailure="true">
</MSBuild>
<!-- .NET 4.5 -->
<MSBuild Projects="FluentFTP_NET_VS2012.sln" Targets="Rebuild"
Properties="Configuration=Release" StopOnFirstFailure="true">
</MSBuild>
</Target>
</Project>