forked from EasyHook/EasyHook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.proj
22 lines (21 loc) · 1.28 KB
/
build.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PackageDir>.\Deploy</PackageDir>
<FX35BuildDir>.\Build\netfx3.5-Release\x64</FX35BuildDir>
<FX4BuildDir>.\Build\netfx4-Release\x64</FX4BuildDir>
<AssemblyCopyright>Copyright © 2014 EasyHook Team</AssemblyCopyright>
<AssemblyTitlePostfix>(beta)</AssemblyTitlePostfix>
</PropertyGroup>
<!-- Build all binaries -->
<Target Name="Build">
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx3.5-Debug;Platform=x64" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx3.5-Debug;Platform=Win32" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx3.5-Release;Platform=x64" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx3.5-Release;Platform=Win32" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx4-Debug;Platform=x64" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx4-Debug;Platform=Win32" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx4-Release;Platform=x64" />
<MSBuild Projects="EasyHook.sln" Properties="Configuration=netfx4-Release;Platform=Win32" />
</Target>
</Project>