forked from dd4t/DD4T.Model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.msbuild
22 lines (20 loc) · 879 Bytes
/
build.msbuild
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 InitialTargets="" DefaultTargets="All" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition="'$(Configuration)'==''">Debug</Configuration>
</PropertyGroup>
<Target Name="All">
<CallTarget Targets="Clean;Compile" />
<Message Text="Build complete."/>
</Target>
<Target Name="Clean">
<!-- Clean removes all build artifacts to prepare for a new build. -->
<MSBuild Projects="$(MSBuildProjectDirectory)\source\DD4T Model.sln" Targets="Clean" />
</Target>
<Target Name="Compile">
<!-- Build the solution. -->
<MSBuild Projects="$(MSBuildProjectDirectory)\source\DD4T Model.sln" Targets="Build" Properties="Configuration=$(Configuration)" >
<Output ItemName="OutputFiles" TaskParameter="TargetOutputs"/>
</MSBuild>
</Target>
</Project>