-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWeb.sample.config
More file actions
31 lines (31 loc) · 1.41 KB
/
Web.sample.config
File metadata and controls
31 lines (31 loc) · 1.41 KB
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
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="DOMAIN" value="example.org" />
<add key="CREDENTIALS" value="~/google-serviceaccount-key.json" />
<add key="LANGUAGES" value="de-at en-us" />
<add key="PROVISIONING_LOCALE" value="de_at" />
<add key="PROVISIONING_TIME_ZONE" value="Europe/Vienna" />
<add key="PROVISIONING_WIFI_SSID" value="Company-WiFi" />
<add key="PROVISIONING_WIFI_PASSWORD" value="P@ssw0rd" />
<add key="PROVISIONING_WIFI_SECURITY_TYPE" value="WPA" />
</appSettings>
<system.web>
<compilation targetFramework="4.8">
<assemblies>
<add assembly="System.DirectoryServices.AccountManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>
</compilation>
<pages>
<namespaces>
<add namespace="Aufbauwerk.Tools.Emm" />
<add namespace="System.DirectoryServices.AccountManagement" />
</namespaces>
</pages>
</system.web>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" compilerOptions="/langversion:9 /nowarn:1659;1699;1701 /nullable:enable" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</compilers>
</system.codedom>
</configuration>