-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTdsGlobal.config
85 lines (78 loc) · 3.6 KB
/
TdsGlobal.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!--
In the default configuration of the global file, the values for a configuration in the global file supersede the values
in the project configuration. This behavior can be changed by specifying a condition on the property as follows:
<SitecoreWebUrl Condition=" '$(SitecoreWebUrl)' == '' "></SitecoreWebUrl>
By adding the above condition, the value specified in the global configuration file will only be applied if the
value specified in the project is blank.
It should be noted that values in the project .user file will override values in the global file.
Changes to this file will not be picked up by visual studio until the TDS project(s) or solution is reloaded.
A TdsGlobal.config.user file may also be created in the same folder as this file. the .user file will override property
values specified in other files.
-->
<!-- Packaging properties -->
<PackageAuthor>EPAM Systems</PackageAuthor>
<PackagePublisher>EPAM Systems</PackagePublisher>
<SitecoreAssemblyPath></SitecoreAssemblyPath>
<GeneratePackage>True</GeneratePackage>
<SeperateFilesAndItems>False</SeperateFilesAndItems>
<DisableFileDeployment>True</DisableFileDeployment>
<PackageExcludeCode>True</PackageExcludeCode>
<!--
<PackageVersion></PackageVersion>
<PackageReadme></PackageReadme>
<GeneratePackage></GeneratePackage>
<SeperateFilesAndItems></SeperateFilesAndItems>
<AddDateTimeToPackageName></AddDateTimeToPackageName>
-->
<!-- Deployment Properties -->
<!-- <SitecoreWebUrl></SitecoreWebUrl>
<SitecoreDeployFolder></SitecoreDeployFolder>
<RecursiveDeployAction></RecursiveDeployAction>-->
<InstallSitecoreConnector>true</InstallSitecoreConnector>
<SitecoreAccessGuid>06525624-a214-425d-8138-d4556b7cb267</SitecoreAccessGuid>
<!-- <DisableFileDeployment></DisableFileDeployment>
-->
<NuGetRequireLicenseAcceptance>False</NuGetRequireLicenseAcceptance>
<NuGetAuthors>EPAM Systems</NuGetAuthors>
<NuGetOwners>EPAM Systems</NuGetOwners>
<NuGetCopyright>Copyright 2016 EPAM Systems. All Rights Reserved.</NuGetCopyright>
<!--
<NuGetGenerateNuGetPackage></NuGetGenerateNuGetPackage>
<NuGetExePath></NuGetExePath>
<NuGetSummary></NuGetSummary>
<NuGetDescription></NuGetDescription>
<NuGetTitle></NuGetTitle>
<NuGetVersion></NuGetVersion>
<NuGetPackageId></NuGetPackageId>
<NuGetAuthors></NuGetAuthors>
<NuGetProjectUrl></NuGetProjectUrl>
<NuGetTags></NuGetTags>
<NuGetRequireLicenseAcceptance></NuGetRequireLicenseAcceptance>
<NuGetReleaseNotes></NuGetReleaseNotes>
<NuGetLanguage></NuGetLanguage>
<NuGetOwners></NuGetOwners>
<NuGetCopyright></NuGetCopyright>
<NuGetLicenseUrl></NuGetLicenseUrl>
<NuGetIconUrl></NuGetIconUrl>
<NuGetDependencies></NuGetDependencies>
-->
<!-- Validation Properties -->
<!--
<EnableValidations></EnableValidations>
<ValidationSettingsFilePath></ValidationSettingsFilePath>
-->
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<SitecoreWebUrl>http://blog.local</SitecoreWebUrl>
<SitecoreDeployFolder>..\..\..\..\..\..\sandbox\Website</SitecoreDeployFolder>
<OutputPath>.\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SitecoreWebUrl></SitecoreWebUrl>
<SitecoreDeployFolder></SitecoreDeployFolder>
<OutputPath>.\bin\Release\</OutputPath>
</PropertyGroup>
</Project>