Skip to content

Commit 24870ee

Browse files
Update licensing.md
1 parent 7195fc4 commit 24870ee

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs2/pages/getting-started/licensing.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,25 @@ However, you can benefit from all the prime features for personal or academic pr
1818
## Setup License from config file
1919
The license name and key can be added directly in the app.config or web.config file in the appSettings section.
2020

21-
2221
```csharp
2322
<appSettings>
2423
<add key="Z_Dapper_Plus_LicenseName" value="[licenseName]"/>
2524
<add key="Z_Dapper_Plus_LicenseKey" value="[licenseKey]"/>
2625
</appSettings>
2726
```
2827

28+
## Setup License from appsettings.json file (.NET Core)
29+
The license name and key can be added directly in the appsettings.json.
30+
31+
```csharp
32+
{
33+
"Z.Dapper.Plus": {
34+
"LicenseName": "[licenseName]",
35+
"LicenseKey": "[licenseKey]"
36+
}
37+
}
38+
```
39+
2940
## Setup License from code
3041
The license can be added directly in the code of your application. Make sure to follow recommendations about where to add this code. Upon purchase completion, an email will be sent with your license key information.
3142

0 commit comments

Comments
 (0)