-
Notifications
You must be signed in to change notification settings - Fork 0
/
vbu.fsproj
23 lines (23 loc) · 976 Bytes
/
vbu.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>
<PublishTrimmed>true</PublishTrimmed>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<Compile Include="Util.fs"/>
<Compile Include="Types.fs"/>
<Compile Include="Args.fs"/>
<Compile Include="Program.fs"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.1.1"/>
<PackageReference Include="DotNet.Glob" Version="3.1.2"/>
<PackageReference Include="fsharpx.extras" Version="3.0.0"/>
</ItemGroup>
</Project>