| 123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net7.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <ApplicationIcon>bundle-boiler.ico</ApplicationIcon>
- <ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
- <ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
- <RootNamespace>qdr.app.bundleboiler.ui</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="bundle-boiler.ico" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="qdr.fnd.core" Version="0.0.5-alpha" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\bundleboiler.business\bundleboiler.business.csproj" />
- </ItemGroup>
- </Project>
|