UICatalog.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net7.0</TargetFramework>
  5. <LangVersion>8.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. <AssemblyVersion>1.14.0.0</AssemblyVersion>
  11. <FileVersion>1.14.0.0</FileVersion>
  12. <Version>1.14.0-pre0001</Version>
  13. <InformationalVersion>1.14.0-pre.1+Branch.develop.Sha.e0b7464669ef87b96b57f2285200e02bcf85d0e7</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. <None Update="./Scenarios/Spinning_globe_dark_small.gif" CopyToOutputDirectory="PreserveNewest" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.18.1" />
  26. <PackageReference Include="SixLabors.ImageSharp" Version="3.0.1" />
  27. <PackageReference Include="CsvHelper" Version="30.0.1" />
  28. <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  32. </ItemGroup>
  33. </Project>