Skip to content

Commit

Permalink
Update licensing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanMagnan authored Apr 11, 2019
1 parent 7195fc4 commit 24870ee
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs2/pages/getting-started/licensing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,25 @@ However, you can benefit from all the prime features for personal or academic pr
## Setup License from config file
The license name and key can be added directly in the app.config or web.config file in the appSettings section.


```csharp
<appSettings>
<add key="Z_Dapper_Plus_LicenseName" value="[licenseName]"/>
<add key="Z_Dapper_Plus_LicenseKey" value="[licenseKey]"/>
</appSettings>
```

## Setup License from appsettings.json file (.NET Core)
The license name and key can be added directly in the appsettings.json.

```csharp
{
"Z.Dapper.Plus": {
"LicenseName": "[licenseName]",
"LicenseKey": "[licenseKey]"
}
}
```

## Setup License from code
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.

Expand Down

0 comments on commit 24870ee

Please sign in to comment.