-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.proj
26 lines (22 loc) · 949 Bytes
/
build.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<!-- TargetFrameworkVersion Condition=" '$(TargetFrameworkVersion)' == '' ">v3.5</TargetFrameworkVersion -->
</PropertyGroup>
<Target Name="Build">
<MSBuild Projects="Xilium.CefGlue.sln"
Targets="Build"
Properties="Configuration=$(Configuration);Platform=$(Platform)"
/>
<!-- TODO: reset TargetFrameworkProfile= when building from xbuild -->
</Target>
<Target Name="Clean">
<MSBuild Projects="Xilium.CefGlue.sln"
Targets="Clean"
Properties="Configuration=$(Configuration);Platform=$(Platform)"
/>
<!-- TODO: reset TargetFrameworkProfile= when building from xbuild -->
</Target>
</Project>