76 lines
2.7 KiB
XML
76 lines
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows7.0</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<ApplicationIcon>Res\mdi--barcode-scan.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AssemblyVersion>1.2.0</AssemblyVersion>
|
|
<FileVersion>$(AssemblyVersion)</FileVersion>
|
|
<Version>$(AssemblyVersion)</Version>
|
|
<Authors>BlubbFish</Authors>
|
|
<RootNamespace>BlubbFish.Applications.Barcodes.Inventree</RootNamespace>
|
|
<Description>Create Inventree PO Barcodes</Description>
|
|
<Company>BlubbFish</Company>
|
|
<PackageId>Inventree.Barcodes.Applications.BlubbFish</PackageId>
|
|
<Copyright>Copyright © BlubbFish 2025 - 14.02.2026</Copyright>
|
|
<NeutralLanguage>de-DE</NeutralLanguage>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageProjectUrl>https://git.blubbfish.net/vs_projects/InventreeBarcodeGenerator</PackageProjectUrl>
|
|
<RepositoryUrl>https://git.blubbfish.net/vs_projects/InventreeBarcodeGenerator.git</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageReleaseNotes>
|
|
1.2.0 - 2026-02-18 - Fix Quantity on Labels so that you can recieve only partial deliverys
|
|
1.1.0 - 2026-02-14 - Rewrote to DataGridView
|
|
1.0.0 - 2025-11-23 - Init
|
|
</PackageReleaseNotes>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Res\mdi--barcode-scan.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Librarys\DataMatrix.net\DataMatrix.net\DataMatrix.net.csproj" />
|
|
<ProjectReference Include="..\..\Librarys\litjson\litjson\litjson.csproj" />
|
|
<ProjectReference Include="..\..\Utils\Utils\Utils\Utils.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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>
|
|
<Content Include="../CHANGELOG.md" />
|
|
<Content Include="../CONTRIBUTING.md" />
|
|
<Content Include="../LICENSE" />
|
|
<Content Include="../README.md" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Include="..\README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |