Skip to content

Commit 239dd9f

Browse files
update to internal commit 47000e1e
1 parent a27ce78 commit 239dd9f

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

programming/dotnet/release-notes/dotnet-10.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 - 10.x
1010

11+
## 10.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
## 10.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,6 +8,7 @@ needAutoGenerateSidebar: false
88

99
# Release Notes for .NET Edition
1010

11+
- [10.2.11 (06/12/2024)](dotnet-10.md#10211-06122024)
1112
- [10.2.10 (05/30/2024)](dotnet-10.md#10210-05302024)
1213
- [9.6.40 (03/14/2024)](dotnet-9.md#9640-03142024)
1314
- [9.6.30 (08/29/2023)](dotnet-9.md#9630-08292023)

programming/dotnet/user-guide.md

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

0 commit comments

Comments
 (0)