qdr.app.studiou.orders2printpack.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <ApplicationIcon>logo_icon.ico</ApplicationIcon>
  9. <Company>Quadarax</Company>
  10. <Product>Order2PrintPack</Product>
  11. <Description>Proprietální řešení tvorby balíčků obrázků pro online objednávky pro tiskovou službu.</Description>
  12. <Copyright>Quadarax (c) 2024</Copyright>
  13. <PackageIcon>logo_icon.png</PackageIcon>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <Content Include="logo_icon.ico" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Include="C:\Temp\pedro\logo_icon.png">
  20. <Pack>True</Pack>
  21. <PackagePath>\</PackagePath>
  22. </None>
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Compile Update="Properties\Resources.Designer.cs">
  26. <DesignTime>True</DesignTime>
  27. <AutoGen>True</AutoGen>
  28. <DependentUpon>Resources.resx</DependentUpon>
  29. </Compile>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <EmbeddedResource Update="Properties\Resources.resx">
  33. <Generator>ResXFileCodeGenerator</Generator>
  34. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  35. </EmbeddedResource>
  36. </ItemGroup>
  37. </Project>