mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-29 09:18:01 +01:00
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<LangVersion>8.0</LangVersion>
|
|
<StartupObject>UICatalog.UICatalogApp</StartupObject>
|
|
<!-- Version numbers are automatically updated by gitversion when a release is released -->
|
|
<!-- In the source tree the version will always be 1.0 for all projects. -->
|
|
<!-- Do not modify these. -->
|
|
<AssemblyVersion>1.0</AssemblyVersion>
|
|
<FileVersion>1.0</FileVersion>
|
|
<Version>1.0</Version>
|
|
<InformationalVersion>1.0</InformationalVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="CsvHelper" Version="30.0.1" />
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
|
|
</ItemGroup>
|
|
</Project> |