-
Notifications
You must be signed in to change notification settings - Fork 17
/
App.config
27 lines (26 loc) · 981 Bytes
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<system.diagnostics>
<trace autoflush="true" indentsize="4">
<listeners>
<add name="consoleListener" type="System.Diagnostics.ConsoleTraceListener"/>
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
<appSettings>
<add key="API" value="YOUR_API_KEY_HERE"/>
<add key="BaseURI" value="http://YOUR_SNIPE_IT_URL_HERE/api/v1"/>
<add key="DefaultStatusLabel" value="Ready to Deploy"/>
<add key="Company" value="Your Company"/>
<add key="Location" value="Your Location"/>
<add key="OUEnabled" value="false"/>
<add key="OULevel" value="1"/>
<add key="Interactive" value="false"/>
<add key="WarrantyMonths" value="60"/>
<add key="AssetTagPrefix" value="002"/>
</appSettings>
</configuration>