mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +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
19 lines
661 B
XML
19 lines
661 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>
|
|
<DefaultItemExcludes>StandaloneExample\**\*.*;Terminal.Gui\**\*.*</DefaultItemExcludes>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NStack.Core" Version="0.11.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|