blob: 69f282e7d2094db97d4b7b83bdcf8cee7076155a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>nuget_fsproj</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="jive" Version="0.1.0" />
</ItemGroup>
</Project>
|