Skip to content

Commit d813664

Browse files
authored
Release 22.7 (#42)
1 parent d85c80c commit d813664

File tree

6 files changed

+17
-20
lines changed

6 files changed

+17
-20
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ format-doc:
1515
test:
1616
dotnet test
1717

18-
.PHONY: update
19-
update:
20-
echo "Not implemented"
21-
2218
.PHONY: insert-examples
2319
insert-examples:
2420
./scripts/insert-examples.bash
2521

2622
.PHONY: after-gen
2723
after-gen: insert-examples format format-doc
24+
25+
.PHONY: update
26+
update:
27+
echo "Not implemented"

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
# Aspose.BarCode Cloud SDK for .NET
22

3-
| WARNING: **Update SDK to version >= 21.9.0**: All SDK version < 21.9.0 will stop working soon! |
4-
| ---------------------------------------------------------------------------------------------- |
5-
63
[![License](https://img.shields.io/github/license/aspose-barcode-cloud/aspose-barcode-cloud-dotnet)](LICENSE)
74
[![.NET Core](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/dotnet-core.yml/badge.svg?branch=master)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/dotnet-core.yml)
85
[![.NET Framework](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/net-framework.yml/badge.svg?branch=master)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/actions/workflows/net-framework.yml)
96
[![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/)
107

118
- API version: 3.0
12-
- SDK version: 22.6.0
9+
- SDK version: 22.7.0
1310

1411
## Demo applications
1512

16-
[Scan QR](https://products.aspose.app/barcode/scanqr) | [Generate Barcode](https://products.aspose.app/barcode/generate) | [Recognize Barcode](https://products.aspose.app/barcode/recognize)
17-
:---: | :---: | :---:
18-
[![ScanQR](https://products.aspose.app/barcode/scanqr/img/aspose_scanqr-app-48.png)](https://products.aspose.app/barcode/scanqr) | [![Generate](https://products.aspose.app/barcode/generate/img/aspose_generate-app-48.png)](https://products.aspose.app/barcode/generate) | [![Recognize](https://products.aspose.app/barcode/recognize/img/aspose_recognize-app-48.png)](https://products.aspose.app/barcode/recognize)
13+
[Scan QR](https://products.aspose.app/barcode/scanqr) | [Generate Barcode](https://products.aspose.app/barcode/generate) | [Recognize Barcode](https://products.aspose.app/barcode/recognize)
14+
:---: | :---: | :---:
15+
[![ScanQR](https://products.aspose.app/barcode/scanqr/img/aspose_scanqr-app-48.png)](https://products.aspose.app/barcode/scanqr) | [![Generate](https://products.aspose.app/barcode/generate/img/aspose_generate-app-48.png)](https://products.aspose.app/barcode/generate) | [![Recognize](https://products.aspose.app/barcode/recognize/img/aspose_recognize-app-48.png)](https://products.aspose.app/barcode/recognize)
1916
[**Generate Wi-Fi QR**](https://products.aspose.app/barcode/wifi-qr) | [**Embed Barcode**](https://products.aspose.app/barcode/embed) | [**Scan Barcode**](https://products.aspose.app/barcode/scan)
20-
[![Wi-FiQR](https://products.aspose.app/barcode/embed/img/aspose_wifi-qr-app-48.png)](https://products.aspose.app/barcode/wifi-qr) | [![Embed](https://products.aspose.app/barcode/embed/img/aspose_embed-app-48.png)](https://products.aspose.app/barcode/embed) | [![Scan](https://products.aspose.app/barcode/embed/img/aspose_scan-app-48.png)](https://products.aspose.app/barcode/scan)
17+
[![Wi-FiQR](https://products.aspose.app/barcode/embed/img/aspose_wifi-qr-app-48.png)](https://products.aspose.app/barcode/wifi-qr) | [![Embed](https://products.aspose.app/barcode/embed/img/aspose_embed-app-48.png)](https://products.aspose.app/barcode/embed) | [![Scan](https://products.aspose.app/barcode/embed/img/aspose_scan-app-48.png)](https://products.aspose.app/barcode/scan)
2118

2219
[Aspose.BarCode for Cloud](https://products.aspose.cloud/barcode/) is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.
2320

Tests/Aspose.BarCode.Cloud.Sdk.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
<None Remove="TestResults\**" />
1313
</ItemGroup>
1414
<ItemGroup>
15-
<PackageReference Include="Moq" Version="4.14.2" />
16-
<PackageReference Include="NUnit" Version="3.12.0" />
17-
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
15+
<PackageReference Include="Moq" Version="4.18.1" />
16+
<PackageReference Include="NUnit" Version="3.13.3" />
17+
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
18+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
1919
</ItemGroup>
2020
<ItemGroup>
2121
<ProjectReference Include="..\src\Aspose.BarCode.Cloud.Sdk.csproj" />

examples/GenerateQR/GenerateQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.6.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.7.0" />
1010
</ItemGroup>
1111

1212
</Project>

examples/ReadQR/ReadQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.6.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="22.7.0" />
1010
</ItemGroup>
1111

1212
</Project>

src/Aspose.BarCode.Cloud.Sdk.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
1818
<PackageId>Aspose.BarCode-Cloud</PackageId>
1919
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
2020
<PackageIcon>PackageIcon.png</PackageIcon>
21-
<Version>22.6.0</Version>
21+
<Version>22.7.0</Version>
2222
<Authors>asposecloud</Authors>
23-
<AssemblyVersion>22.6.0.0</AssemblyVersion>
23+
<AssemblyVersion>22.7.0.0</AssemblyVersion>
2424
</PropertyGroup>
2525

2626
<ItemGroup>

0 commit comments

Comments
 (0)