Files
Terminal.Gui/Designer/Designer.csproj
Daniel Cazzulino 00c5997daa Unify projects in SDK-style and PackageReference (#54)
* 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
2019-10-25 16:43:04 -04:00

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>