mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
* Added solution file to the FSharpExample project. * Updated Terminal.Gui and FSharp.Core nuget packages * Removed the Terminal.Gui nuget package and added the project itself. * Added a new FrameView constructor with an array of views. * Changed FSharp Example with the Example Demo file version. * Fixes the Box10x() issue.
21 lines
433 B
XML
21 lines
433 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Update="FSharp.Core" Version="4.7.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|