-
Notifications
You must be signed in to change notification settings - Fork 0
/
FNav.fsproj
34 lines (27 loc) · 947 Bytes
/
FNav.fsproj
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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<PackageId>Gsuuon.Tool.FNav</PackageId>
<PackageVersion>0.0.9</PackageVersion>
<ToolCommandName>fn</ToolCommandName>
<PackAsTool>true</PackAsTool>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageOutputPath>./nupkg</PackageOutputPath>
<RepositoryUrl>https://github.com/gsuuon/FNav</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gsuuon.Console" Version="0.1.5" />
</ItemGroup>
</Project>