mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
* Unify projects in SDK-style and PackageReference * Add a note on the known issue about dlls not being copied * Bump CI to a more recent stable version of Mono This adds support for .net472, the first version of .NET with full support for netstandard2.0
17 lines
569 B
XML
17 lines
569 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>Terminal</RootNamespace>
|
|
<AssemblyName>Terminal</AssemblyName>
|
|
<ExternalConsole>true</ExternalConsole>
|
|
<Platforms>AnyCPU;x86</Platforms>
|
|
<Platform>x86</Platform>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NStack.Core" Version="0.11.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
</ItemGroup>
|
|
</Project> |