Bmp.WinForms.csproj 827 B

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <ApplicationIcon>Icon.ico</ApplicationIcon>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
  10. <OutputType>Exe</OutputType>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)' == 'Release'">
  13. <OutputType>WinExe</OutputType>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <Content Include="Icon.ico" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Enums.NET" Version="4.0.1" />
  20. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\Bmp.Core\Bmp.Core.csproj" />
  24. </ItemGroup>
  25. </Project>