Skip to content

Commit 293b2ba

Browse files
update to internal commit 78f5425c
1 parent f07b2cd commit 293b2ba

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

_data/product_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
useGroupedVersion: true
22

33
version_info_list:
4-
- value: latest version(2.2.10)
4+
- value: latest version
55
- value: 2.x
66
child:
77
- 2.2.0

programming/dotnet/release-notes/dotnet-2.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ needGenerateH3Content: false
88

99
# Release Notes for .NET Edition - v2.x
1010

11+
## 2.2.11 (06/12/2024)
12+
13+
- Fixed a bug where calling the method `GetSimplifiedSettings` would throw a `System.IO.FileNotFoundException` with the message "Could not load file or assembly ...".
14+
1115
## 2.2.10 (05/30/2024)
1216

1317
### Highlights

programming/dotnet/release-notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ needAutoGenerateSidebar: false
88

99
# Release Notes - .NET Edition
1010

11+
- [2.2.11 (06/12/2024)](dotnet-2.md#2211-06122024)
1112
- [2.2.10 (05/30/2024)](dotnet-2.md#2210-05302024)

programming/dotnet/user-guide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Open the `Program.cs` file and add the following code inside the `Main` method t
8787
int errorCode = 1;
8888
string errorMsg;
8989
errorCode = LicenseManager.InitLicense("DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", out errorMsg);
90-
if (errorCode != (int)EnumErrorCode.EC_OK)
90+
if (errorCode != (int)EnumErrorCode.EC_OK && errorCode != (int)EnumErrorCode.EC_LICENSE_CACHE_USED)
9191
Console.WriteLine("License initialization error: " + errorMsg);
9292
```
9393

0 commit comments

Comments
 (0)