-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
26 lines (25 loc) · 1005 Bytes
/
App.config
File metadata and controls
26 lines (25 loc) · 1005 Bytes
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
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
</startup>
<runtime>
<!--Use in your app config to load resources from sub folder:-->
<!--
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="Resources"/>
</assemblyBinding>
-->
</runtime>
<appSettings>
<!-- Namespace for the resouces -->
<add key="ResourceNamespace" value="MyResources" />
<!-- Where to put finished resource libs, set to ".\" to use root folder. -->
<add key="ResourcePath" value="Resources" />
<!-- Where to find the resource source files, if unset will be the same as ResourcePath -->
<add key="ResourceSourcePath" value="Resources" />
<!-- if true, do not put main lib in ResourcePath. -->
<!--<add key="ResourceMainAtRoot" value="true" />-->
<!-- if true, do not thow an error if there is no default resources. -->
<!--<add key="IgnoreEmptyDefault" value="true" />-->
</appSettings>
</configuration>