UICatalog.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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. <!-- 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>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. <None Update="./Scenarios/Spinning_globe_dark_small.gif" CopyToOutputDirectory="PreserveNewest" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
  26. <PackageReference Include="CsvHelper" Version="30.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>