-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
16 lines (16 loc) · 763 Bytes
/
App.config
File metadata and controls
16 lines (16 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="Figaro" type="Figaro.Configuration.FigaroSection, Figaro.Configuration"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup>
<appSettings>
<!-- You can specify a path to where your license key is installed. By default it resides in your bin directory. -->
<add key="figaro:licensePath" value=""/>
<!-- You will need an install code in order for Figaro to work. You can obtain one at https://licensing.endpointsystems.com -->
<add key="figaro:installCode" value="your key here"/>
</appSettings>
<Figaro configSource="Figaro.config"/>
</configuration>