-
Notifications
You must be signed in to change notification settings - Fork 73
/
buildL.proj
30 lines (23 loc) · 941 Bytes
/
buildL.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
28
29
30
<?xml version="1.0"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="unittests;storytests" >
<PropertyGroup>
<Config>Debug</Config>
</PropertyGroup>
<Target Name="restore">
<Exec Command="dotnet restore fitSharpL.sln"/>
</Target>
<Target Name="solution" DependsOnTargets="restore">
<MSBuild Projects="fitSharpL.sln" Properties="Configuration=$(Config)" />
</Target>
<Target Name="releasesolution" DependsOnTargets="restore">
<MSBuild Projects="fitSharpL.sln" Properties="Configuration=Release" />
</Target>
<Target Name="unittests" DependsOnTargets="solution">
<Exec Command="dotnet test source/fitSharpTest/fitSharpTestL.csproj" />
<Exec Command="dotnet test source/fitTest/fitTestL.csproj" />
</Target>
<Target Name="storytests" DependsOnTargets="solution">
<Exec Command="dotnet test -v n source/StoryTest/StoryTestL.csproj" />
</Target>
</Project>