UICatalog.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <LangVersion>9.0</LangVersion>
  6. <StartupObject>UICatalog.UICatalogApp</StartupObject>
  7. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  8. <!-- Version numbers are automatically updated by gitversion when a release is released -->
  9. <!-- Do not modify these. -->
  10. <FileVersion>1.0.0.0</FileVersion>
  11. <Version>1.0.0</Version>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  14. <DefineConstants>TRACE</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  17. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <None Update="./Scenarios/Spinning_globe_dark_small.gif" CopyToOutputDirectory="PreserveNewest" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
  24. <PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" />
  25. <PackageReference Include="CsvHelper" Version="32.0.3" />
  26. <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  30. </ItemGroup>
  31. </Project>