| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net9.0-windows7.0</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <ApplicationIcon>logo_icon.ico</ApplicationIcon>
- <Company>Quadarax</Company>
- <Product>Order2PrintPack</Product>
- <Description>Proprietální řešení tvorby balíčků obrázků pro online objednávky pro tiskovou službu.</Description>
- <Copyright>Quadarax (c) 2024</Copyright>
- <PackageIcon>logo_icon.png</PackageIcon>
- <Title>StudioU Orders2PrintPack</Title>
- <SignAssembly>True</SignAssembly>
- <AssemblyOriginatorKeyFile>bo_strong_key_pair.snk</AssemblyOriginatorKeyFile>
- <Platforms>AnyCPU;x86;x64</Platforms>
- <AssemblyVersion>1.2.0.0</AssemblyVersion>
- <FileVersion>1.2.0.0</FileVersion>
- <Version>1.2.3</Version>
- <ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
- <ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="logo_icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <None Include="C:\Temp\pedro\logo_icon.png">
- <Pack>True</Pack>
- <PackagePath>\</PackagePath>
- </None>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
- <PackageReference Include="qdr.fnd.core" Version="0.0.8-alpha" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Properties\AppSettings.Designer.cs">
- <DesignTimeSharedInput>True</DesignTimeSharedInput>
- <AutoGen>True</AutoGen>
- <DependentUpon>AppSettings.settings</DependentUpon>
- </Compile>
- <Compile Update="Properties\Resources.Designer.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>Resources.resx</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="Properties\Resources.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Resources.Designer.cs</LastGenOutput>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <None Update="Properties\AppSettings.settings">
- <Generator>SettingsSingleFileGenerator</Generator>
- <LastGenOutput>AppSettings.Designer.cs</LastGenOutput>
- </None>
- <None Update="README.md">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|