-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathBuild.fsproj
More file actions
23 lines (23 loc) · 979 Bytes
/
Build.fsproj
File metadata and controls
23 lines (23 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<!-- temp fix for: https://github.com/fsprojects/Paket/issues/4307 -->
<NoWarn>$(NoWarn);NU1510</NoWarn>
<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>
<Target Name="Husky" BeforeTargets="Restore;CollectPackageReferences" Condition="'$(HUSKY)' != 0">
<Exec Command="dotnet husky install" StandardOutputImportance="Low" StandardErrorImportance="High" WorkingDirectory="." />
</Target>
<Import Project=".paket\Paket.Restore.targets" />
</Project>