A repository for testing and demonstrating the Console.Waterworks (Full & Core) NuGet packages. The main aim is to see how well they work in an F#-only environment.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.5 KiB

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<Authors>Craig Oates</Authors>
<Product>Brittle Fish Core</Product>
<Description>A demo. console program for showing how Console.Waterworks.Core works in a F# console program. Type help for a list of available commands.</Description>
<NeutralLanguage>en-GB</NeutralLanguage>
<PackageReleaseNotes>This is the final version but it is rough around the edges. This program is for demonstration purposes only.</PackageReleaseNotes>
<RepositoryUrl>https://github.com/CraigOates/Brittle-Fish</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>F#, Console.Waterworks.Core, Brittle Fish</PackageTags>
<PackageProjectUrl>https://github.com/CraigOates/Brittle-Fish</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/CraigOates/Brittle-Fish/blob/master/LICENSE</PackageLicenseUrl>
<Copyright>N/A</Copyright>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="ConsoleCommands.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Console.Waterworks.Core" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BFLibCore\BFLibCore.fsproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.6.1" />
</ItemGroup>
</Project>