-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.proj
28 lines (28 loc) · 986 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
27
28
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<RepoRootDir>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)"))</RepoRootDir>
<BuildDependsOn>
</BuildDependsOn>
<CoreBuildDependsOn>
</CoreBuildDependsOn>
</PropertyGroup>
<!-- <ItemGroup>
<DotNetCliToolReference Include="dotnet-fake" Version="5.*" />
</ItemGroup> -->
<Target Name="Build">
<Exec IgnoreStandardErrorWarningFormat="true" Command="fake build" WorkingDirectory="$(RepoRootDir)" />
</Target>
<Target Name="Pack">
</Target>
<Target Name="Test">
</Target>
<Target Name="VSTest" DependsOnTargets="Test" />
<Import Project=".paket\Paket.Restore.targets" />
</Project>