UICatalog.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net7.0</TargetFramework>
  5. <LangVersion>10.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 2.0 for all projects. -->
  9. <!-- Do not modify these. -->
  10. <AssemblyVersion>2.0</AssemblyVersion>
  11. <FileVersion>2.0</FileVersion>
  12. <Version>2.0</Version>
  13. <InformationalVersion>2.0</InformationalVersion>
  14. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <DefineConstants>TRACE</DefineConstants>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  20. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <None Remove="Resources\config.json" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <EmbeddedResource Include="Resources\config.json" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <None Update="./Scenarios/Spinning_globe_dark_small.gif" CopyToOutputDirectory="PreserveNewest" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
  33. <PackageReference Include="SixLabors.ImageSharp" Version="3.0.2" />
  34. <PackageReference Include="CsvHelper" Version="30.0.1" />
  35. <PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />
  39. </ItemGroup>
  40. </Project>