forked from enkari/fluentmigrator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFluentMigrator.msbuild
More file actions
27 lines (23 loc) · 882 Bytes
/
FluentMigrator.msbuild
File metadata and controls
27 lines (23 loc) · 882 Bytes
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 DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<UsingTask
AssemblyFile="tools\xUnit\xunit.runner.msbuild.dll"
TaskName="Xunit.Runner.MSBuild.xunit"/>
<PropertyGroup Condition="'$(BuildType)' == ''">
<BuildType>AutomatedRelease</BuildType>
</PropertyGroup>
<Target Name="Build">
<MSBuild
Projects="FluentMigrator.sln"
Targets="Build"
Properties="Architecture=x86;Configuration=$(BuildType)"/>
</Target>
<Target Name="Test" DependsOnTargets="Build">
<MakeDir Directories="build\reports" />
<!--
<exec
Command="..\..\tools\ncover\NCover.Console.exe "..\..\tools\xunit\xunit.console.exe" "FluentMigrator.Tests.dll" //w "." //x "..\reports\Coverage.xml""
WorkingDirectory="build\$(BuildType)\">
</exec>
-->
</Target>
</Project>