bundleboiler.ui.csproj 853 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net7.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <ApplicationIcon>bundle-boiler.ico</ApplicationIcon>
  9. <ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
  10. <ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
  11. <RootNamespace>qdr.app.bundleboiler.ui</RootNamespace>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <Content Include="bundle-boiler.ico" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <PackageReference Include="qdr.fnd.core" Version="0.0.5-alpha" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\bundleboiler.business\bundleboiler.business.csproj" />
  21. </ItemGroup>
  22. </Project>