UICatalog.csproj 1.0 KB

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <LangVersion>8.0</LangVersion>
  6. <StartupObject>UICatalog.UICatalogApp</StartupObject>
  7. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  8. <!-- In the source tree the version will always be 1.0 for all projects. -->
  9. <!-- Do not modify these. -->
  10. <AssemblyVersion>1.0</AssemblyVersion>
  11. <FileVersion>1.0</FileVersion>
  12. <Version>1.0</Version>
  13. <InformationalVersion>1.0</InformationalVersion>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <DefineConstants>TRACE</DefineConstants>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  19. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  23. </ItemGroup>
  24. </Project>