-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBuild.fsproj
More file actions
18 lines (18 loc) · 624 Bytes
/
Build.fsproj
File metadata and controls
18 lines (18 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Compile Include="Helpers.fs" />
<Compile Include="Build.fs" />
<None Include="paket.dependencies" />
<None Include="paket.references" />
</ItemGroup>
<Target Name="DotNetToolRestore" BeforeTargets="PaketRestore">
<Exec Command="dotnet tool restore" />
</Target>
<Import Project=".paket\Paket.Restore.targets" />
</Project>