UICatalog.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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. <SignAssembly>True</SignAssembly>
  13. <AssemblyOriginatorKeyFile>UICatalog.snk</AssemblyOriginatorKeyFile>
  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. <None Update="./Scenarios/Spinning_globe_dark_small.gif" CopyToOutputDirectory="PreserveNewest" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
  26. <PackageReference Include="CsvHelper" Version="33.0.1" />
  27. <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  31. </ItemGroup>
  32. </Project>