Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ _ReSharper.*
bin
obj
.vs
Configuration.json
*.DotSettings
*.binlog
snippets_test/
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aspose.BarCode Cloud SDK for .NET

[![.NET 10](https://img.shields.io/badge/.NET-10.0-512BD4)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/dotnet-core.yml)
[![License](https://img.shields.io/github/license/aspose-barcode-cloud/aspose-barcode-cloud-dotnet)](LICENSE)
[![.NET Core Linux](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/dotnet-core.yml/badge.svg?branch=main)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/dotnet-core.yml)
[![.NET Framework Windows](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/net-framework.yml/badge.svg?branch=main)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/net-framework.yml)
[![.NET 10](https://img.shields.io/badge/.NET-10.0-512BD4)](https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET/actions/workflows/dotnet-core.yml)
[![License](https://img.shields.io/github/license/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET)](LICENSE)
[![.NET Core Linux](https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET/actions/workflows/dotnet-core.yml/badge.svg?branch=main)](https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET/actions/workflows/dotnet-core.yml)
[![.NET Framework Windows](https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET/actions/workflows/net-framework.yml/badge.svg?branch=main)](https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET/actions/workflows/net-framework.yml)
[![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/)

- API version: 4.0
Expand Down
2 changes: 2 additions & 0 deletions Tests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Configuration*.json
!Configuration.template.json
Binary file modified Tests/test_data/Code128.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Tests/test_data/Code128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Tests/test_data/Code39.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Tests/test_data/Pdf417.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Tests/test_data/aztec.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
270 changes: 270 additions & 0 deletions Tests/test_data/combined.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Tests/test_data/qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion scripts/pack-nuget.bash
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ pushd "${SRC_DIR}"
export RELEASE_BUILD=true
dotnet build --warnaserror --configuration=Release Aspose.BarCode.Cloud.Sdk.csproj
echo "Packing nuget package to \"${output_dir}\" ..."
dotnet pack --configuration=Release Aspose.BarCode.Cloud.Sdk.csproj --output="${output_dir}"
dotnet pack --configuration=Release Aspose.BarCode.Cloud.Sdk.csproj -p:PackageOutputPath="${output_dir}"
popd
4 changes: 2 additions & 2 deletions src/Aspose.BarCode.Cloud.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

Aspose.Barcode for Cloud allows you to control all aspects of the image and barcode when generating barcode images. Specify image width, height, border style, output image format and more. You can also set barcode attributes like font style, font color, background color, barcode type and the barcode text location.</Description>
<PackageProjectUrl>https://products.aspose.cloud/barcode/net/</PackageProjectUrl>
<RepositoryUrl>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet</RepositoryUrl>
<RepositoryUrl>https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand All @@ -28,7 +28,7 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
<Authors>Aspose</Authors>
<AssemblyVersion>26.3.0.0</AssemblyVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v26.3.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-.NET/releases/tag/v26.3.0</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
Loading