-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigValues.xml
More file actions
22 lines (22 loc) · 890 Bytes
/
ConfigValues.xml
File metadata and controls
22 lines (22 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<ConfigValues WorkingEnvironment="Dev" WorkingEnvironmentFolder="./">
<Tasks>
<CreateConfigTask NameFormat="App.config" InputFile="./Template.App.config" OutputFolderFormat="./Configuration/{0}/" />
</Tasks>
<Parameters>
<ConfigParameter Name="EnvironmentName">
<Values>
<ConfigParameterValue Environment="Dev" Value="Development" />
<ConfigParameterValue Environment="Stage" Value="Stage" />
<ConfigParameterValue Environment="Prod" Value="Production" />
</Values>
</ConfigParameter>
<ConfigParameter Name="Title">
<Values>
<ConfigParameterValue Environment="Dev" Value="Example" />
<ConfigParameterValue Environment="Stage" Value="Example" />
<ConfigParameterValue Environment="Prod" Value="The Real Example" />
</Values>
</ConfigParameter>
</Parameters>
</ConfigValues>