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
6 changes: 4 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ jobs:
# and https://github.com/dotnet/core/blob/main/releases.md
# for versions
include:
- dotnet-version: 3.1.x
framework: netcoreapp3.1
- dotnet-version: 5.0.x
framework: net5.0
- dotnet-version: 6.0.x
framework: net6.0
- dotnet-version: 7.0.x
framework: net7.0
- dotnet-version: 8.0.x
framework: net8.0

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ format:

.PHONY: format-doc
format-doc:
# Remove trailing white space
find . -iname "*.md" -exec sed -i -e 's_[[:space:]]*$$__' {} \;

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/)

- API version: 3.0
- SDK version: 24.6.0
- SDK version: 24.7.0

## Demo applications

Expand Down
2 changes: 1 addition & 1 deletion Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;net480;net481;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net462;net480;net481;netcoreapp3.1;net5.0;net6.0;net8.0</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsTestProject>true</IsTestProject>
<LangVersion>8.0</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion examples/GenerateQR/GenerateQR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Aspose.BarCode-Cloud" Version="24.6.0" />
<PackageReference Include="Aspose.BarCode-Cloud" Version="24.7.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion examples/ReadQR/ReadQR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Aspose.BarCode-Cloud" Version="24.6.0" />
<PackageReference Include="Aspose.BarCode-Cloud" Version="24.7.0" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions src/Aspose.BarCode.Cloud.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
<PackageId>Aspose.BarCode-Cloud</PackageId>
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
<PackageIcon>PackageIcon.png</PackageIcon>
<Version>24.6.0</Version>
<Version>24.7.0</Version>
<Authors>Aspose</Authors>
<AssemblyVersion>24.6.0.0</AssemblyVersion>
<AssemblyVersion>24.7.0.0</AssemblyVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v24.6.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v24.7.0</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down