Merge lp:~adam-rpconnelly/dbversion/msbuild into lp:dbversion

Proposed by Adam Connelly
Status: Needs review
Proposed branch: lp:~adam-rpconnelly/dbversion/msbuild
Merge into: lp:dbversion
Diff against target: 12268 lines (+11891/-161)
11 files modified
build.xml (+101/-0)
src/CommonAssemblyInfo.cs (+0/-12)
src/DatabaseVersion.Console.Tests/dbversion.Console.Tests.csproj (+7/-8)
src/DatabaseVersion.Console/dbversion.Console.csproj (+8/-8)
src/DatabaseVersion.Tests/dbversion.Tests.csproj (+8/-7)
src/DatabaseVersion.sln (+117/-117)
src/DatabaseVersion/dbversion.csproj (+9/-9)
tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets (+104/-0)
tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml (+6506/-0)
tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xsd (+4293/-0)
tools/MSBuildCommunityTasks/NUnitReport.xsl (+738/-0)
To merge this branch: bzr merge lp:~adam-rpconnelly/dbversion/msbuild
Reviewer Review Type Date Requested Status
dbversion committers Pending
Review via email: mp+78783@code.launchpad.net

Description of the change

I've added an msbuild script for building the project. At the moment it just builds everything, runs the tests and then packages it into a zip file.

To post a comment you must log in.

Unmerged revisions

36. By Adam Connelly

Forgot to add the community tasks to bzr.

35. By Adam Connelly

Added targets to generate the CommonAssemblyInfo.cs file and to add the output into a zip file.

34. By Adam Connelly

Adding quoting around the xunit command.

33. By Adam Connelly

Initial version of a build script.

32. By Adam Connelly

ClassicVersionProvider was using First rather than FirstOrDefault when getting the current version. This meant that creating a database from scratch always failed because an exception was thrown.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'build.xml'
2--- build.xml 1970-01-01 00:00:00 +0000
3+++ build.xml 2011-10-09 23:44:38 +0000
4@@ -0,0 +1,101 @@
5+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" encoding="utf-8">
6+ <PropertyGroup>
7+ <SourceDirectory>$(MSBuildProjectDirectory)\src</SourceDirectory>
8+ <ToolsDirectory>$(MSBuildProjectDirectory)\tools</ToolsDirectory>
9+ <XunitPath>$(ToolsDirectory)\xUnit.net\xunit.console.clr4.x86.exe</XunitPath>
10+ <MSBuildCommunityTasksPath>$(ToolsDirectory)\MSBuildCommunityTasks</MSBuildCommunityTasksPath>
11+ <LibDirectory>$(MSBuildProjectDirectory)\lib</LibDirectory>
12+ <OutputDirectory>$(MSBuildProjectDirectory)\output</OutputDirectory>
13+ <Version>0.1.0.0</Version>
14+ </PropertyGroup>
15+
16+ <ItemGroup>
17+ <ProjectFiles Include="$(SourceDirectory)\**\*.csproj" />
18+ </ItemGroup>
19+
20+ <Target Name="Clean">
21+ <RemoveDir Directories="$(OutputDirectory)" />
22+ </Target>
23+
24+ <Import Project="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.Targets" />
25+
26+ <ItemGroup>
27+ <LibFiles Include="$(LibDirectory)\CommandLine\libcmdline\bin\Release\*.dll" />
28+ <LibFiles Include="$(LibDirectory)\DotNetZip\*.dll" />
29+ <LibFiles Include="$(LibDirectory)\FluentNHibernate\*.dll" />
30+ </ItemGroup>
31+
32+ <Target Name="CopyLibs">
33+ <MakeDir Directories="$(OutputDirectory)\Release" Condition="!Exists('$(OutputDirectory)\Release')" />
34+ <Copy SourceFiles="@(LibFiles)" DestinationFolder="$(OutputDirectory)\Release" />
35+ </Target>
36+
37+ <Target Name="GenerateAssemblyInfo">
38+ <AssemblyInfo AssemblyCopyright="Copyright © Adam Connelly 2011"
39+ CLSCompliant="true"
40+ ComVisible="false"
41+ AssemblyVersion="$(Version)"
42+ AssemblyFileVersion="$(Version)"
43+ CodeLanguage="CSharp"
44+ OutputFile="$(SourceDirectory)\CommonAssemblyInfo.cs" />
45+ </Target>
46+
47+ <PropertyGroup>
48+ <BuildDependsOn>
49+ GenerateAssemblyInfo
50+ </BuildDependsOn>
51+ </PropertyGroup>
52+
53+ <Target Name="Build" DependsOnTargets="$(BuildDependsOn)">
54+ <MSBuild Projects="@(ProjectFiles)" BuildInParallel="True" />
55+ </Target>
56+
57+ <PropertyGroup>
58+ <RunTestsDependsOn>
59+ Build;
60+ CopyLibs
61+ </RunTestsDependsOn>
62+ </PropertyGroup>
63+
64+ <Target Name="RunTests" DependsOnTargets="$(RunTestsDependsOn)">
65+ <ItemGroup>
66+ <OutputFiles Include="$(OutputDirectory)\Release\**\*" />
67+ <TestAssemblies Include="$(OutputDirectory)\Tests\*.Tests.dll" />
68+ </ItemGroup>
69+ <MakeDir Directories="$(OutputDirectory)\TestResults" Condition="!Exists('$(OutputDirectory)\TestResults')" />
70+ <Copy SourceFiles="@(OutputFiles)" DestinationFolder="$(OutputDirectory)\Tests" />
71+ <Copy SourceFiles="$(ToolsDirectory)\xUnit.net\xunit.dll" DestinationFolder="$(OutputDirectory)\Tests" />
72+ <Copy SourceFiles="$(ToolsDirectory)\Moq\NET40\Moq.dll" DestinationFolder="$(OutputDirectory)\Tests" />
73+ <Exec Command='"$(XunitPath)" "@(TestAssemblies)" /nunit "$(OutputDirectory)\TestResults\%(Filename).xml"' />
74+ </Target>
75+
76+ <PropertyGroup>
77+ <PackageDependsOn>
78+ Build;
79+ CopyLibs
80+ </PackageDependsOn>
81+ </PropertyGroup>
82+
83+ <Target Name="Package" DependsOnTargets="$(PackageDependsOn)">
84+ <ItemGroup>
85+ <ZipFiles Include="$(OutputDirectory)\Release\**\*" />
86+ </ItemGroup>
87+ <Zip Files="@(ZipFiles)"
88+ WorkingDirectory="$(OutputDirectory)\Release"
89+ ZipFileName="$(OutputDirectory)\dbversion-$(Version).zip"
90+ ZipLevel="9" />
91+ </Target>
92+
93+ <PropertyGroup>
94+ <ReleaseDependsOn>
95+ Clean;
96+ Build;
97+ CopyLibs;
98+ RunTests;
99+ Package
100+ </ReleaseDependsOn>
101+ </PropertyGroup>
102+
103+ <Target Name="Release" DependsOnTargets="$(ReleaseDependsOn)">
104+ </Target>
105+</Project>
106\ No newline at end of file
107
108=== removed file 'src/CommonAssemblyInfo.cs'
109--- src/CommonAssemblyInfo.cs 2011-09-06 19:36:41 +0000
110+++ src/CommonAssemblyInfo.cs 1970-01-01 00:00:00 +0000
111@@ -1,12 +0,0 @@
112-using System;
113-using System.Reflection;
114-using System.Runtime.CompilerServices;
115-using System.Runtime.InteropServices;
116-
117-[assembly: AssemblyCopyright("Copyright © Adam Connelly 2011")]
118-[assembly: AssemblyTrademark("")]
119-[assembly: AssemblyCulture("")]
120-[assembly: CLSCompliant(true)]
121-[assembly: ComVisible(false)]
122-[assembly: AssemblyVersion("0.1.0.0")]
123-[assembly: AssemblyFileVersion("0.1.0.0")]
124
125=== modified file 'src/DatabaseVersion.Console.Tests/dbversion.Console.Tests.csproj'
126--- src/DatabaseVersion.Console.Tests/dbversion.Console.Tests.csproj 2011-09-11 13:02:32 +0000
127+++ src/DatabaseVersion.Console.Tests/dbversion.Console.Tests.csproj 2011-10-09 23:44:38 +0000
128@@ -1,4 +1,4 @@
129-<?xml version="1.0" encoding="utf-8"?>
130+<?xml version="1.0" encoding="utf-8"?>
131 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
132 <PropertyGroup>
133 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
134@@ -24,7 +24,7 @@
135 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
136 <DebugType>none</DebugType>
137 <Optimize>false</Optimize>
138- <OutputPath>bin\Release</OutputPath>
139+ <OutputPath>..\..\Output\Tests\</OutputPath>
140 <ErrorReport>prompt</ErrorReport>
141 <WarningLevel>4</WarningLevel>
142 <ConsolePause>false</ConsolePause>
143@@ -34,10 +34,12 @@
144 <Reference Include="xunit, Version=1.8.0.1545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c">
145 <SpecificVersion>False</SpecificVersion>
146 <HintPath>..\..\tools\xUnit.net\xunit.dll</HintPath>
147+ <Private>False</Private>
148 </Reference>
149 <Reference Include="Moq, Version=4.0.10531.7, Culture=neutral, PublicKeyToken=69f491c39445e920">
150 <SpecificVersion>False</SpecificVersion>
151 <HintPath>..\..\tools\Moq\NET40\Moq.dll</HintPath>
152+ <Private>False</Private>
153 </Reference>
154 </ItemGroup>
155 <ItemGroup>
156@@ -49,20 +51,17 @@
157 <Compile Include="MessageServiceMock.cs" />
158 </ItemGroup>
159 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
160- <ItemGroup>
161- <Folder Include="Command\" />
162- <Folder Include="Command\Create\" />
163- <Folder Include="Command\Version\" />
164- <Folder Include="Command\Help\" />
165- </ItemGroup>
166+ <ItemGroup />
167 <ItemGroup>
168 <ProjectReference Include="..\DatabaseVersion.Console\dbversion.Console.csproj">
169 <Project>{18389508-A214-446A-A166-CFE7DD83DF23}</Project>
170 <Name>dbversion.Console</Name>
171+ <Private>False</Private>
172 </ProjectReference>
173 <ProjectReference Include="..\DatabaseVersion\dbversion.csproj">
174 <Project>{694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}</Project>
175 <Name>dbversion</Name>
176+ <Private>False</Private>
177 </ProjectReference>
178 </ItemGroup>
179 </Project>
180\ No newline at end of file
181
182=== modified file 'src/DatabaseVersion.Console/dbversion.Console.csproj'
183--- src/DatabaseVersion.Console/dbversion.Console.csproj 2011-09-11 13:02:32 +0000
184+++ src/DatabaseVersion.Console/dbversion.Console.csproj 2011-10-09 23:44:38 +0000
185@@ -1,4 +1,4 @@
186-<?xml version="1.0" encoding="utf-8"?>
187+<?xml version="1.0" encoding="utf-8"?>
188 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
189 <PropertyGroup>
190 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
191@@ -28,7 +28,7 @@
192 <PlatformTarget>x86</PlatformTarget>
193 <DebugType>pdbonly</DebugType>
194 <Optimize>true</Optimize>
195- <OutputPath>bin\Release\</OutputPath>
196+ <OutputPath>..\..\Output\Release\</OutputPath>
197 <DefineConstants>TRACE</DefineConstants>
198 <ErrorReport>prompt</ErrorReport>
199 <WarningLevel>4</WarningLevel>
200@@ -43,18 +43,22 @@
201 <Reference Include="Castle.Core, Version=2.5.1.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc">
202 <SpecificVersion>False</SpecificVersion>
203 <HintPath>..\..\lib\FluentNHibernate\Castle.Core.dll</HintPath>
204+ <Private>False</Private>
205 </Reference>
206 <Reference Include="CommandLine, Version=1.8.0.0, Culture=neutral, PublicKeyToken=null">
207 <HintPath>..\..\lib\CommandLine\libcmdline\bin\Release\CommandLine.dll</HintPath>
208+ <Private>False</Private>
209 </Reference>
210 <Reference Include="NHibernate.ByteCode.Castle, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4">
211 <SpecificVersion>False</SpecificVersion>
212 <HintPath>..\..\lib\FluentNHibernate\NHibernate.ByteCode.Castle.dll</HintPath>
213+ <Private>False</Private>
214 </Reference>
215 <Reference Include="System.Data" />
216 <Reference Include="NHibernate, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4">
217 <SpecificVersion>False</SpecificVersion>
218 <HintPath>..\..\lib\FluentNHibernate\NHibernate.dll</HintPath>
219+ <Private>False</Private>
220 </Reference>
221 </ItemGroup>
222 <ItemGroup>
223@@ -79,6 +83,7 @@
224 <ProjectReference Include="..\DatabaseVersion\dbversion.csproj">
225 <Project>{694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}</Project>
226 <Name>dbversion</Name>
227+ <Private>False</Private>
228 </ProjectReference>
229 </ItemGroup>
230 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
231@@ -89,10 +94,5 @@
232 <Target Name="AfterBuild">
233 </Target>
234 -->
235- <ItemGroup>
236- <Folder Include="Command\" />
237- <Folder Include="Command\Create\" />
238- <Folder Include="Command\Version\" />
239- <Folder Include="Command\Help\" />
240- </ItemGroup>
241+ <ItemGroup />
242 </Project>
243\ No newline at end of file
244
245=== modified file 'src/DatabaseVersion.Tests/dbversion.Tests.csproj'
246--- src/DatabaseVersion.Tests/dbversion.Tests.csproj 2011-09-04 22:51:13 +0000
247+++ src/DatabaseVersion.Tests/dbversion.Tests.csproj 2011-10-09 23:44:38 +0000
248@@ -1,4 +1,4 @@
249-<?xml version="1.0" encoding="utf-8"?>
250+<?xml version="1.0" encoding="utf-8"?>
251 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
252 <PropertyGroup>
253 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
254@@ -25,7 +25,7 @@
255 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
256 <DebugType>pdbonly</DebugType>
257 <Optimize>true</Optimize>
258- <OutputPath>bin\Release\</OutputPath>
259+ <OutputPath>..\..\Output\Tests\</OutputPath>
260 <DefineConstants>TRACE</DefineConstants>
261 <ErrorReport>prompt</ErrorReport>
262 <WarningLevel>4</WarningLevel>
263@@ -41,16 +41,20 @@
264 <Reference Include="Ionic.Zip, Version=1.9.1.5, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c">
265 <SpecificVersion>False</SpecificVersion>
266 <HintPath>..\..\lib\DotNetZip\Ionic.Zip.dll</HintPath>
267+ <Private>False</Private>
268 </Reference>
269 <Reference Include="Moq, Version=4.0.10531.7, Culture=neutral, PublicKeyToken=69f491c39445e920">
270 <HintPath>..\..\tools\Moq\NET40\Moq.dll</HintPath>
271+ <Private>False</Private>
272 </Reference>
273 <Reference Include="xunit, Version=1.8.0.1545, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c">
274 <HintPath>..\..\tools\xUnit.net\xunit.dll</HintPath>
275+ <Private>False</Private>
276 </Reference>
277 <Reference Include="NHibernate, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4">
278 <SpecificVersion>False</SpecificVersion>
279 <HintPath>..\..\lib\FluentNHibernate\NHibernate.dll</HintPath>
280+ <Private>False</Private>
281 </Reference>
282 </ItemGroup>
283 <ItemGroup>
284@@ -72,6 +76,7 @@
285 <ProjectReference Include="..\DatabaseVersion\dbversion.csproj">
286 <Project>{694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}</Project>
287 <Name>dbversion</Name>
288+ <Private>False</Private>
289 </ProjectReference>
290 </ItemGroup>
291 <ItemGroup>
292@@ -108,9 +113,5 @@
293 <Target Name="AfterBuild">
294 </Target>
295 -->
296- <ItemGroup>
297- <Folder Include="Property\" />
298- <Folder Include="Settings\" />
299- <Folder Include="Session\" />
300- </ItemGroup>
301+ <ItemGroup />
302 </Project>
303\ No newline at end of file
304
305=== modified file 'src/DatabaseVersion.sln'
306--- src/DatabaseVersion.sln 2011-09-05 19:50:57 +0000
307+++ src/DatabaseVersion.sln 2011-10-09 23:44:38 +0000
308@@ -1,117 +1,117 @@
309-
310-Microsoft Visual Studio Solution File, Format Version 11.00
311-# Visual Studio 2010
312-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion", "DatabaseVersion\dbversion.csproj", "{694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}"
313-EndProject
314-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion.Tests", "DatabaseVersion.Tests\dbversion.Tests.csproj", "{8A6B6459-D916-4991-9758-0DF8CE1104BE}"
315-EndProject
316-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion.Console", "DatabaseVersion.Console\dbversion.Console.csproj", "{18389508-A214-446A-A166-CFE7DD83DF23}"
317-EndProject
318-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion.Console.Tests", "DatabaseVersion.Console.Tests\dbversion.Console.Tests.csproj", "{51EE1287-6887-4FE1-B61F-49D40B7940EE}"
319-EndProject
320-Global
321- GlobalSection(SolutionConfigurationPlatforms) = preSolution
322- Debug|Any CPU = Debug|Any CPU
323- Debug|Mixed Platforms = Debug|Mixed Platforms
324- Debug|x86 = Debug|x86
325- Release|Any CPU = Release|Any CPU
326- Release|Mixed Platforms = Release|Mixed Platforms
327- Release|x86 = Release|x86
328- EndGlobalSection
329- GlobalSection(ProjectConfigurationPlatforms) = postSolution
330- {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Any CPU.ActiveCfg = Debug|x86
331- {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Any CPU.Build.0 = Debug|x86
332- {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
333- {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Mixed Platforms.Build.0 = Debug|x86
334- {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|x86.ActiveCfg = Debug|x86
335- {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|x86.Build.0 = Debug|x86
336- {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Any CPU.ActiveCfg = Release|x86
337- {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Any CPU.Build.0 = Release|x86
338- {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Mixed Platforms.ActiveCfg = Release|x86
339- {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Mixed Platforms.Build.0 = Release|x86
340- {18389508-A214-446A-A166-CFE7DD83DF23}.Release|x86.ActiveCfg = Release|x86
341- {18389508-A214-446A-A166-CFE7DD83DF23}.Release|x86.Build.0 = Release|x86
342- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
343- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
344- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
345- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
346- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|x86.ActiveCfg = Debug|Any CPU
347- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|x86.Build.0 = Debug|Any CPU
348- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
349- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Any CPU.Build.0 = Release|Any CPU
350- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
351- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
352- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|x86.ActiveCfg = Release|Any CPU
353- {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|x86.Build.0 = Release|Any CPU
354- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
355- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Any CPU.Build.0 = Debug|Any CPU
356- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
357- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
358- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|x86.ActiveCfg = Debug|Any CPU
359- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Any CPU.ActiveCfg = Release|Any CPU
360- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Any CPU.Build.0 = Release|Any CPU
361- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
362- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
363- {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|x86.ActiveCfg = Release|Any CPU
364- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
365- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
366- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
367- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
368- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|x86.ActiveCfg = Debug|Any CPU
369- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
370- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Any CPU.Build.0 = Release|Any CPU
371- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
372- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
373- {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|x86.ActiveCfg = Release|Any CPU
374- EndGlobalSection
375- GlobalSection(MonoDevelopProperties) = preSolution
376- StartupItem = DatabaseVersion.Console\dbversion.Console.csproj
377- Policies = $0
378- $0.TextStylePolicy = $1
379- $1.inheritsSet = null
380- $1.scope = text/x-csharp
381- $0.CSharpFormattingPolicy = $2
382- $2.IndentSwitchBody = True
383- $2.AnonymousMethodBraceStyle = NextLine
384- $2.PropertyBraceStyle = NextLine
385- $2.PropertyGetBraceStyle = NextLine
386- $2.PropertySetBraceStyle = NextLine
387- $2.EventBraceStyle = NextLine
388- $2.EventAddBraceStyle = NextLine
389- $2.EventRemoveBraceStyle = NextLine
390- $2.StatementBraceStyle = NextLine
391- $2.IfElseBraceForcement = AddBraces
392- $2.ForBraceForcement = AddBraces
393- $2.WhileBraceForcement = AddBraces
394- $2.UsingBraceForcement = AddBraces
395- $2.FixedBraceForcement = AddBraces
396- $2.PlaceElseOnNewLine = True
397- $2.PlaceCatchOnNewLine = True
398- $2.PlaceFinallyOnNewLine = True
399- $2.BeforeMethodDeclarationParentheses = False
400- $2.BeforeMethodCallParentheses = False
401- $2.BeforeConstructorDeclarationParentheses = False
402- $2.BeforeIndexerDeclarationBracket = False
403- $2.BeforeDelegateDeclarationParentheses = False
404- $2.NewParentheses = False
405- $2.SpacesBeforeBrackets = False
406- $2.inheritsSet = Mono
407- $2.inheritsScope = text/x-csharp
408- $2.scope = text/x-csharp
409- $0.TextStylePolicy = $3
410- $3.FileWidth = 120
411- $3.RemoveTrailingWhitespace = True
412- $3.inheritsSet = VisualStudio
413- $3.inheritsScope = text/plain
414- $3.scope = text/plain
415- $0.DotNetNamingPolicy = $4
416- $4.DirectoryNamespaceAssociation = PrefixedHierarchical
417- $4.ResourceNamePolicy = FileFormatDefault
418- $0.StandardHeader = $5
419- $5.Text =
420- $5.IncludeInNewFiles = True
421- EndGlobalSection
422- GlobalSection(SolutionProperties) = preSolution
423- HideSolutionNode = FALSE
424- EndGlobalSection
425-EndGlobal
426+
427+Microsoft Visual Studio Solution File, Format Version 11.00
428+# Visual Studio 2010
429+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion", "DatabaseVersion\dbversion.csproj", "{694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}"
430+EndProject
431+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion.Tests", "DatabaseVersion.Tests\dbversion.Tests.csproj", "{8A6B6459-D916-4991-9758-0DF8CE1104BE}"
432+EndProject
433+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion.Console", "DatabaseVersion.Console\dbversion.Console.csproj", "{18389508-A214-446A-A166-CFE7DD83DF23}"
434+EndProject
435+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dbversion.Console.Tests", "DatabaseVersion.Console.Tests\dbversion.Console.Tests.csproj", "{51EE1287-6887-4FE1-B61F-49D40B7940EE}"
436+EndProject
437+Global
438+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
439+ Debug|Any CPU = Debug|Any CPU
440+ Debug|Mixed Platforms = Debug|Mixed Platforms
441+ Debug|x86 = Debug|x86
442+ Release|Any CPU = Release|Any CPU
443+ Release|Mixed Platforms = Release|Mixed Platforms
444+ Release|x86 = Release|x86
445+ EndGlobalSection
446+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
447+ {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Any CPU.ActiveCfg = Debug|x86
448+ {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Any CPU.Build.0 = Debug|x86
449+ {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
450+ {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|Mixed Platforms.Build.0 = Debug|x86
451+ {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|x86.ActiveCfg = Debug|x86
452+ {18389508-A214-446A-A166-CFE7DD83DF23}.Debug|x86.Build.0 = Debug|x86
453+ {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Any CPU.ActiveCfg = Release|x86
454+ {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Any CPU.Build.0 = Release|x86
455+ {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Mixed Platforms.ActiveCfg = Release|x86
456+ {18389508-A214-446A-A166-CFE7DD83DF23}.Release|Mixed Platforms.Build.0 = Release|x86
457+ {18389508-A214-446A-A166-CFE7DD83DF23}.Release|x86.ActiveCfg = Release|x86
458+ {18389508-A214-446A-A166-CFE7DD83DF23}.Release|x86.Build.0 = Release|x86
459+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
460+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
461+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
462+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
463+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|x86.ActiveCfg = Debug|Any CPU
464+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Debug|x86.Build.0 = Debug|Any CPU
465+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
466+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Any CPU.Build.0 = Release|Any CPU
467+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
468+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
469+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|x86.ActiveCfg = Release|Any CPU
470+ {51EE1287-6887-4FE1-B61F-49D40B7940EE}.Release|x86.Build.0 = Release|Any CPU
471+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
472+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Any CPU.Build.0 = Debug|Any CPU
473+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
474+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
475+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Debug|x86.ActiveCfg = Debug|Any CPU
476+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Any CPU.ActiveCfg = Release|Any CPU
477+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Any CPU.Build.0 = Release|Any CPU
478+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
479+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
480+ {694D9BDF-DCE8-4FC6-A416-CE4573F2F00C}.Release|x86.ActiveCfg = Release|Any CPU
481+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
482+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
483+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
484+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
485+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Debug|x86.ActiveCfg = Debug|Any CPU
486+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
487+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Any CPU.Build.0 = Release|Any CPU
488+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
489+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
490+ {8A6B6459-D916-4991-9758-0DF8CE1104BE}.Release|x86.ActiveCfg = Release|Any CPU
491+ EndGlobalSection
492+ GlobalSection(MonoDevelopProperties) = preSolution
493+ StartupItem = DatabaseVersion.Console\dbversion.Console.csproj
494+ Policies = $0
495+ $0.TextStylePolicy = $1
496+ $1.inheritsSet = null
497+ $1.scope = text/x-csharp
498+ $0.CSharpFormattingPolicy = $2
499+ $2.IndentSwitchBody = True
500+ $2.AnonymousMethodBraceStyle = NextLine
501+ $2.PropertyBraceStyle = NextLine
502+ $2.PropertyGetBraceStyle = NextLine
503+ $2.PropertySetBraceStyle = NextLine
504+ $2.EventBraceStyle = NextLine
505+ $2.EventAddBraceStyle = NextLine
506+ $2.EventRemoveBraceStyle = NextLine
507+ $2.StatementBraceStyle = NextLine
508+ $2.IfElseBraceForcement = AddBraces
509+ $2.ForBraceForcement = AddBraces
510+ $2.WhileBraceForcement = AddBraces
511+ $2.UsingBraceForcement = AddBraces
512+ $2.FixedBraceForcement = AddBraces
513+ $2.PlaceElseOnNewLine = True
514+ $2.PlaceCatchOnNewLine = True
515+ $2.PlaceFinallyOnNewLine = True
516+ $2.BeforeMethodDeclarationParentheses = False
517+ $2.BeforeMethodCallParentheses = False
518+ $2.BeforeConstructorDeclarationParentheses = False
519+ $2.BeforeIndexerDeclarationBracket = False
520+ $2.BeforeDelegateDeclarationParentheses = False
521+ $2.NewParentheses = False
522+ $2.SpacesBeforeBrackets = False
523+ $2.inheritsSet = Mono
524+ $2.inheritsScope = text/x-csharp
525+ $2.scope = text/x-csharp
526+ $0.TextStylePolicy = $3
527+ $3.FileWidth = 120
528+ $3.RemoveTrailingWhitespace = True
529+ $3.inheritsSet = VisualStudio
530+ $3.inheritsScope = text/plain
531+ $3.scope = text/plain
532+ $0.DotNetNamingPolicy = $4
533+ $4.DirectoryNamespaceAssociation = PrefixedHierarchical
534+ $4.ResourceNamePolicy = FileFormatDefault
535+ $0.StandardHeader = $5
536+ $5.Text =
537+ $5.IncludeInNewFiles = True
538+ EndGlobalSection
539+ GlobalSection(SolutionProperties) = preSolution
540+ HideSolutionNode = FALSE
541+ EndGlobalSection
542+EndGlobal
543
544=== modified file 'src/DatabaseVersion/dbversion.csproj'
545--- src/DatabaseVersion/dbversion.csproj 2011-09-06 19:36:41 +0000
546+++ src/DatabaseVersion/dbversion.csproj 2011-10-09 23:44:38 +0000
547@@ -1,4 +1,4 @@
548-<?xml version="1.0" encoding="utf-8"?>
549+<?xml version="1.0" encoding="utf-8"?>
550 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
551 <PropertyGroup>
552 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
553@@ -25,7 +25,7 @@
554 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
555 <DebugType>pdbonly</DebugType>
556 <Optimize>true</Optimize>
557- <OutputPath>bin\Release\</OutputPath>
558+ <OutputPath>..\..\Output\Release\</OutputPath>
559 <DefineConstants>TRACE</DefineConstants>
560 <ErrorReport>prompt</ErrorReport>
561 <WarningLevel>4</WarningLevel>
562@@ -42,18 +42,23 @@
563 <Reference Include="Castle.Core, Version=2.5.1.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc">
564 <SpecificVersion>False</SpecificVersion>
565 <HintPath>..\..\lib\FluentNHibernate\Castle.Core.dll</HintPath>
566+ <Private>False</Private>
567 </Reference>
568 <Reference Include="FluentNHibernate, Version=1.2.0.712, Culture=neutral, PublicKeyToken=8aa435e3cb308880">
569 <HintPath>..\..\lib\FluentNHibernate\FluentNHibernate.dll</HintPath>
570+ <Private>False</Private>
571 </Reference>
572 <Reference Include="Ionic.Zip, Version=1.9.1.5, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c">
573 <HintPath>..\..\lib\DotNetZip\Ionic.Zip.dll</HintPath>
574+ <Private>False</Private>
575 </Reference>
576 <Reference Include="NHibernate, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4">
577 <HintPath>..\..\lib\FluentNHibernate\NHibernate.dll</HintPath>
578+ <Private>False</Private>
579 </Reference>
580 <Reference Include="NHibernate.ByteCode.Castle, Version=3.1.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4">
581 <HintPath>..\..\lib\FluentNHibernate\NHibernate.ByteCode.Castle.dll</HintPath>
582+ <Private>False</Private>
583 </Reference>
584 </ItemGroup>
585 <ItemGroup>
586@@ -117,10 +122,5 @@
587 <Target Name="AfterBuild">
588 </Target>
589 -->
590- <ItemGroup>
591- <Folder Include="Property\" />
592- <Folder Include="Session\" />
593- <Folder Include="Settings\" />
594- <Folder Include="Utils\" />
595- </ItemGroup>
596-</Project>
597+ <ItemGroup />
598+</Project>
599\ No newline at end of file
600
601=== added directory 'tools/MSBuildCommunityTasks'
602=== added file 'tools/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll'
603Binary files tools/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll 1970-01-01 00:00:00 +0000 and tools/MSBuildCommunityTasks/ICSharpCode.SharpZipLib.dll 2011-10-09 23:44:38 +0000 differ
604=== added file 'tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets'
605--- tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets 1970-01-01 00:00:00 +0000
606+++ tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets 2011-10-09 23:44:38 +0000
607@@ -0,0 +1,104 @@
608+<?xml version="1.0" encoding="utf-8" ?>
609+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
610+ <!-- $Id: MSBuild.Community.Tasks.Targets 303 2007-02-23 15:49:46Z pwelter34 $ -->
611+
612+ <PropertyGroup>
613+ <MSBuildCommunityTasksPath Condition="'$(MSBuildCommunityTasksPath)' == ''">$(MSBuildExtensionsPath)\MSBuildCommunityTasks</MSBuildCommunityTasksPath>
614+ <MSBuildCommunityTasksLib>$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.dll</MSBuildCommunityTasksLib>
615+ </PropertyGroup>
616+
617+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.AspNet.InstallAspNet" />
618+
619+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.AssemblyInfo" />
620+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Attrib" />
621+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SqlExecute" />
622+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.FileUpdate" />
623+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.FtpUpload" />
624+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.FxCop" />
625+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.GacUtil" />
626+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.GetSolutionProjects" />
627+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.ILMerge" />
628+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Mail" />
629+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Move" />
630+
631+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Math.Add" />
632+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Math.Divide" />
633+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Math.Modulo" />
634+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Math.Multiple" />
635+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Math.Subtract" />
636+
637+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.NDoc" />
638+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.NUnit" />
639+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Prompt" />
640+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.RegistryRead" />
641+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.RegistryWrite" />
642+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.RegexMatch" />
643+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.RegexReplace" />
644+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Script" />
645+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.ServiceController" />
646+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.ServiceQuery" />
647+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Sleep" />
648+
649+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.AppPoolController" />
650+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.AppPoolCreate" />
651+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.AppPoolDelete" />
652+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.WebDirectoryCreate" />
653+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.WebDirectoryDelete" />
654+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap" />
655+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.IIS.WebDirectorySetting" />
656+
657+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Install.InstallAssembly" />
658+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Install.UninstallAssembly" />
659+
660+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Schema.TaskSchema" />
661+
662+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SqlServer.ExecuteDDL" />
663+
664+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssAdd" />
665+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssCheckin" />
666+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssCheckout" />
667+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssClean" />
668+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssDiff" />
669+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssGet" />
670+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssHistory" />
671+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssLabel" />
672+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.SourceSafe.VssUndoCheckout" />
673+
674+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnCheckout" />
675+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnClient" />
676+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnCopy" />
677+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnCommit" />
678+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnExport" />
679+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnInfo" />
680+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnUpdate" />
681+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Subversion.SvnVersion" />
682+
683+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Tfs.TfsVersion" />
684+
685+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.TemplateFile" />
686+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Time" />
687+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Unzip" />
688+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Version" />
689+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.WebDownload" />
690+
691+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Xml.XmlMassUpdate" />
692+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Xml.XmlQuery" />
693+
694+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.XmlRead" />
695+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.XmlUpdate" />
696+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Xslt" />
697+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.Zip" />
698+
699+ <UsingTask AssemblyFile="$(MSBuildCommunityTasksLib)" TaskName="MSBuild.Community.Tasks.JavaScript.JSCompress" />
700+
701+ <ItemGroup>
702+ <FxCopRuleAssemblies Include="UsageRules.dll"/>
703+ <FxCopRuleAssemblies Include="SecurityRules.dll"/>
704+ <FxCopRuleAssemblies Include="PortabilityRules.dll"/>
705+ <FxCopRuleAssemblies Include="PerformanceRules.dll"/>
706+ <FxCopRuleAssemblies Include="MobilityRules.dll"/>
707+ <FxCopRuleAssemblies Include="InteroperabilityRules.dll"/>
708+ <FxCopRuleAssemblies Include="GlobalizationRules.dll"/>
709+ <FxCopRuleAssemblies Include="DesignRules.dll"/>
710+ </ItemGroup>
711+</Project>
712
713=== added file 'tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll'
714Binary files tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll 1970-01-01 00:00:00 +0000 and tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll 2011-10-09 23:44:38 +0000 differ
715=== added file 'tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.pdb'
716Binary files tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.pdb 1970-01-01 00:00:00 +0000 and tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.pdb 2011-10-09 23:44:38 +0000 differ
717=== added file 'tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml'
718--- tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml 1970-01-01 00:00:00 +0000
719+++ tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml 2011-10-09 23:44:38 +0000
720@@ -0,0 +1,6506 @@
721+<?xml version="1.0"?>
722+<doc>
723+ <assembly>
724+ <name>MSBuild.Community.Tasks</name>
725+ </assembly>
726+ <members>
727+ <member name="T:MSBuild.Community.Tasks.AspNet.InstallAspNet">
728+ <summary>
729+ Installs and register script mappings for ASP.NET
730+ </summary>
731+ <remarks>Uses the aspnet_regiis.exe tool included with the .NET Framework.</remarks>
732+ <example>
733+ Install the latest version of ASP.NET on the server:
734+ <code>
735+ <![CDATA[ <InstallAspNet /> ]]>
736+ </code>
737+ </example><example>
738+ Install the latest version of ASP.NET on the server, but do not update script maps:
739+ <code>
740+ <![CDATA[ <InstallAspNet ApplyScriptMaps="Never" /> ]]>
741+ </code>
742+ </example><example>
743+ Install the script maps for ASP.NET 2.0 on a web directory on the default website:
744+ <code>
745+ <![CDATA[ <InstallAspNet Path="MyApplication" Version="Version20" /> ]]>
746+ </code>
747+ </example><example>
748+ Install the script maps for ASP.NET 1.1 on a web directory on a non-default website:
749+ <code>
750+ <![CDATA[ <InstallAspNet Path="MyApplication" Version="W3SVC/3/Root/Version11" /> ]]>
751+ </code>
752+ </example><example>
753+ Install client side script only for the latest version:
754+ <code>
755+ <![CDATA[ <InstallAspNet ClientScriptsOnly="True" /> ]]>
756+ </code>
757+ </example>
758+ </member>
759+ <member name="M:MSBuild.Community.Tasks.AspNet.InstallAspNet.GenerateFullPathToTool">
760+ <summary>
761+ Returns the fully qualified path to the executable file.
762+ </summary>
763+ <returns>
764+ The fully qualified path to the executable file.
765+ </returns>
766+ </member>
767+ <member name="M:MSBuild.Community.Tasks.AspNet.InstallAspNet.GenerateCommandLineCommands">
768+ <summary>
769+ Returns a string value containing the command line arguments
770+ to pass directly to the executable file.
771+ </summary>
772+ <returns>
773+ A string value containing the command line arguments to pass
774+ directly to the executable file.
775+ </returns>
776+ </member>
777+ <member name="M:MSBuild.Community.Tasks.AspNet.InstallAspNet.Execute">
778+ <summary>
779+ When overridden in a derived class, executes the task.
780+ </summary>
781+ <returns>
782+ True if the task successfully executed; otherwise, false.
783+ </returns>
784+ </member>
785+ <member name="M:MSBuild.Community.Tasks.AspNet.InstallAspNet.IsValidPropertyCombinations">
786+ <summary>
787+ Determines if the current property values can be used together
788+ </summary>
789+ <returns><see langword="true"/> when properties can be used together.</returns>
790+ </member>
791+ <member name="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.Version">
792+ <summary>
793+ The version of ASP.NET to install
794+ </summary>
795+ <remarks>
796+ The default behavior is to use the latest version of ASP.NET available on the computer.
797+ <list type="table">
798+ <listheader><term>Version</term></listheader>
799+ <item><term>Version11</term><description>ASP.NET v1.1</description></item>
800+ <item><term>Version20</term><description>ASP.NET v2.0</description></item>
801+ <item><term>VersionLatest</term><description>The latest version of ASP.NET available</description></item>
802+ </list>
803+ </remarks>
804+ </member>
805+ <member name="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.ApplyScriptMaps">
806+ <summary>
807+ The method used to determine if ASP.NET script mappings should be applied
808+ </summary>
809+ <remarks>
810+ The default behavior is to register script mappings on all sites except those with a newer version of ASP.NET.
811+ <list type="table">
812+ <listheader><term>Value</term></listheader>
813+ <item><term>Never</term><description>Register ASP.NET on the computer without updating any script mappings.</description></item>
814+ <item><term>IfNoneExist</term><description>Register script mappings only on for sites that do not have any existing ASP.NET script mappings (not available for ASP.NET v1.1)</description></item>
815+ <item><term>UnlessNewerExist</term><description>Register script mappings on all sites except those with a newer version of ASP.NET.</description></item>
816+ <item><term>Always</term><description>Register script mappings on all sites, even if they already have a newer version of ASP.NET.</description></item>
817+ </list>
818+ </remarks>
819+ </member>
820+ <member name="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.ClientScriptsOnly">
821+ <summary>
822+ When <see langword="true"/>, the aspnet_client scripts will be installed. No script mappings will be updated.
823+ </summary>
824+ <remarks>This cannot be <see langword="true"/> if a value for <see cref="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.Path"/> or <see cref="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.ApplyScriptMaps"/> has been specified.</remarks>
825+ </member>
826+ <member name="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.Path">
827+ <summary>
828+ The web application that should have its script maps updated.
829+ </summary>
830+ <remarks>
831+ The path must be of the form W3SVC/[instance]/Root/[webdirectory], for example W3SVC/1/Root/SampleApp1.
832+ As a shortcut, you can specify just the web directory name,
833+ if the web directory is installed in the default website instance (W3SVC/1/Root).
834+ <para>You should not specify a value for <see cref="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.ApplyScriptMaps"/> when specifying a path.</para>
835+ </remarks>
836+ </member>
837+ <member name="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.Recursive">
838+ <summary>
839+ When <see langword="true"/>, script maps are applied recursively under <see cref="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.Path"/>.
840+ </summary>
841+ <remarks>This property is only valid when specifying a value for <see cref="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.Path"/>. It is <see langword="true"/> by default.</remarks>
842+ </member>
843+ <member name="P:MSBuild.Community.Tasks.AspNet.InstallAspNet.ToolName">
844+ <summary>
845+ Gets the name of the executable file to run.
846+ </summary>
847+ <value></value>
848+ <returns>The name of the executable file to run.</returns>
849+ </member>
850+ <member name="T:MSBuild.Community.Tasks.AssemblyInfo">
851+ <summary>
852+ Generates an AssemblyInfo files
853+ </summary>
854+ <example>
855+ <para>Generates a common version file.</para>
856+ <code><![CDATA[
857+ <AssemblyInfo CodeLanguage="CS"
858+ OutputFile="VersionInfo.cs"
859+ AssemblyVersion="1.0.0.0"
860+ AssemblyFileVersion="1.0.0.0" />
861+ ]]></code>
862+ <para>Generates a complete version file.</para>
863+ <code><![CDATA[
864+ <AssemblyInfo CodeLanguage="CS"
865+ OutputFile="$(MSBuildProjectDirectory)\Test\GlobalInfo.cs"
866+ AssemblyTitle="AssemblyInfoTask"
867+ AssemblyDescription="AssemblyInfo Description"
868+ AssemblyConfiguration=""
869+ AssemblyCompany="Company Name, LLC"
870+ AssemblyProduct="AssemblyInfoTask"
871+ AssemblyCopyright="Copyright (c) Company Name, LLC 2006"
872+ AssemblyTrademark=""
873+ ComVisible="false"
874+ CLSCompliant="true"
875+ Guid="d038566a-1937-478a-b5c5-b79c4afb253d"
876+ AssemblyVersion="1.0.0.0"
877+ AssemblyFileVersion="1.0.0.0" />
878+ ]]></code>
879+ </example>
880+ </member>
881+ <member name="F:MSBuild.Community.Tasks.AssemblyInfo.DEFAULT_OUTPUT_FILE">
882+ <summary>
883+ The default value of <see cref="P:MSBuild.Community.Tasks.AssemblyInfo.OutputFile"/>.
884+ The value is <c>"AssemblyInfo.cs"</c>.
885+ </summary>
886+ </member>
887+ <member name="M:MSBuild.Community.Tasks.AssemblyInfo.#ctor">
888+ <summary>
889+ Initializes a new instance of the <see cref="T:AssemblyInfo"/> class.
890+ </summary>
891+ </member>
892+ <member name="M:MSBuild.Community.Tasks.AssemblyInfo.Execute">
893+ <summary>
894+ When overridden in a derived class, executes the task.
895+ </summary>
896+ <returns>
897+ true if the task successfully executed; otherwise, false.
898+ </returns>
899+ </member>
900+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.CodeLanguage">
901+ <summary>
902+ Gets or sets the code language.
903+ </summary>
904+ <value>The code language.</value>
905+ </member>
906+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.ComVisible">
907+ <summary>
908+ Gets or sets a value indicating whether [COMVisible].
909+ </summary>
910+ <value><c>true</c> if [COMVisible]; otherwise, <c>false</c>.</value>
911+ </member>
912+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.CLSCompliant">
913+ <summary>
914+ Gets or sets a value indicating whether [CLSCompliant].
915+ </summary>
916+ <value><c>true</c> if [CLSCompliant]; otherwise, <c>false</c>.</value>
917+ </member>
918+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.Guid">
919+ <summary>
920+ Gets or sets the GUID.
921+ </summary>
922+ <value>The GUID.</value>
923+ </member>
924+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyTitle">
925+ <summary>
926+ Gets or sets the assembly title.
927+ </summary>
928+ <value>The assembly title.</value>
929+ </member>
930+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyDescription">
931+ <summary>
932+ Gets or sets the assembly description.
933+ </summary>
934+ <value>The assembly description.</value>
935+ </member>
936+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyConfiguration">
937+ <summary>
938+ Gets or sets the assembly configuration.
939+ </summary>
940+ <value>The assembly configuration.</value>
941+ </member>
942+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyCompany">
943+ <summary>
944+ Gets or sets the assembly company.
945+ </summary>
946+ <value>The assembly company.</value>
947+ </member>
948+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyProduct">
949+ <summary>
950+ Gets or sets the assembly product.
951+ </summary>
952+ <value>The assembly product.</value>
953+ </member>
954+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyCopyright">
955+ <summary>
956+ Gets or sets the assembly copyright.
957+ </summary>
958+ <value>The assembly copyright.</value>
959+ </member>
960+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyTrademark">
961+ <summary>
962+ Gets or sets the assembly trademark.
963+ </summary>
964+ <value>The assembly trademark.</value>
965+ </member>
966+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyCulture">
967+ <summary>
968+ Gets or sets the assembly culture.
969+ </summary>
970+ <value>The assembly culture.</value>
971+ </member>
972+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyVersion">
973+ <summary>
974+ Gets or sets the assembly version.
975+ </summary>
976+ <value>The assembly version.</value>
977+ </member>
978+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyFileVersion">
979+ <summary>
980+ Gets or sets the assembly file version.
981+ </summary>
982+ <value>The assembly file version.</value>
983+ </member>
984+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyInformationalVersion">
985+ <summary>
986+ Gets or sets the assembly informational version.
987+ </summary>
988+ <value>The assembly informational version.</value>
989+ </member>
990+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyKeyFile">
991+ <summary>
992+ Gets or sets the assembly key file.
993+ </summary>
994+ </member>
995+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyKeyName">
996+ <summary>
997+ Gets or sets the assembly key name.
998+ </summary>
999+ </member>
1000+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.AssemblyDelaySign">
1001+ <summary>
1002+ Gets or sets the assembly delay sign value.
1003+ </summary>
1004+ </member>
1005+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.GenerateClass">
1006+ <summary>
1007+ Gets or sets a value indicating whether to generate the ThisAssmebly class.
1008+ </summary>
1009+ </member>
1010+ <member name="P:MSBuild.Community.Tasks.AssemblyInfo.OutputFile">
1011+ <summary>
1012+ Gets or sets the output file.
1013+ </summary>
1014+ <value>The output file.</value>
1015+ </member>
1016+ <member name="T:MSBuild.Community.Tasks.Attrib">
1017+ <summary>
1018+ Changes the attributes of files and/or directories
1019+ </summary>
1020+ <example>
1021+ <para>Make file Readonly, Hidden and System.</para>
1022+ <code><![CDATA[
1023+ <Attrib Files="Test\version.txt"
1024+ ReadOnly="true" Hidden="true" System="true"/>
1025+ ]]></code>
1026+ <para>Clear Hidden and System attributes.</para>
1027+ <code><![CDATA[
1028+ <Attrib Files="Test\version.txt"
1029+ Hidden="false" System="false"/>
1030+ ]]></code>
1031+ <para>Make file Normal.</para>
1032+ <code><![CDATA[
1033+ <Attrib Files="Test\version.txt"
1034+ Normal="true"/>
1035+ ]]></code>
1036+ </example>
1037+ </member>
1038+ <member name="M:MSBuild.Community.Tasks.Attrib.Execute">
1039+ <summary>
1040+ Executes the task.
1041+ </summary>
1042+ <returns><see langword="true"/> if the task ran successfully;
1043+ otherwise <see langword="false"/>.</returns>
1044+ </member>
1045+ <member name="P:MSBuild.Community.Tasks.Attrib.Files">
1046+ <summary>
1047+ Gets or sets the list of files to change attributes on.
1048+ </summary>
1049+ <value>The files to change attributes on.</value>
1050+ </member>
1051+ <member name="P:MSBuild.Community.Tasks.Attrib.Directories">
1052+ <summary>
1053+ Gets or sets the list of directories to change attributes on.
1054+ </summary>
1055+ <value>The directories to change attributes on.</value>
1056+ </member>
1057+ <member name="P:MSBuild.Community.Tasks.Attrib.Archive">
1058+ <summary>
1059+ Gets or sets file's archive status.
1060+ </summary>
1061+ <value><c>true</c> if archive; otherwise, <c>false</c>.</value>
1062+ </member>
1063+ <member name="P:MSBuild.Community.Tasks.Attrib.Compressed">
1064+ <summary>
1065+ Gets or sets a value indicating file is compressed.
1066+ </summary>
1067+ <value><c>true</c> if compressed; otherwise, <c>false</c>.</value>
1068+ </member>
1069+ <member name="P:MSBuild.Community.Tasks.Attrib.Encrypted">
1070+ <summary>
1071+ Gets or sets a value indicating file is encrypted.
1072+ </summary>
1073+ <value><c>true</c> if encrypted; otherwise, <c>false</c>.</value>
1074+ </member>
1075+ <member name="P:MSBuild.Community.Tasks.Attrib.Hidden">
1076+ <summary>
1077+ Gets or sets a value indicating file is hidden, and thus is not included in an ordinary directory listing.
1078+ </summary>
1079+ <value><c>true</c> if hidden; otherwise, <c>false</c>.</value>
1080+ </member>
1081+ <member name="P:MSBuild.Community.Tasks.Attrib.Normal">
1082+ <summary>
1083+ Gets or sets a value indicating file is normal and has no other attributes set.
1084+ </summary>
1085+ <value><c>true</c> if normal; otherwise, <c>false</c>.</value>
1086+ </member>
1087+ <member name="P:MSBuild.Community.Tasks.Attrib.ReadOnly">
1088+ <summary>
1089+ Gets or sets a value indicating file is read-only.
1090+ </summary>
1091+ <value><c>true</c> if read-only; otherwise, <c>false</c>.</value>
1092+ </member>
1093+ <member name="P:MSBuild.Community.Tasks.Attrib.System">
1094+ <summary>
1095+ Gets or sets a value indicating file is a system file.
1096+ </summary>
1097+ <value><c>true</c> if system; otherwise, <c>false</c>.</value>
1098+ </member>
1099+ <member name="T:MSBuild.Community.Tasks.GacUtilCommands">
1100+ <summary>
1101+ The list of the commans available to the GacUtil Task
1102+ </summary>
1103+ </member>
1104+ <member name="F:MSBuild.Community.Tasks.GacUtilCommands.Install">
1105+ <summary>Install the list of assemblies into the GAC.</summary>
1106+ </member>
1107+ <member name="F:MSBuild.Community.Tasks.GacUtilCommands.Uninstall">
1108+ <summary>Uninstall the list of assembly names from the GAC.</summary>
1109+ </member>
1110+ <member name="T:MSBuild.Community.Tasks.GacUtil">
1111+ <summary>
1112+ MSBuild task to install and uninstall asseblies into the GAC
1113+ </summary>
1114+ <example>Install a dll into the GAC.
1115+ <code><![CDATA[
1116+ <GacUtil
1117+ Command="Install"
1118+ Assemblies="MSBuild.Community.Tasks.dll"
1119+ Force="true" />
1120+ ]]></code>
1121+ </example>
1122+ <example>Uninstall a dll from the GAC.
1123+ <code><![CDATA[
1124+ <GacUtil
1125+ Command="Uninstall"
1126+ Assemblies="MSBuild.Community.Tasks"
1127+ Force="true" />
1128+ ]]></code>
1129+ </example>
1130+ </member>
1131+ <member name="M:MSBuild.Community.Tasks.GacUtil.GenerateFullPathToTool">
1132+ <summary>
1133+ Returns the fully qualified path to the executable file.
1134+ </summary>
1135+ <returns>
1136+ The fully qualified path to the executable file.
1137+ </returns>
1138+ </member>
1139+ <member name="M:MSBuild.Community.Tasks.GacUtil.LogToolCommand(System.String)">
1140+ <summary>
1141+ Logs the starting point of the run to all registered loggers.
1142+ </summary>
1143+ <param name="message">A descriptive message to provide loggers, usually the command line and switches.</param>
1144+ </member>
1145+ <member name="M:MSBuild.Community.Tasks.GacUtil.GenerateCommandLineCommands">
1146+ <summary>
1147+ Returns a string value containing the command line arguments to pass directly to the executable file.
1148+ </summary>
1149+ <returns>
1150+ A string value containing the command line arguments to pass directly to the executable file.
1151+ </returns>
1152+ </member>
1153+ <member name="M:MSBuild.Community.Tasks.GacUtil.Execute">
1154+ <summary>
1155+ Runs the exectuable file with the specified task parameters.
1156+ </summary>
1157+ <returns>
1158+ true if the task runs successfully; otherwise, false.
1159+ </returns>
1160+ </member>
1161+ <member name="P:MSBuild.Community.Tasks.GacUtil.Command">
1162+ <summary>
1163+ Gets or sets the command.
1164+ </summary>
1165+ <value>The command.</value>
1166+ <enum cref="T:MSBuild.Community.Tasks.GacUtilCommands"/>
1167+ </member>
1168+ <member name="P:MSBuild.Community.Tasks.GacUtil.Force">
1169+ <summary>
1170+ Gets or sets a value indicating whether to force reinstall of an assembly.
1171+ </summary>
1172+ <value><c>true</c> if force; otherwise, <c>false</c>.</value>
1173+ </member>
1174+ <member name="P:MSBuild.Community.Tasks.GacUtil.Assemblies">
1175+ <summary>
1176+ Gets or sets the assembly.
1177+ </summary>
1178+ <value>The assembly.</value>
1179+ </member>
1180+ <member name="P:MSBuild.Community.Tasks.GacUtil.ToolName">
1181+ <summary>
1182+ Gets the name of the executable file to run.
1183+ </summary>
1184+ <value></value>
1185+ <returns>The name of the executable file to run.</returns>
1186+ </member>
1187+ <member name="P:MSBuild.Community.Tasks.GacUtil.StandardOutputLoggingImportance">
1188+ <summary>
1189+ Gets the <see cref="T:Microsoft.Build.Framework.MessageImportance"></see> with which to log errors.
1190+ </summary>
1191+ <value></value>
1192+ <returns>The <see cref="T:Microsoft.Build.Framework.MessageImportance"></see> with which to log errors.</returns>
1193+ </member>
1194+ <member name="T:MSBuild.Community.Tasks.JavaScript.JSCompress">
1195+ <summary>
1196+ Compresses JavaScript source by removing comments and unnecessary
1197+ whitespace. It typically reduces the size of the script by half,
1198+ resulting in faster downloads and code that is harder to read.
1199+ </summary>
1200+ <remarks>
1201+ This task does not change the behavior of the program that it is
1202+ compressing. The resulting code will be harder to debug as well as
1203+ harder to read.
1204+ </remarks>
1205+ </member>
1206+ <member name="M:MSBuild.Community.Tasks.JavaScript.JSCompress.Execute">
1207+ <summary>
1208+ When overridden in a derived class, executes the task.
1209+ </summary>
1210+ <returns>
1211+ true if the task successfully executed; otherwise, false.
1212+ </returns>
1213+ </member>
1214+ <member name="P:MSBuild.Community.Tasks.JavaScript.JSCompress.Files">
1215+ <summary>
1216+ Gets or sets the files to source-compress.
1217+ </summary>
1218+ </member>
1219+ <member name="P:MSBuild.Community.Tasks.JavaScript.JSCompress.Encoding">
1220+ <summary>
1221+ Encoding to use to read and write files.
1222+ </summary>
1223+ </member>
1224+ <member name="P:MSBuild.Community.Tasks.JavaScript.JSCompress.CompressedFiles">
1225+ <summary>
1226+ Gets the files that were successfully source-compressed.
1227+ </summary>
1228+ </member>
1229+ <member name="T:MSBuild.Community.Tasks.Subversion.SvnCopy">
1230+ <summary>
1231+ Copy a file or folder in Subversion
1232+ </summary>
1233+ <remarks>
1234+ This is most useful for automatically tagging your source code during a build.
1235+ You can create a tag by copying a path from one server location to another.
1236+ </remarks>
1237+ <example>Create a tag of the trunk with the current Cruise Control build number:
1238+ <code><![CDATA[
1239+ <Target Name="TagTheBuild">
1240+ <SvnCopy SourcePath="file:///d:/svn/repo/Test/trunk"
1241+ DestinationPath="file:///d:/svn/repo/Test/tags/BUILD-$(CCNetLabel)"
1242+ Message="Automatic build of $(CCNetProject)" />
1243+ </Target>
1244+ ]]></code>
1245+ </example>
1246+ </member>
1247+ <member name="T:MSBuild.Community.Tasks.Subversion.SvnClient">
1248+ <summary>
1249+ Subversion client base class
1250+ </summary>
1251+ </member>
1252+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.GenerateSvnCommand">
1253+ <summary>
1254+ Generates the SVN command.
1255+ </summary>
1256+ <returns></returns>
1257+ </member>
1258+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.GenerateSvnArguments">
1259+ <summary>
1260+ Generates the SVN arguments.
1261+ </summary>
1262+ <returns></returns>
1263+ </member>
1264+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.GenerateCommandLineCommands">
1265+ <summary>
1266+ Returns a string value containing the command line arguments to pass directly to the executable file.
1267+ </summary>
1268+ <returns>
1269+ A string value containing the command line arguments to pass directly to the executable file.
1270+ </returns>
1271+ </member>
1272+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.ValidateParameters">
1273+ <summary>
1274+ Indicates whether all task paratmeters are valid.
1275+ </summary>
1276+ <returns>
1277+ true if all task parameters are valid; otherwise, false.
1278+ </returns>
1279+ </member>
1280+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.LogEventsFromTextOutput(System.String,Microsoft.Build.Framework.MessageImportance)">
1281+ <summary>
1282+ Logs the events from text output.
1283+ </summary>
1284+ <param name="singleLine">The single line.</param>
1285+ <param name="messageImportance">The message importance.</param>
1286+ </member>
1287+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.GenerateFullPathToTool">
1288+ <summary>
1289+ Returns the fully qualified path to the executable file.
1290+ </summary>
1291+ <returns>
1292+ The fully qualified path to the executable file.
1293+ </returns>
1294+ </member>
1295+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnClient.LogToolCommand(System.String)">
1296+ <summary>
1297+ Logs the starting point of the run to all registered loggers.
1298+ </summary>
1299+ <param name="message">A descriptive message to provide loggers, usually the command line and switches.</param>
1300+ </member>
1301+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Command">
1302+ <summary>
1303+ Gets or sets the command.
1304+ </summary>
1305+ <value>The command.</value>
1306+ </member>
1307+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Arguments">
1308+ <summary>
1309+ Gets or sets the arguments.
1310+ </summary>
1311+ <value>The arguments.</value>
1312+ </member>
1313+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Username">
1314+ <summary>
1315+ Gets or sets the username.
1316+ </summary>
1317+ <value>The username.</value>
1318+ </member>
1319+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Password">
1320+ <summary>
1321+ Gets or sets the password.
1322+ </summary>
1323+ <value>The password.</value>
1324+ </member>
1325+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Verbose">
1326+ <summary>
1327+ Gets or sets the verbose.
1328+ </summary>
1329+ <value>The verbose.</value>
1330+ </member>
1331+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Force">
1332+ <summary>
1333+ Gets or sets the force.
1334+ </summary>
1335+ <value>The force.</value>
1336+ </member>
1337+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Message">
1338+ <summary>
1339+ Gets or sets the message.
1340+ </summary>
1341+ <value>The message.</value>
1342+ </member>
1343+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.RepositoryPath">
1344+ <summary>
1345+ Gets or sets the repository path.
1346+ </summary>
1347+ <value>The repository path.</value>
1348+ </member>
1349+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.LocalPath">
1350+ <summary>
1351+ Gets or sets the local path.
1352+ </summary>
1353+ <value>The local path.</value>
1354+ </member>
1355+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Targets">
1356+ <summary>
1357+ Gets or sets the targets.
1358+ </summary>
1359+ <value>The targets.</value>
1360+ </member>
1361+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.Revision">
1362+ <summary>
1363+ Gets or sets the revision.
1364+ </summary>
1365+ <value>The revision.</value>
1366+ </member>
1367+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.CommandSwitches">
1368+ <summary>
1369+ Gets or sets the command switchs.
1370+ </summary>
1371+ <value>The command switchs.</value>
1372+ </member>
1373+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.StandardOutputLoggingImportance">
1374+ <summary>
1375+ Gets the <see cref="T:Microsoft.Build.Framework.MessageImportance"></see> with which to log errors.
1376+ </summary>
1377+ <value></value>
1378+ <returns>The <see cref="T:Microsoft.Build.Framework.MessageImportance"></see> with which to log errors.</returns>
1379+ </member>
1380+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnClient.ToolName">
1381+ <summary>
1382+ Gets the name of the executable file to run.
1383+ </summary>
1384+ <value></value>
1385+ <returns>The name of the executable file to run.</returns>
1386+ </member>
1387+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnCopy.#ctor">
1388+ <summary>
1389+ Initializes a new instance of the <see cref="T:MSBuild.Community.Tasks.Subversion.SvnCopy"/> class.
1390+ </summary>
1391+ </member>
1392+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnCopy.GenerateSvnCommand">
1393+ <summary>
1394+ Generates the SVN command.
1395+ </summary>
1396+ <returns></returns>
1397+ </member>
1398+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnCopy.ValidateParameters">
1399+ <summary>
1400+ Indicates whether all task paratmeters are valid.
1401+ </summary>
1402+ <returns>
1403+ true if all task parameters are valid; otherwise, false.
1404+ </returns>
1405+ </member>
1406+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnCopy.SourcePath">
1407+ <summary>
1408+ The path of the source file or folder that should be copied
1409+ </summary>
1410+ </member>
1411+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnCopy.DestinationPath">
1412+ <summary>
1413+ The path to which the SourcePath should be copied
1414+ </summary>
1415+ </member>
1416+ <member name="T:MSBuild.Community.Tasks.Tfs.IServer">
1417+ <summary>
1418+ Describes the behavior of a Team Foundation Server
1419+ </summary>
1420+ </member>
1421+ <member name="M:MSBuild.Community.Tasks.Tfs.IServer.GetLatestChangesetId(System.String,System.Net.ICredentials)">
1422+ <summary>
1423+ Retrieves the latest changeset ID associated with a path
1424+ </summary>
1425+ <param name="localPath">A path on the local filesystem</param>
1426+ <param name="credentials">Credentials used to authenticate against the serer</param>
1427+ <returns></returns>
1428+ </member>
1429+ <member name="T:MSBuild.Community.Tasks.Tfs.TeamFoundationServer">
1430+ <summary>
1431+ Handles all communication with the Team Foundation Server
1432+ </summary>
1433+ </member>
1434+ <member name="M:MSBuild.Community.Tasks.Tfs.TeamFoundationServer.#ctor(System.String)">
1435+ <summary>
1436+ Creates an instace of the TeamFoundationServer class
1437+ </summary>
1438+ <param name="clientLocation">The local file path containing the TFS libraries. null if TFS is in the GAC.</param>
1439+ </member>
1440+ <member name="M:MSBuild.Community.Tasks.Tfs.TeamFoundationServer.GetLatestChangesetId(System.String,System.Net.ICredentials)">
1441+ <summary>
1442+ Retrieves the latest changeset ID associated with a path
1443+ </summary>
1444+ <param name="localPath">A path on the local filesystem</param>
1445+ <param name="credentials">Credentials used to authenticate against the serer</param>
1446+ <returns></returns>
1447+ </member>
1448+ <member name="T:MSBuild.Community.Tasks.Tfs.TeamFoundationServerException">
1449+ <summary>
1450+ Exceptions returned by the Team Foundation Server
1451+ </summary>
1452+ </member>
1453+ <member name="M:MSBuild.Community.Tasks.Tfs.TeamFoundationServerException.#ctor">
1454+ <summary>
1455+ Creates a new instance of the exception
1456+ </summary>
1457+ </member>
1458+ <member name="M:MSBuild.Community.Tasks.Tfs.TeamFoundationServerException.#ctor(System.String)">
1459+ <summary>
1460+ Creates a new instance of the exception
1461+ </summary>
1462+ <param name="message">A description of the exception</param>
1463+ </member>
1464+ <member name="T:MSBuild.Community.Tasks.Tfs.TfsVersion">
1465+ <summary>
1466+ Determines the changeset in a local Team Foundation Server workspace
1467+ </summary>
1468+ </member>
1469+ <member name="M:MSBuild.Community.Tasks.Tfs.TfsVersion.Execute">
1470+ <summary>
1471+ Runs the exectuable file with the specified task parameters.
1472+ </summary>
1473+ <returns>
1474+ true if the task runs successfully; otherwise, false.
1475+ </returns>
1476+ </member>
1477+ <member name="P:MSBuild.Community.Tasks.Tfs.TfsVersion.Username">
1478+ <summary>
1479+ The user to authenticate on the server
1480+ </summary>
1481+ <remarks>Leave empty to use the credentials of the current user.</remarks>
1482+ </member>
1483+ <member name="P:MSBuild.Community.Tasks.Tfs.TfsVersion.Password">
1484+ <summary>
1485+ The password for the user to authenticate on the server
1486+ </summary>
1487+ <remarks>Leave empty to use the credentials of the current user.</remarks>
1488+ </member>
1489+ <member name="P:MSBuild.Community.Tasks.Tfs.TfsVersion.Domain">
1490+ <summary>
1491+ The domain of the user to authenticate on the server
1492+ </summary>
1493+ <remarks>Leave empty to use the credentials of the current user.</remarks>
1494+ </member>
1495+ <member name="P:MSBuild.Community.Tasks.Tfs.TfsVersion.LocalPath">
1496+ <summary>Path to local working copy.</summary>
1497+ </member>
1498+ <member name="P:MSBuild.Community.Tasks.Tfs.TfsVersion.Changeset">
1499+ <summary>
1500+ The latest changeset ID in the local path
1501+ </summary>
1502+ </member>
1503+ <member name="P:MSBuild.Community.Tasks.Tfs.TfsVersion.TfsLibraryLocation">
1504+ <summary>
1505+ The location of the Team Foundation Server client assemblies. Leave empty when the client is installed in the Global Assembly Cache.
1506+ </summary>
1507+ </member>
1508+ <member name="T:MSBuild.Community.Tasks.Xml.XmlMassUpdate">
1509+ <summary>
1510+ Performs multiple updates on an XML file
1511+ </summary>
1512+ <remarks>
1513+ XmlMassUpdate allows to to specify multiple changes to make to an XML file (the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentFile"/>. By default, the changes are applied to the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentFile"/>, but you can create a new file by providing the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.MergedFile"/> attribute. The change instructions are specified using XML in the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsFile"/>. If the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsFile"/> does not mirror the structure of the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentFile"/> exactly, you can specify the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentRoot"/> and <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsRoot"/> XPath expressions which determine how the files should be mapped to each other.
1514+ <para>Any element within the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsRoot"/> will find the corresponding element in the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentRoot"/>. If it does not exist, it will be created with all of its attributes. If it does exist, the attributes will be added or updated as specified.</para>
1515+ <para>
1516+ Any attribute declared within the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.UpdateControlNamespace"/> will not be copied to the modified file. Valid attributes are <c>key</c> and <c>action</c>. The <c>key</c> attribute allows you to define an attribute to use as the identifying attribute when you only want to update a single element, and multiple elements with the same name exist. You can also use the <c>action="remove"</c> attribute to specify that an element should be deleted instead of updated.
1517+ </para>
1518+ </remarks><example>
1519+ <para>These examples will demonstrate how to make multiple updates to a XML file named web.config. It looks like:
1520+ <code>
1521+ <![CDATA[<?xml version="1.0" encoding="utf-8" ?>
1522+<configuration>
1523+ <appSettings>
1524+ <add key="ItemsPerPage" value="10" />
1525+ <add key="EnableCaching" value="true" />
1526+ <add key="DefaultServer" value="TIGRIS" />
1527+ </appSettings>
1528+ <system.web>
1529+ <compilation defaultLanguage="c#" debug="true" />
1530+ <customErrors mode="Off" />
1531+ <trace enabled="true" requestLimit="10" pageOutput="true" />
1532+ <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
1533+ </system.web>
1534+</configuration> ]]>
1535+ </code>
1536+ </para>
1537+ </example><example>
1538+ You can update the file using instructions from an external file (specified as the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsFile"/>):
1539+ <code>
1540+ <![CDATA[<XmlMassUpdate ContentFile="web.config" SubstitutionsFile="changes.xml" ContentRoot="/configuration/system.web" SubstitutionsRoot="/system.web" /> ]]>
1541+ </code>
1542+ The <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsFile"/> is named changes.xml and contains:
1543+ <code>
1544+ <![CDATA[<system.web>
1545+ <compilation debug="false" />
1546+ <customErrors mode="RemoteOnly" defaultRedirect="Error.htm">
1547+ <error statusCode="401" redirect="AccessDenied.aspx" />
1548+ </customErrors>
1549+ <trace enabled="false" />
1550+ </system.web> ]]>
1551+ </code>
1552+ </example><example>
1553+ You can also provide the update instructions within the MSBuild project file itself. It takes advantage of the MSBuild ProjectExtensions element which allows you to add XML to a project file that will be ignored by the MSBuild engine. This example also demonstrates how to use <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.NamespaceDefinitions"/>:
1554+ <code>
1555+ <![CDATA[<ProjectExtensions>
1556+ <system.web>
1557+ <compilation debug="false" />
1558+ <trace enabled="false" />
1559+ </system.web>
1560+</ProjectExtensions>
1561+<Target Name="SubstituteFromProj">
1562+ <XmlMassUpdate ContentFile="web.config" ContentRoot="/configuration/system.web"
1563+ NamespaceDefinitions="msb=http://schemas.microsoft.com/developer/msbuild/2003"
1564+ SubstitutionsFile="$(MSBuildProjectFullPath)"
1565+ SubstitutionsRoot="/msb:Project/msb:ProjectExtensions/msb:system.web" />
1566+</Target> ]]>
1567+ </code>
1568+ </example><example>
1569+ The following example demonstrates how to deal with "keyed" elements. When you need to update an element, and multiple elements exist with the same name, it must be be differentied by one of its attributes. You designate the differentiating attribute using the "key" attribute declared in the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.UpdateControlNamespace"/>.
1570+ If an element matching the keyed attribute is not found, a new element will be created (DefaultSort in the example). This example also demonstrates creating a new file with the merged changes instead of modifying the original file.
1571+ <code>
1572+ <![CDATA[ <XmlMassUpdate ContentFile="web.config" SubstitutionsFile="changes.xml" MergedFile="web.config.keyed.xml" /> ]]>
1573+ </code>
1574+ Using a changes.xml file with the following contents:
1575+ <code>
1576+ <![CDATA[<configuration xmlns:xmu="urn:msbuildcommunitytasks-xmlmassupdate">
1577+ <appSettings>
1578+ <add xmu:key="key" key="EnableCaching" value="false" />
1579+ <add xmu:key="key" key="DefaultSort" value="LastName" />
1580+ </appSettings>
1581+</configuration> ]]>
1582+ </code>
1583+ </example><example>
1584+ Use a changes.xml file with the following contents to demonstrate how to remove an element from the updated file:
1585+ <code>
1586+ <![CDATA[<configuration xmlns:xmu="urn:msbuildcommunitytasks-xmlmassupdate">
1587+ <appSettings>
1588+ <add xmu:key="key" key="ItemsPerPage" xmu:action="remove" />
1589+ <trace xmu:action="remove" />
1590+ </appSettings>
1591+</configuration> ]]>
1592+ </code>
1593+ </example><example>
1594+ You can also specify the changes to apply from within the target document. By making use of the <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsRoot"/> property, you can store multiple sets of changes to apply based on runtime conditions.
1595+ Consider the following source web.config file:
1596+ <code>
1597+ <![CDATA[<?xml version="1.0" encoding="utf-8" ?>
1598+<configuration>
1599+ <system.web>
1600+ <compilation defaultLanguage="c#" debug="true" />
1601+ <customErrors mode="Off" />
1602+ <trace enabled="true" requestLimit="10" pageOutput="true" />
1603+ <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
1604+ </system.web>
1605+ <substitutions>
1606+ <test>
1607+ <system.web>
1608+ <compilation debug="false" />
1609+ <trace enabled="true" />
1610+ </system.web>
1611+ </test>
1612+ <prod>
1613+ <system.web>
1614+ <compilation debug="false" />
1615+ <trace enabled="false" />
1616+ </system.web>
1617+ </prod>
1618+ </substitutions>
1619+</configuration> ]]>
1620+ </code>
1621+ You could use the following task definition, which relies on a property "TargetEnvironment" to determine which set of changes to apply:
1622+ <code>
1623+ <![CDATA[ <XmlMassUpdate ContentFile="web.config" ContentRoot="/configuration" SubstitutionsRoot="/configuration/substitutions/$(TargetEnvironment)" /> ]]>
1624+ </code>
1625+ You will need to provide a value of "test" or "prod" to the TargetEnvironment property. The property can be defined in a PropertyGroup section of the MSBuild file, or passed as a command-line parameter.
1626+ <code>
1627+ <![CDATA[ msbuild build.proj /p:TargetEnvironment=prod ]]>
1628+ </code>
1629+
1630+ </example>
1631+ </member>
1632+ <member name="M:MSBuild.Community.Tasks.Xml.XmlMassUpdate.Execute">
1633+ <summary>
1634+ When overridden in a derived class, executes the task.
1635+ </summary>
1636+ <returns>
1637+ True if the task successfully executed; otherwise, false.
1638+ </returns>
1639+ </member>
1640+ <member name="M:MSBuild.Community.Tasks.Xml.XmlMassUpdate.LoadSubstitutionsDocument">
1641+ <summary>
1642+ Returns <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsFile"/> as an <see cref="T:System.Xml.XmlDocument"/>.
1643+ </summary>
1644+ <remarks>This method is not intended for use by consumers. It is exposed for testing purposes.</remarks>
1645+ <returns></returns>
1646+ </member>
1647+ <member name="M:MSBuild.Community.Tasks.Xml.XmlMassUpdate.LoadContentDocument">
1648+ <summary>
1649+ Returns <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentFile"/> as an <see cref="T:System.Xml.XmlDocument"/>.
1650+ </summary>
1651+ <remarks>This method is not intended for use by consumers. It is exposed for testing purposes.</remarks>
1652+ <returns></returns>
1653+ </member>
1654+ <member name="M:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SaveMergedDocument(System.Xml.XmlDocument)">
1655+ <summary>
1656+ Creates <see cref="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.MergedFile"/> from the specified <see cref="T:System.Xml.XmlDocument"/>
1657+ </summary>
1658+ <param name="mergedDocument">The XML to save to a file</param>
1659+ <remarks>This method is not intended for use by consumers. It is exposed for testing purposes.</remarks>
1660+ <returns></returns>
1661+ </member>
1662+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentFile">
1663+ <summary>
1664+ The original file whose content is to be updated
1665+ </summary>
1666+ <remarks>This task is currently under construction and not necessarily feature complete.</remarks>
1667+ </member>
1668+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsFile">
1669+ <summary>
1670+ The file containing the list of updates to perform
1671+ </summary>
1672+ </member>
1673+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.MergedFile">
1674+ <summary>
1675+ The file created after performing the updates
1676+ </summary>
1677+ </member>
1678+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsRoot">
1679+ <summary>
1680+ The XPath expression used to locate the list of substitutions to perform
1681+ </summary>
1682+ <remarks>When not specified, the default is the document root: <c>/</c>
1683+ <para>When there is a set of elements with the same name, and you want to update
1684+ a single element which can be identified by one of its attributes, you need to include an attribute
1685+ named 'key' in the namespace <c>urn:msbuildcommunitytasks-xmlmassupdate</c>. The value of the
1686+ attribute is the name of the attribute that should be used as the unique identifier.</para></remarks>
1687+ </member>
1688+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentRoot">
1689+ <summary>
1690+ The XPath expression identifying root node that substitions are relative to
1691+ </summary>
1692+ <remarks>When not specified, the default is the document root: <c>/</c></remarks>
1693+ </member>
1694+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.NamespaceDefinitions">
1695+ <summary>
1696+ A collection of prefix=namespace definitions used to query the XML documents
1697+ </summary>
1698+ <example>
1699+ Defining multiple namespaces:
1700+ <code>
1701+ <![CDATA[
1702+<XmlMassUpdate ContentFile="web.config"
1703+ SubstitutionsRoot="/configuration/substitutions"
1704+ NamespaceDefinitions = "soap=http://www.w3.org/2001/12/soap-envelope;x=http://www.w3.org/1999/XSL/Transform">
1705+/>]]>
1706+ </code>
1707+ </example>
1708+ </member>
1709+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.ContentPathUsedByTask">
1710+ <summary>
1711+ The full path of the file containing content updated by the task
1712+ </summary>
1713+ </member>
1714+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.SubstitutionsPathUsedByTask">
1715+ <summary>
1716+ The full path of the file containing substitutions used by the task
1717+ </summary>
1718+ </member>
1719+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.MergedPathUsedByTask">
1720+ <summary>
1721+ The full path of the file containing the results of the task
1722+ </summary>
1723+ </member>
1724+ <member name="P:MSBuild.Community.Tasks.Xml.XmlMassUpdate.UpdateControlNamespace">
1725+ <summary>
1726+ The namespace used for XmlMassUpdate pre-defined attributes
1727+ </summary>
1728+ <remarks>Evaluates to: <c>urn:msbuildcommunitytasks-xmlmassupdate</c>
1729+ <para>Attributes decorated with this namespace are used to control how a substitutions element
1730+ or attribute is handled during the update. For example, the key attribute is used to identify the
1731+ attribute on an element that uniquely identifies the element in a set.</para></remarks>
1732+ </member>
1733+ <member name="T:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap">
1734+ <summary>
1735+ Sets an application mapping for a filename extension on an existing web directory.
1736+ </summary>
1737+ <example>Map the .axd extension to the lastest version of ASP.NET:
1738+ <code><![CDATA[
1739+ <WebDirectoryScriptMap VirtualDirectoryName="MyWeb" Extension=".axd" MapToAspNet="True" VerifyFileExists="False" />
1740+ ]]></code>
1741+ </example>
1742+ <example>Map GET requests to the .rss extension to a specific executable:
1743+ <code><![CDATA[
1744+ <WebDirectoryScriptMap VirtualDirectoryName="MyWeb" Extension=".rss" Verbs="GET" ExecutablePath="$(WINDIR)\Microsoft.Net\Framework\1.0.3705\aspnet_isapi.dll" />
1745+ ]]></code>
1746+ </example>
1747+ </member>
1748+ <member name="T:MSBuild.Community.Tasks.IIS.WebBase">
1749+ <summary>
1750+ Base task for any IIS-related task.
1751+ </summary>
1752+ <remarks>Stores the base logic for gathering the IIS version and server and port checking. This
1753+ base task also stores common properties for other related tasks.</remarks>
1754+ </member>
1755+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.mIISVersion">
1756+ <summary>
1757+ IIS version.
1758+ </summary>
1759+ </member>
1760+ <member name="M:MSBuild.Community.Tasks.IIS.WebBase.GetIISVersion">
1761+ <summary>
1762+ Gets the IIS version.
1763+ </summary>
1764+ <returns>The <see cref="T:MSBuild.Community.Tasks.IIS.WebBase.IISVersion"/> for IIS.</returns>
1765+ <exclude/>
1766+ </member>
1767+ <member name="M:MSBuild.Community.Tasks.IIS.WebBase.GetRemoteOSVersion">
1768+ <summary>
1769+ Gets the remote machine OS version.
1770+ </summary>
1771+ <returns>Returns a <see cref="T:System.Version"/> of the operating system.</returns>
1772+ <exclude/>
1773+ </member>
1774+ <member name="M:MSBuild.Community.Tasks.IIS.WebBase.VerifyIISRoot">
1775+ <summary>
1776+ Verifies that the IIS root exists based on the <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.ServerName"/> and <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.ServerPort"/>.
1777+ </summary>
1778+ <exclude/>
1779+ </member>
1780+ <member name="M:MSBuild.Community.Tasks.IIS.WebBase.VerifyServerPortExists(System.DirectoryServices.DirectoryEntry)">
1781+ <summary>
1782+ Helper method for <see cref="M:MSBuild.Community.Tasks.IIS.WebBase.VerifyIISRoot"/> that verifies the server port exists.
1783+ </summary>
1784+ <param name="site">The site to verify the port.</param>
1785+ <returns>Boolean value indicating the status of the port check.</returns>
1786+ <exclude/>
1787+ </member>
1788+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.ServerName">
1789+ <summary>
1790+ Gets or sets the name of the server. The default value is 'localhost'.
1791+ </summary>
1792+ <value>The name of the server.</value>
1793+ </member>
1794+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.ServerPort">
1795+ <summary>
1796+ Gets or sets the server port.
1797+ </summary>
1798+ <value>The server port.</value>
1799+ </member>
1800+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.IISServerPath">
1801+ <summary>
1802+ Gets or sets the IIS server path.
1803+ </summary>
1804+ <remarks>Is in the form 'IIS://localhost/W3SVC/1/Root'.</remarks>
1805+ <value>The IIS server path.</value>
1806+ </member>
1807+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.IISApplicationPath">
1808+ <summary>
1809+ Gets or sets the application path.
1810+ </summary>
1811+ <remarks>Is in the form '/LM/W3SVC/1/Root'.</remarks>
1812+ <value>The application path.</value>
1813+ </member>
1814+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.IISAppPoolPath">
1815+ <summary>
1816+ Gets or sets the IIS application pool path.
1817+ </summary>
1818+ <remarks>Is in the form 'IIS://localhost/W3SVC/AppPools'.</remarks>
1819+ <value>The IIS application pool path.</value>
1820+ </member>
1821+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.Username">
1822+ <summary>
1823+ Gets or sets the username for the account the task will run under. This property
1824+ is needed if you specified a <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.ServerName"/> for a remote machine.
1825+ </summary>
1826+ <value>The username of the account.</value>
1827+ </member>
1828+ <member name="P:MSBuild.Community.Tasks.IIS.WebBase.Password">
1829+ <summary>
1830+ Gets or sets the password for the account the task will run under. This property
1831+ is needed if you specified a <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.ServerName"/> for a remote machine.
1832+ </summary>
1833+ <value>The password of the account.</value>
1834+ </member>
1835+ <member name="T:MSBuild.Community.Tasks.IIS.WebBase.IISVersion">
1836+ <summary>
1837+ Defines the possible IIS versions supported by the task.
1838+ </summary>
1839+ </member>
1840+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.IISVersion.Four">
1841+ <summary>
1842+ IIS version 4.x
1843+ </summary>
1844+ </member>
1845+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.IISVersion.Five">
1846+ <summary>
1847+ IIS version 5.x
1848+ </summary>
1849+ </member>
1850+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.IISVersion.Six">
1851+ <summary>
1852+ IIS version 6.x
1853+ </summary>
1854+ </member>
1855+ <member name="T:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolAction">
1856+ <summary>
1857+ Defines the possible application pool actions to be performed.
1858+ </summary>
1859+ </member>
1860+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolAction.Recycle">
1861+ <summary>
1862+ Recycles an application pool.
1863+ </summary>
1864+ </member>
1865+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolAction.Restart">
1866+ <summary>
1867+ Stops and restarts the application pool.
1868+ </summary>
1869+ </member>
1870+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolAction.Start">
1871+ <summary>
1872+ Starts the application pool.
1873+ </summary>
1874+ </member>
1875+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolAction.Stop">
1876+ <summary>
1877+ Stops the application pool.
1878+ </summary>
1879+ </member>
1880+ <member name="T:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolState">
1881+ <summary>
1882+ Defines the current application pool state.
1883+ </summary>
1884+ </member>
1885+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolState.Starting">
1886+ <summary>
1887+ The application pool is starting.
1888+ </summary>
1889+ </member>
1890+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolState.Started">
1891+ <summary>
1892+ The application pool has started.
1893+ </summary>
1894+ </member>
1895+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolState.Stopping">
1896+ <summary>
1897+ The application pool is stopping.
1898+ </summary>
1899+ </member>
1900+ <member name="F:MSBuild.Community.Tasks.IIS.WebBase.ApplicationPoolState.Stopped">
1901+ <summary>
1902+ The application pool has stopped.
1903+ </summary>
1904+ </member>
1905+ <member name="M:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.Execute">
1906+ <summary>
1907+ When overridden in a derived class, executes the task.
1908+ </summary>
1909+ <returns>
1910+ True if the task successfully executed; otherwise, false.
1911+ </returns>
1912+ </member>
1913+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.VirtualDirectoryName">
1914+ <summary>
1915+ Gets or sets the name of the virtual directory.
1916+ </summary>
1917+ <value>The name of the virtual directory.</value>
1918+ </member>
1919+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.Extension">
1920+ <summary>
1921+ The filename extension that will be mapped to an executable.
1922+ </summary>
1923+ </member>
1924+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.ExecutablePath">
1925+ <summary>
1926+ The full path to the executable used to respond to requests for a Uri ending with <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.Extension"/>
1927+ </summary>
1928+ <remarks>This property is required when <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.MapToAspNet"/> is <c>false</c> (the default).</remarks>
1929+ </member>
1930+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.MapToAspNet">
1931+ <summary>
1932+ Indicates whether <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.Extension"/> should be mapped to the ASP.NET runtime.
1933+ </summary>
1934+ <remarks>When <c>true</c>, <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.ExecutablePath"/> is set to aspnet_isapi.dll
1935+ in the installation folder of the latest version of the .NET Framework.</remarks>
1936+ </member>
1937+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.Verbs">
1938+ <summary>
1939+ A comma-separated list of the HTTP verbs to include in the application mapping.
1940+ </summary>
1941+ <remarks>The default behavior (when this property is empty or unspecified) is to map all verbs.
1942+ <para>A semi-colon-separated list will also be recognized, allowing you to use an MSBuild Item.</para></remarks>
1943+ </member>
1944+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.EnableScriptEngine">
1945+ <summary>
1946+ Set to <c>true</c> when you want the application to run in a directory without Execute permissions.
1947+ </summary>
1948+ </member>
1949+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryScriptMap.VerifyFileExists">
1950+ <summary>
1951+ Set to <c>true</c> to instruct the Web server to verify the existence of the requested script file and to ensure that the requesting user has access permission for that script file.
1952+ </summary>
1953+ </member>
1954+ <member name="T:MSBuild.Community.Tasks.IIS.WebDirectorySetting">
1955+ <summary>
1956+ Reads and modifies a web directory configuration setting.
1957+ </summary>
1958+ <example>Display the file system path of the MyWeb web directory:
1959+ <code><![CDATA[
1960+ <WebDirectorySetting VirtualDirectoryName="MyWeb" SettingName="Path">
1961+ <Output TaskParameter="SettingValue" PropertyName="LocalPath" />
1962+ </WebDirectorySetting>
1963+ <Message Text="MyWeb is located at $(LocalPath)" />
1964+ ]]></code>
1965+ </example>
1966+ <example>Set the default document for the MyWeb directory to Default.aspx:
1967+ <code><![CDATA[
1968+ <WebDirectorySetting VirtualDirectoryName="MyWeb" SettingName="DefaultDoc" SettingValue="Default.aspx" />
1969+ <WebDirectorySetting VirtualDirectoryName="MyWeb" SettingName="EnableDefaultDoc" SettingValue="True" />
1970+ ]]></code>
1971+ </example>
1972+ </member>
1973+ <member name="M:MSBuild.Community.Tasks.IIS.WebDirectorySetting.Execute">
1974+ <summary>
1975+ When overridden in a derived class, executes the task.
1976+ </summary>
1977+ <returns>
1978+ True if the task successfully executed; otherwise, false.
1979+ </returns>
1980+ </member>
1981+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectorySetting.VirtualDirectoryName">
1982+ <summary>
1983+ Gets or sets the name of the virtual directory.
1984+ </summary>
1985+ <value>The name of the virtual directory.</value>
1986+ </member>
1987+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectorySetting.SettingName">
1988+ <summary>
1989+ Gets or sets the configuration setting to read or modify.
1990+ </summary>
1991+ </member>
1992+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectorySetting.SettingValue">
1993+ <summary>
1994+ Gets or sets the value of <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectorySetting.SettingName"/> on the web directory
1995+ </summary>
1996+ </member>
1997+ <member name="T:MSBuild.Community.Tasks.ILMerge">
1998+ <summary>
1999+ A wrapper for the ILMerge tool.
2000+ </summary>
2001+ <remarks>
2002+ <para>
2003+ The ILMerge tool itself must be installed separately.
2004+ It is available <a href="http://research.microsoft.com/~mbarnett/ILMerge.aspx">here</a>.
2005+ </para>
2006+ <para>
2007+ The command line options "/wildcards" and "/lib" of ILMerge are not supported,
2008+ because MSBuild is in charge of expanding wildcards for item groups.
2009+ </para>
2010+ </remarks>
2011+ <example>
2012+ This example merges two assemblies A.dll and B.dll into one:
2013+ <code><![CDATA[
2014+ <PropertyGroup>
2015+ <outputFile>$(testDir)\ilmergetest.dll</outputFile>
2016+ <keyFile>$(testDir)\keypair.snk</keyFile>
2017+ <excludeFile>$(testDir)\ExcludeTypes.txt</excludeFile>
2018+ <logFile>$(testDir)\ilmergetest.log</logFile>
2019+ </PropertyGroup>
2020+
2021+ <ItemGroup>
2022+ <inputAssemblies Include="$(testDir)\A.dll" />
2023+ <inputAssemblies Include="$(testDir)\B.dll" />
2024+
2025+ <allowDuplicates Include="ClassAB" />
2026+ </ItemGroup>
2027+
2028+ <Target Name="merge" >
2029+ <ILMerge InputAssemblies="@(inputAssemblies)"
2030+ AllowDuplicateTypes="@(allowDuplicates)"
2031+ ExcludeFile="$(excludeFile)"
2032+ OutputFile="$(outputFile)" LogFile="$(logFile)"
2033+ DebugInfo="true" XmlDocumentation="true"
2034+ KeyFile="$(keyFile)" DelaySign="true" />
2035+ </Target>]]></code>
2036+ </example>
2037+ </member>
2038+ <member name="M:MSBuild.Community.Tasks.ILMerge.GenerateFullPathToTool">
2039+ <summary>
2040+ Gets the standard installation path of ILMerge.exe.
2041+ </summary>
2042+ <remarks>
2043+ If ILMerge is not installed at its standard installation path,
2044+ provide its location to <see cref="P:Microsoft.Build.Utilities.ToolTask.ToolPath"/>.
2045+ </remarks>
2046+ <returns>Returns [ProgramFiles]\Microsoft\ILMerge.exe.</returns>
2047+ </member>
2048+ <member name="M:MSBuild.Community.Tasks.ILMerge.GenerateCommandLineCommands">
2049+ <summary>
2050+ Returns a string value containing the command line arguments
2051+ to pass directly to the executable file.
2052+ </summary>
2053+ <returns>
2054+ Returns a string value containing the command line arguments
2055+ to pass directly to the executable file.
2056+ </returns>
2057+ </member>
2058+ <member name="P:MSBuild.Community.Tasks.ILMerge.AllowDuplicateTypes">
2059+ <summary>
2060+ Gets or sets the names of public types
2061+ to be renamed when they are duplicates.
2062+ </summary>
2063+ <remarks>
2064+ <para>Set to an empty item group to allow all public types to be renamed.</para>
2065+ <para>Don't provide this parameter if no duplicates of public types are allowed.</para>
2066+ <para>Corresponds to command line option "/allowDup".</para>
2067+ <para>The default value is <c>null</c>.</para>
2068+ </remarks>
2069+ </member>
2070+ <member name="P:MSBuild.Community.Tasks.ILMerge.AllowZeroPeKind">
2071+ <summary>
2072+ Gets or sets the flag to treat an assembly
2073+ with a zero PeKind flag
2074+ (this is the value of the field listed as .corflags in the Manifest)
2075+ as if it was ILonly.
2076+ </summary>
2077+ <remarks>
2078+ <para>Corresponds to command line option "/zeroPeKind".</para>
2079+ <para>The default value is <c>false</c>.</para>
2080+ </remarks>
2081+ </member>
2082+ <member name="P:MSBuild.Community.Tasks.ILMerge.AttributeFile">
2083+ <summary>
2084+ Gets or sets the attribute assembly
2085+ from whre to get all of the assembly-level attributes
2086+ such as Culture, Version, etc.
2087+ It will also be used to get the Win32 Resources from.
2088+ </summary>
2089+ <remarks>
2090+ <para>This property is mutually exclusive with <see cref="P:MSBuild.Community.Tasks.ILMerge.CopyAttributes"/>.</para>
2091+ <para>
2092+ When not specified, then the Win32 Resources from the primary assembly
2093+ are copied over into the target assembly.
2094+ </para>
2095+ <para>Corresponds to command line option "/attr".</para>
2096+ <para>The default value is <c>null</c>.</para>
2097+ </remarks>
2098+ </member>
2099+ <member name="P:MSBuild.Community.Tasks.ILMerge.Closed">
2100+ <summary>
2101+ Gets or sets the flag to indicate
2102+ whether to augment the list of input assemblies
2103+ to its "transitive closure".
2104+ </summary>
2105+ <remarks>
2106+ <para>
2107+ An assembly is considered part of the transitive closure if it is referenced,
2108+ either directly or indirectly,
2109+ from one of the originally specified input assemblies
2110+ and it has an external reference to one of the input assemblies,
2111+ or one of the assemblies that has such a reference.
2112+ </para>
2113+ <para>Corresponds to command line option "/closed".</para>
2114+ <para>The default value is <c>false</c>.</para>
2115+ </remarks>
2116+ </member>
2117+ <member name="P:MSBuild.Community.Tasks.ILMerge.CopyAttributes">
2118+ <summary>
2119+ Gets or sets the flag to indicate
2120+ whether to copy the assembly level attributes
2121+ of each input assembly over into the target assembly.
2122+ </summary>
2123+ <remarks>
2124+ <para>
2125+ Any duplicate attribute overwrites a previously copied attribute.
2126+ The input assemblies are processed in the order they are specified.
2127+ </para>
2128+ <para>This parameter is mutually exclusive with <see cref="P:MSBuild.Community.Tasks.ILMerge.AttributeFile"/>.</para>
2129+ <para>Corresponds to command line option "/copyattrs".</para>
2130+ <para>The default value is <c>false</c>.</para>
2131+ </remarks>
2132+ </member>
2133+ <member name="P:MSBuild.Community.Tasks.ILMerge.DebugInfo">
2134+ <summary>
2135+ Gets or sets the flag to indicate
2136+ whether to preserve any .pdb files
2137+ that are found for the input assemblies
2138+ into a .pdb file for the target assembly.
2139+ </summary>
2140+ <remarks>
2141+ <para>Corresponds to command line option "/ndebug".</para>
2142+ <para>The default value is <c>true</c>.</para>
2143+ </remarks>
2144+ </member>
2145+ <member name="P:MSBuild.Community.Tasks.ILMerge.DelaySign">
2146+ <summary>
2147+ Gets or sets the flag to indicate
2148+ whether the target assembly will be delay signed.
2149+ </summary>
2150+ <remarks>
2151+ <para>This property can be set only in conjunction with <see cref="P:MSBuild.Community.Tasks.ILMerge.KeyFile"/>.</para>
2152+ <para>Corresponds to command line option "/delaysign".</para>
2153+ <para>The default value is <c>false</c>.</para>
2154+ </remarks>
2155+ </member>
2156+ <member name="P:MSBuild.Community.Tasks.ILMerge.ExcludeFile">
2157+ <summary>
2158+ Gets or sets the file
2159+ that will be used to identify types
2160+ that are not to have their visibility modified.
2161+ </summary>
2162+ <remarks>
2163+ <para>
2164+ If an empty item group is provided,
2165+ then all types in any assembly other than the primary assembly are made non-public.
2166+ </para>
2167+ <para>Omit this parameter to prevent ILMerge from modifying the visibility of any types.</para>
2168+ <para>
2169+ The contents of the file should be one <see cref="T:System.Text.RegularExpressions.Regex"/> per line.
2170+ The regular expressions are matched against each type's full name,
2171+ e.g., <c>System.Collections.IList</c>.
2172+ If the match fails, it is tried again with the assembly name (surrounded by square brackets)
2173+ prepended to the type name.
2174+ Thus, the pattern <c>\[A\].*</c> excludes all types in assembly <c>A</c> from being made non-public.
2175+ The pattern <c>N.T</c> will match all types named <c>T</c> in the namespace named <c>N</c>
2176+ no matter what assembly they are defined in.
2177+ </para>
2178+ <para>Corresponds to command line option "/internalize".</para>
2179+ <para>The default value is <c>null</c>.</para>
2180+ </remarks>
2181+ </member>
2182+ <member name="P:MSBuild.Community.Tasks.ILMerge.InputAssemblies">
2183+ <summary>
2184+ Gets or sets the input assemblies to merge.
2185+ </summary>
2186+ </member>
2187+ <member name="P:MSBuild.Community.Tasks.ILMerge.KeyFile">
2188+ <summary>
2189+ Gets or sets the .snk file
2190+ to sign the target assembly.
2191+ </summary>
2192+ <remarks>
2193+ <para>Can be used with <see cref="P:MSBuild.Community.Tasks.ILMerge.DelaySign"/>.</para>
2194+ <para>Corresponds to command line option "/keyfile".</para>
2195+ <para>The default value is <c>null</c>.</para>
2196+ </remarks>
2197+ </member>
2198+ <member name="P:MSBuild.Community.Tasks.ILMerge.LogFile">
2199+ <summary>
2200+ Gets or sets a log file
2201+ to write log messages to.
2202+ </summary>
2203+ <remarks>
2204+ <para>
2205+ If an empty item group is provided,
2206+ then log messages are writte to <see cref="P:System.Console.Out"/>.
2207+ </para>
2208+ <para>Corresponds to command line option "/log".</para>
2209+ <para>The default value is <c>null</c>.</para>
2210+ </remarks>
2211+ </member>
2212+ <member name="P:MSBuild.Community.Tasks.ILMerge.OutputFile">
2213+ <summary>
2214+ Gets or sets the target assembly.
2215+ </summary>
2216+ <remarks>
2217+ <para>Corresponds to command line option "/out".</para>
2218+ </remarks>
2219+ </member>
2220+ <member name="P:MSBuild.Community.Tasks.ILMerge.PublicKeyTokens">
2221+ <summary>
2222+ Gets or sets the flag to indicate
2223+ whether external assembly references in the manifest
2224+ of the target assembly will use public keys (<c>false</c>)
2225+ or public key tokens (<c>true</c>).
2226+ </summary>
2227+ <remarks>
2228+ <para>Corresponds to command line option "/publickeytokens".</para>
2229+ <para>The default value is <c>false</c>.</para>
2230+ </remarks>
2231+ </member>
2232+ <member name="P:MSBuild.Community.Tasks.ILMerge.TargetPlatformVersion">
2233+ <summary>
2234+ Gets or sets the .NET framework version for the target assembly.
2235+ </summary>
2236+ <remarks>
2237+ <para>Valid values are "v1", "v1.1", "v2".</para>
2238+ <para>Corresponds to the first part of command line option "/targetplatform".</para>
2239+ <para>The default value is <c>null</c>.</para>
2240+ </remarks>
2241+ </member>
2242+ <member name="P:MSBuild.Community.Tasks.ILMerge.TargetPlatformDirectory">
2243+ <summary>
2244+ Gets or sets the directory in which <c>mscorlib.dll</c> is to be found.
2245+ </summary>
2246+ <remarks>
2247+ <para>Can only be used in conjunction with <see cref="P:MSBuild.Community.Tasks.ILMerge.TargetPlatformVersion"/>.</para>
2248+ <para>Corresponds to the second part of command line option "/targetplatform".</para>
2249+ <para>The default value is <c>null</c>.</para>
2250+ </remarks>
2251+ </member>
2252+ <member name="P:MSBuild.Community.Tasks.ILMerge.TargetKind">
2253+ <summary>
2254+ Gets or sets the indicator
2255+ whether the target assembly is created as a library (<c>Dll</c>),
2256+ a console application (<c>Exe</c>) or as a Windows application (<c>WinExe</c>).
2257+ </summary>
2258+ <remarks>
2259+ <para>Corresponds to command line option "/target".</para>
2260+ <para>The default value is the same kind as that of the primary assembly.</para>
2261+ </remarks>
2262+ </member>
2263+ <member name="P:MSBuild.Community.Tasks.ILMerge.Version">
2264+ <summary>
2265+ Gets or sets the version number of the target assembly.
2266+ </summary>
2267+ <remarks>
2268+ <para>The parameter should look like <c>6.2.1.3</c>.</para>
2269+ <para>Corresponds to command line option "/ver".</para>
2270+ <para>The default value is null.</para>
2271+ </remarks>
2272+ </member>
2273+ <member name="P:MSBuild.Community.Tasks.ILMerge.XmlDocumentation">
2274+ <summary>
2275+ Gets or sets the flag to indicate
2276+ whether to merge XML documentation files
2277+ into one for the target assembly.
2278+ </summary>
2279+ <remarks>
2280+ <para>Corresponds to command line option "/xmldocs".</para>
2281+ <para>The default value is <c>false</c>.</para>
2282+ </remarks>
2283+ </member>
2284+ <member name="P:MSBuild.Community.Tasks.ILMerge.ToolName">
2285+ <summary>
2286+ Gets the name of the executable file to run.
2287+ </summary>
2288+ </member>
2289+ <member name="T:MSBuild.Community.Tasks.Install.InstallAssembly">
2290+ <summary>
2291+ Installs assemblies.
2292+ </summary>
2293+ <remarks>
2294+ Uses InstallUtil.exe to execute the
2295+ <see href="http://msdn2.microsoft.com/system.configuration.install.installer.install.aspx">Install</see>
2296+ method of
2297+ <see href="http://msdn2.microsoft.com/system.configuration.install.installer.aspx">Installer</see>
2298+ classes contained within specified assemblies.
2299+ </remarks>
2300+ <example>
2301+ Install multiple assemblies by specifying the file names:
2302+ <code>
2303+ <![CDATA[
2304+<InstallAssembly AssemblyFiles="Engine.dll;Presenter.dll" />
2305+]]>
2306+ </code>
2307+ </example><example>
2308+ Install an assembly using the assembly name. Also disable the log file by setting it to a single space:
2309+ <code>
2310+ <![CDATA[
2311+<InstallAssembly AssemblyNames="Engine,Version=1.5.0.0,Culture=neutral" LogFile=" "/>
2312+]]>
2313+ </code>
2314+ </example><example>
2315+ You can easily chain an install to the result of a build:
2316+ <code>
2317+ <![CDATA[
2318+<MSBuild Projects="Project1.csproj;Project2.csproj">
2319+ <Output TaskParameter="TargetOutputs" ItemName="ProjectBinaries" />
2320+</MSBuild>
2321+<InstallAssembly AssemblyFiles="@(ProjectBinaries)" />
2322+]]>
2323+ </code>
2324+ </example>
2325+ </member>
2326+ <member name="M:MSBuild.Community.Tasks.Install.InstallAssembly.GenerateFullPathToTool">
2327+ <summary>
2328+ Returns the fully qualified path to the executable file.
2329+ </summary>
2330+ <returns>
2331+ The fully qualified path to the executable file.
2332+ </returns>
2333+ </member>
2334+ <member name="M:MSBuild.Community.Tasks.Install.InstallAssembly.GenerateCommandLineCommands">
2335+ <summary>
2336+ Returns a string value containing the command line arguments
2337+ to pass directly to the executable file.
2338+ </summary>
2339+ <returns>
2340+ A string value containing the command line arguments to pass
2341+ directly to the executable file.
2342+ </returns>
2343+ </member>
2344+ <member name="P:MSBuild.Community.Tasks.Install.InstallAssembly.AssemblyNames">
2345+ <summary>
2346+ The assemblies to process, identified by their assembly name.
2347+ </summary>
2348+ </member>
2349+ <member name="P:MSBuild.Community.Tasks.Install.InstallAssembly.AssemblyFiles">
2350+ <summary>
2351+ The assemblies to process, identified by their filename.
2352+ </summary>
2353+ </member>
2354+ <member name="P:MSBuild.Community.Tasks.Install.InstallAssembly.LogFile">
2355+ <summary>
2356+ The file to write installation progress to.
2357+ </summary>
2358+ <remarks>Set to a single space to disable logging to a file.
2359+ <para>
2360+ If not specified, the default is to log to [assemblyname].installLog
2361+ </para>
2362+ </remarks>
2363+ </member>
2364+ <member name="P:MSBuild.Community.Tasks.Install.InstallAssembly.ShowCallStack">
2365+ <summary>
2366+ If an exception occurs at any point during installation, the call
2367+ stack will be printed to the log.
2368+ </summary>
2369+ </member>
2370+ <member name="P:MSBuild.Community.Tasks.Install.InstallAssembly.IsUninstall">
2371+ <summary>
2372+ Determines whether assemblies are installed or uninstalled.
2373+ </summary>
2374+ </member>
2375+ <member name="P:MSBuild.Community.Tasks.Install.InstallAssembly.ToolName">
2376+ <summary>
2377+ Gets the name of the executable file to run.
2378+ </summary>
2379+ <value></value>
2380+ <returns>The name of the executable file to run.</returns>
2381+ </member>
2382+ <member name="T:MSBuild.Community.Tasks.Install.UninstallAssembly">
2383+ <summary>Uninstalls assemblies.</summary>
2384+ <remarks>
2385+ Uses InstallUtil.exe to execute the
2386+ <see href="http://msdn2.microsoft.com/system.configuration.install.installer.uninstall.aspx">Uninstall</see>
2387+ method of
2388+ <see href="http://msdn2.microsoft.com/system.configuration.install.installer.aspx">Installer</see>
2389+ classes contained within specified assemblies.
2390+ </remarks>
2391+ <example>Uninstall multiple assemblies by specifying the file names:
2392+ <code><![CDATA[
2393+ <UninstallAssembly AssemblyFiles="Engine.dll;Presenter.dll" />
2394+ ]]></code>
2395+ </example>
2396+ <example>Unnstall an assembly using the assembly name. Also disable the log file by setting it to a single space:
2397+ <code><![CDATA[
2398+ <UninstallAssembly AssemblyNames="Engine,Version=1.5.0.0,Culture=neutral" LogFile=" "/>
2399+ ]]></code>
2400+ </example>
2401+ </member>
2402+ <member name="P:MSBuild.Community.Tasks.Install.UninstallAssembly.IsUninstall">
2403+ <summary>
2404+ Determines whether assemblies are installed or uninstalled.
2405+ </summary>
2406+ </member>
2407+ <member name="T:MSBuild.Community.Tasks.Math.Modulo">
2408+ <summary>
2409+ Performs the modulo operation on numbers.
2410+ </summary>
2411+ <remarks>
2412+ The modulo operation finds the remainder of the division of one number by another.
2413+ <para>When the second number (modulus) is a fractional value, the result can be a fractional value.</para>
2414+ <para>
2415+ Equivalent to the % operator in C# or the Mod operator in Visual Basic.
2416+ </para>
2417+ </remarks><example>
2418+ Numbers evenly divide:
2419+ <code>
2420+ <![CDATA[
2421+<Math.Modulo Numbers="12;4">
2422+ <Output TaskParameter="Result" PropertyName="Result" />
2423+</Math.Modulo>
2424+<Message Text="12 modulo 4 = $(Result)"/>
2425+]]>
2426+ </code>
2427+ Above example will display:
2428+ <code>12 modulo 4 = 0</code>
2429+ </example><example>
2430+ Division on the numbers produces a remainder:
2431+ <code>
2432+ <![CDATA[
2433+<Math.Modulo Numbers="14;4">
2434+ <Output TaskParameter="Result" PropertyName="Result" />
2435+</Math.Modulo>
2436+<Message Text="14 modulo 4 = $(Result)"/>
2437+]]>
2438+ </code>
2439+ Above example will display:
2440+ <code>14 modulo 4 = 2</code>
2441+ </example><example>
2442+ Modulus is a fractional value:
2443+ <code>
2444+ <![CDATA[
2445+<Math.Modulo Numbers="12;3.5">
2446+ <Output TaskParameter="Result" PropertyName="Result" />
2447+</Math.Modulo>
2448+<Message Text="12 modulo 3.5 = $(Result)"/>
2449+]]>
2450+ </code>
2451+ Above example will display:
2452+ <code>12 modulo 3.5 = 1.5</code>
2453+ </example>
2454+ </member>
2455+ <member name="T:MSBuild.Community.Tasks.Math.MathBase">
2456+ <summary>
2457+ Math task base class
2458+ </summary>
2459+ </member>
2460+ <member name="M:MSBuild.Community.Tasks.Math.MathBase.Execute">
2461+ <summary>
2462+ When overridden in a derived class, executes the task.
2463+ </summary>
2464+ <returns>
2465+ true if the task successfully executed; otherwise, false.
2466+ </returns>
2467+ </member>
2468+ <member name="M:MSBuild.Community.Tasks.Math.MathBase.StringArrayToDecimalArray(System.String[])">
2469+ <summary>
2470+ Strings array to decimal array.
2471+ </summary>
2472+ <param name="numbers">The numbers.</param>
2473+ <returns></returns>
2474+ </member>
2475+ <member name="P:MSBuild.Community.Tasks.Math.MathBase.Numbers">
2476+ <summary>
2477+ Gets or sets the numbers to work with.
2478+ </summary>
2479+ <value>The numbers.</value>
2480+ </member>
2481+ <member name="P:MSBuild.Community.Tasks.Math.MathBase.Result">
2482+ <summary>
2483+ Gets or sets the result.
2484+ </summary>
2485+ <value>The result.</value>
2486+ </member>
2487+ <member name="P:MSBuild.Community.Tasks.Math.MathBase.NumericFormat">
2488+ <summary>
2489+ Gets or sets the numeric format.
2490+ </summary>
2491+ <value>The numeric format.</value>
2492+ </member>
2493+ <member name="M:MSBuild.Community.Tasks.Math.Modulo.Execute">
2494+ <summary>
2495+ When overridden in a derived class, executes the task.
2496+ </summary>
2497+ <returns>
2498+ true if the task successfully executed; otherwise, false.
2499+ </returns>
2500+ </member>
2501+ <member name="T:MSBuild.Community.Tasks.Prompt">
2502+ <summary>
2503+ Displays a message on the console and waits for user input.
2504+ </summary>
2505+ <remarks>It is important to note that the message is not written to the MSBuild logger,
2506+ it is always written to the console, no matter which logger is configured.
2507+ <para>This task requires user input from the console. Do not use this task for projects
2508+ that will be executed unattended. It is recommended that you always add a Condtion so that
2509+ this task is only enabled when a custom property is set through the command line.
2510+ This will ensure that the other users do not attempt to execute the task in unattended mode.
2511+ </para></remarks>
2512+ <example>Pause the build if the interactive property is set:
2513+ <code><![CDATA[
2514+ <!-- Pause when invoked with the interactive property: msbuild myproject.proj /property:interactive=true -->
2515+
2516+ <Prompt Text="You can now attach the debugger to the msbuild.exe process..." Condition="'$(Interactive)' == 'True'" />
2517+ ]]></code>
2518+ </example>
2519+ <example>Obtain user input during the build:
2520+ (Note: in most cases, it is recommended that users instead provide custom values to your build through the /property argument of msbuild.exe)
2521+ <code><![CDATA[
2522+ <Prompt Text="Tell me your name:" Condition="'$(Interactive)' == 'True'" >
2523+ <Output TaskParameter="UserInput" PropertyName="PersonName" />
2524+ </Prompt>
2525+ <Message Text="Hello $(PersonName)" />
2526+ ]]></code>
2527+ </example>
2528+ </member>
2529+ <member name="M:MSBuild.Community.Tasks.Prompt.Execute">
2530+ <summary>
2531+ When overridden in a derived class, executes the task.
2532+ </summary>
2533+ <returns>
2534+ true if the task successfully executed; otherwise, false.
2535+ </returns>
2536+ </member>
2537+ <member name="P:MSBuild.Community.Tasks.Prompt.Text">
2538+ <summary>
2539+ The message to display in the console.
2540+ </summary>
2541+ </member>
2542+ <member name="P:MSBuild.Community.Tasks.Prompt.UserInput">
2543+ <summary>
2544+ The text entered at the console.
2545+ </summary>
2546+ </member>
2547+ <member name="T:MSBuild.Community.Tasks.RegexBase">
2548+ <summary>
2549+ Base class for Regex tasks
2550+ Handles public properties for Input, Expression, Options and Output
2551+ </summary>
2552+ </member>
2553+ <member name="P:MSBuild.Community.Tasks.RegexBase.Expression">
2554+ <summary>
2555+ Regex expression
2556+ </summary>
2557+ </member>
2558+ <member name="P:MSBuild.Community.Tasks.RegexBase.Input">
2559+ <summary>
2560+ Input, list of items to perform the regex on
2561+ </summary>
2562+ </member>
2563+ <member name="P:MSBuild.Community.Tasks.RegexBase.Options">
2564+ <summary>
2565+ Regex options as strings corresponding to the RegexOptions enum:
2566+ Compiled
2567+ CultureInvariant
2568+ ECMAScript
2569+ ExplicitCapture
2570+ IgnoreCase
2571+ IgnorePatternWhitespace
2572+ Multiline
2573+ None
2574+ RightToLeft
2575+ Singleline
2576+ </summary>
2577+ <enum cref="T:System.Text.RegularExpressions.RegexOptions"/>
2578+ </member>
2579+ <member name="P:MSBuild.Community.Tasks.RegexBase.Output">
2580+ <summary>
2581+ Results of the Regex transformation.
2582+ </summary>
2583+ </member>
2584+ <member name="P:MSBuild.Community.Tasks.RegexBase.ExpressionOptions">
2585+ <summary>
2586+ Options converted to RegexOptions enum
2587+ </summary>
2588+ </member>
2589+ <member name="T:MSBuild.Community.Tasks.RegexMatch">
2590+ <summary>
2591+ Task to filter an Input list with a Regex expression.
2592+ Output list contains items from Input list that matched given expression
2593+ </summary>
2594+ <example>Matches from TestGroup those names ending in a, b or c
2595+ <code><![CDATA[
2596+ <ItemGroup>
2597+ <TestGroup Include="foo.my.foo.foo.test.o" />
2598+ <TestGroup Include="foo.my.faa.foo.test.a" />
2599+ <TestGroup Include="foo.my.fbb.foo.test.b" />
2600+ <TestGroup Include="foo.my.fcc.foo.test.c" />
2601+ <TestGroup Include="foo.my.fdd.foo.test.d" />
2602+ <TestGroup Include="foo.my.fee.foo.test.e" />
2603+ <TestGroup Include="foo.my.fff.foo.test.f" />
2604+ </ItemGroup>
2605+ <Target Name="Test">
2606+ <!-- Outputs only items that end with a, b or c -->
2607+ <RegexMatch Input="@(TestGroup)" Expression="[a-c]$">
2608+ <Output ItemName ="MatchReturn" TaskParameter="Output" />
2609+ </RegexMatch>
2610+ <Message Text="&#xA;Output Match:&#xA;@(MatchReturn, '&#xA;')" />
2611+ </Target>
2612+ ]]></code>
2613+ </example>
2614+ </member>
2615+ <member name="M:MSBuild.Community.Tasks.RegexMatch.Execute">
2616+ <summary>
2617+ Performs the Match task
2618+ </summary>
2619+ <returns><see langword="true"/> if the task ran successfully;
2620+ otherwise <see langword="false"/>.</returns>
2621+ </member>
2622+ <member name="T:MSBuild.Community.Tasks.RegexReplace">
2623+ <summary>
2624+ Task to replace portions of strings within the Input list
2625+ Output list contains all the elements of the Input list after
2626+ performing the Regex Replace.
2627+ </summary>
2628+ <example>
2629+ 1st example replaces first occurance of "foo." with empty string
2630+ 2nd example replaces occurance of "foo." after character 6 with "oop." string
2631+ <code><![CDATA[
2632+ <ItemGroup>
2633+ <TestGroup Include="foo.my.foo.foo.test.o" />
2634+ <TestGroup Include="foo.my.faa.foo.test.a" />
2635+ <TestGroup Include="foo.my.fbb.foo.test.b" />
2636+ <TestGroup Include="foo.my.fcc.foo.test.c" />
2637+ <TestGroup Include="foo.my.fdd.foo.test.d" />
2638+ <TestGroup Include="foo.my.fee.foo.test.e" />
2639+ <TestGroup Include="foo.my.fff.foo.test.f" />
2640+ </ItemGroup>
2641+ <Target Name="Test">
2642+ <Message Text="Input:&#xA;@(TestGroup, '&#xA;')"/>
2643+ <!-- Replaces first occurance of "foo." with empty string-->
2644+ <RegexReplace Input="@(TestGroup)" Expression="foo\." Replacement="" Count="1">
2645+ <Output ItemName ="ReplaceReturn1" TaskParameter="Output" />
2646+ </RegexReplace>
2647+ <Message Text="&#xA;Output Replace 1:&#xA;@(ReplaceReturn1, '&#xA;')" />
2648+ <!-- Replaces occurance of "foo." after character 6 with "oop." string-->
2649+ <RegexReplace Input="@(TestGroup)" Expression="foo\." Replacement="oop" Startat="6">
2650+ <Output ItemName ="ReplaceReturn2" TaskParameter="Output" />
2651+ </RegexReplace>
2652+ <Message Text="&#xA;Output Replace 2:&#xA;@(ReplaceReturn2, '&#xA;')" />
2653+ </Target>
2654+ ]]></code>
2655+ </example>
2656+ </member>
2657+ <member name="M:MSBuild.Community.Tasks.RegexReplace.Execute">
2658+ <summary>
2659+ Performs the Replace task
2660+ </summary>
2661+ <returns><see langword="true"/> if the task ran successfully;
2662+ otherwise <see langword="false"/>.</returns>
2663+ </member>
2664+ <member name="P:MSBuild.Community.Tasks.RegexReplace.Replacement">
2665+ <summary>
2666+ String replacing matching expression strings in input list.
2667+ If left empty matches in the input list are removed (replaced with empty string)
2668+ </summary>
2669+ </member>
2670+ <member name="P:MSBuild.Community.Tasks.RegexReplace.Count">
2671+ <summary>
2672+ Number of matches to allow on each input item.
2673+ -1 indicates to perform matches on all matches within input item
2674+ </summary>
2675+ </member>
2676+ <member name="P:MSBuild.Community.Tasks.RegexReplace.StartAt">
2677+ <summary>
2678+ Position within the input item to start matching
2679+ </summary>
2680+ </member>
2681+ <member name="T:MSBuild.Community.Tasks.Schema.TaskListAssemblyFormatType">
2682+ <summary>
2683+ Different ways to specify the assembly in a UsingTask element.
2684+ </summary>
2685+ </member>
2686+ <member name="F:MSBuild.Community.Tasks.Schema.TaskListAssemblyFormatType.AssemblyFileName">
2687+ <summary>
2688+ Assembly file name (Default): &lt;UsingTask AssemblyFile=&quot;foo.dll&quot; /&gt;
2689+ </summary>
2690+ </member>
2691+ <member name="F:MSBuild.Community.Tasks.Schema.TaskListAssemblyFormatType.AssemblyFileFullPath">
2692+ <summary>
2693+ Assembly location: &lt;UsingTask AssemblyName=&quot;foo&quot; /&gt;
2694+ </summary>
2695+ </member>
2696+ <member name="F:MSBuild.Community.Tasks.Schema.TaskListAssemblyFormatType.AssemblyName">
2697+ <summary>
2698+ Assembly Name: &lt;UsingTask AssemblyFile=&quot;bin\debug\foo.dll&quot; /&gt;
2699+ </summary>
2700+ </member>
2701+ <member name="F:MSBuild.Community.Tasks.Schema.TaskListAssemblyFormatType.AssemblyFullName">
2702+ <summary>
2703+ Assembly fully qualified name: &lt;UsingTask AssemblyName=&quot;foo.dll,version ....&quot; /&gt;
2704+ </summary>
2705+ </member>
2706+ <member name="T:MSBuild.Community.Tasks.Schema.TaskSchema">
2707+ <summary>
2708+ A Task that generates a XSD schema of the tasks in an assembly.
2709+ </summary>
2710+ <example>
2711+ <para>Creates schema for MSBuild Community Task project</para>
2712+ <code><![CDATA[
2713+ <TaskSchema Assemblies="Build\MSBuild.Community.Tasks.dll"
2714+ OutputPath="Build"
2715+ CreateTaskList="true"
2716+ IgnoreMsBuildSchema="true"
2717+ Includes="Microsoft.Build.Commontypes.xsd"/>
2718+ ]]></code>
2719+ </example>
2720+ </member>
2721+ <member name="M:MSBuild.Community.Tasks.Schema.TaskSchema.Execute">
2722+ <summary>
2723+ When overridden in a derived class, executes the task.
2724+ </summary>
2725+ <returns>
2726+ true if the task successfully executed; otherwise, false.
2727+ </returns>
2728+ </member>
2729+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.Assemblies">
2730+ <summary>
2731+ Gets or sets the list of <see cref="T:System.Reflection.Assembly"/> path to analyse.
2732+ </summary>
2733+ </member>
2734+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.OutputPath">
2735+ <summary>
2736+ Gets or sets the output path for the generated files.
2737+ </summary>
2738+ </member>
2739+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.Schemas">
2740+ <summary>
2741+ Gets the list of path to the generated XSD schema.
2742+ </summary>
2743+ </member>
2744+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.CreateTaskList">
2745+ <summary>
2746+ Gets or sets a value indicating if the task list (using UsingTask)
2747+ has to be genereted.
2748+ </summary>
2749+ </member>
2750+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.TaskListAssemblyFormat">
2751+ <summary>
2752+ Gets or sets a value indicating how the assembly is specified in the
2753+ UsingTask element.
2754+ </summary>
2755+ <enum cref="T:MSBuild.Community.Tasks.Schema.TaskListAssemblyFormatType"/>
2756+ </member>
2757+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.IgnoreDocumentation">
2758+ <summary>
2759+ Gets or sets a value indicating wheter documentation should be ignored
2760+ even if available (Default is false).
2761+ </summary>
2762+ </member>
2763+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.TaskLists">
2764+ <summary>
2765+ Gets the path to the task list if it was generated.
2766+ </summary>
2767+ </member>
2768+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.IgnoreMsBuildSchema">
2769+ <summary>
2770+ Gets or sets a value indicating if the
2771+ MsBuild schema inclusing should be ignored
2772+ </summary>
2773+ </member>
2774+ <member name="P:MSBuild.Community.Tasks.Schema.TaskSchema.Includes">
2775+ <summary>
2776+ Gets or sets a list of included schemas
2777+ </summary>
2778+ </member>
2779+ <member name="T:MSBuild.Community.Tasks.GetSolutionProjects">
2780+ <summary>
2781+ Task to get paths to projects and project names from VS2005 solution file
2782+ </summary>
2783+ <example>
2784+ Returns project name and relative path from test solution
2785+ <code><![CDATA[
2786+ <Target Name="Test">
2787+ <GetSolutionProjects Solution="TestSolution.sln">
2788+ <Output ItemName="ProjectFiles" TaskParameter="Output"/>
2789+ </GetSolutionProjects>
2790+
2791+ <Message Text="Solution Project paths:" />
2792+ <Message Text="%(ProjectFiles.ProjectName) : @(ProjectFiles)" />
2793+ </Target>
2794+ ]]></code>
2795+ </example>
2796+ </member>
2797+ <member name="M:MSBuild.Community.Tasks.GetSolutionProjects.Execute">
2798+ <summary>
2799+ Perform task
2800+ </summary>
2801+ <returns>true on success</returns>
2802+ </member>
2803+ <member name="P:MSBuild.Community.Tasks.GetSolutionProjects.Output">
2804+ <summary>
2805+ Output list contains TaskItems of project filenames contained within the given solution.
2806+ Metadata tag "ProjectName" contains name of project.
2807+ </summary>
2808+ </member>
2809+ <member name="P:MSBuild.Community.Tasks.GetSolutionProjects.Solution">
2810+ <summary>
2811+ Name of Solution to get Projects from
2812+ </summary>
2813+ </member>
2814+ <member name="T:MSBuild.Community.Tasks.SqlServer.ExecuteDDL">
2815+ <summary>
2816+ MSBuild task to execute DDL and SQL statements.
2817+ </summary>
2818+ <remarks>Requires the the SQL Server libraries and dynamically loads the
2819+ required Microsoft.SqlServer.ConnectionInfo assembly.</remarks>
2820+ <example>
2821+ <code><![CDATA[
2822+ <PropertyGroup>
2823+ <ConnectionString>Server=localhost;Integrated Security=True</ConnectionString>
2824+ </PropertyGroup>
2825+
2826+ <Target Name="ExecuteDDL">
2827+ <ExecuteDDL ConnectionString="$(ConnectionString)" Files="SqlBatchScript.sql" ContinueOnError="false" />
2828+ </Target>
2829+ ]]></code>
2830+ </example>
2831+ </member>
2832+ <member name="M:MSBuild.Community.Tasks.SqlServer.ExecuteDDL.Execute">
2833+ <summary>
2834+ Executes the task.
2835+ </summary>
2836+ <returns>
2837+ true if the task successfully executed; otherwise, false.
2838+ </returns>
2839+ </member>
2840+ <member name="P:MSBuild.Community.Tasks.SqlServer.ExecuteDDL.ConnectionString">
2841+ <summary>
2842+ The connection string
2843+ </summary>
2844+ </member>
2845+ <member name="P:MSBuild.Community.Tasks.SqlServer.ExecuteDDL.Files">
2846+ <summary>
2847+ Gets or sets the DDL/SQL files.
2848+ </summary>
2849+ <value>The assemblies.</value>
2850+ </member>
2851+ <member name="P:MSBuild.Community.Tasks.SqlServer.ExecuteDDL.Results">
2852+ <summary>
2853+ Output the return count/values
2854+ </summary>
2855+ </member>
2856+ <member name="P:MSBuild.Community.Tasks.SqlServer.ExecuteDDL.BatchSeparator">
2857+ <summary>
2858+ Gets or sets the batch delimter string.
2859+ </summary>
2860+ <remarks>Default is "GO" for T-SQL.</remarks>
2861+ </member>
2862+ <member name="T:MSBuild.Community.Tasks.Subversion.NodeKind">
2863+ <summary>
2864+ The kind of Subversion node. The names match the text output
2865+ by "svn info".
2866+ </summary>
2867+ </member>
2868+ <member name="F:MSBuild.Community.Tasks.Subversion.NodeKind.file">
2869+ <summary>
2870+ Node is a file
2871+ </summary>
2872+ </member>
2873+ <member name="F:MSBuild.Community.Tasks.Subversion.NodeKind.dir">
2874+ <summary>
2875+ Node is a directory
2876+ </summary>
2877+ </member>
2878+ <member name="F:MSBuild.Community.Tasks.Subversion.NodeKind.unknown">
2879+ <summary>
2880+ Unknown node type
2881+ </summary>
2882+ </member>
2883+ <member name="T:MSBuild.Community.Tasks.Subversion.Schedule">
2884+ <summary>
2885+ The Subversion schedule type.
2886+ </summary>
2887+ </member>
2888+ <member name="F:MSBuild.Community.Tasks.Subversion.Schedule.normal">
2889+ <summary>
2890+ Normal schedule
2891+ </summary>
2892+ </member>
2893+ <member name="F:MSBuild.Community.Tasks.Subversion.Schedule.unknown">
2894+ <summary>
2895+ Unknown schedule.
2896+ </summary>
2897+ </member>
2898+ <member name="T:MSBuild.Community.Tasks.Subversion.SvnInfo">
2899+ <summary>
2900+ Run the "svn info" command and parse the output
2901+ </summary>
2902+ <example>
2903+ This example will determine the Subversion repository root for
2904+ a working directory and print it out.
2905+ <code><![CDATA[
2906+ <Target Name="printinfo">
2907+ <SvnInfo LocalPath="c:\code\myapp">
2908+ <Output TaskParameter="RepositoryRoot" PropertyName="root" />
2909+ </SvnInfo>
2910+ <Message Text="root: $(root)" />
2911+ </Target>
2912+ ]]></code>
2913+ </example>
2914+ <remarks>You can retrieve Subversion information for a <see cref="P:MSBuild.Community.Tasks.Subversion.SvnClient.LocalPath"/> or <see cref="P:MSBuild.Community.Tasks.Subversion.SvnClient.RepositoryPath"/>.
2915+ If you do not provide a value for <see cref="P:MSBuild.Community.Tasks.Subversion.SvnClient.LocalPath"/> or <see cref="P:MSBuild.Community.Tasks.Subversion.SvnClient.RepositoryPath"/>, the current directory is assumed.</remarks>
2916+ </member>
2917+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnInfo.#ctor">
2918+ <summary>
2919+ Initializes a new instance of the <see cref="T:SvnInfo"/> class.
2920+ </summary>
2921+ </member>
2922+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnInfo.ResetMemberVariables">
2923+ <summary>
2924+ Reset all instance variables to their default (unset) state.
2925+ </summary>
2926+ </member>
2927+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnInfo.Execute">
2928+ <summary>
2929+ Execute the task.
2930+ </summary>
2931+ <returns>true if execution is successful, false if not.</returns>
2932+ </member>
2933+ <member name="M:MSBuild.Community.Tasks.Subversion.SvnInfo.LogEventsFromTextOutput(System.String,Microsoft.Build.Framework.MessageImportance)">
2934+ <summary>
2935+ Logs the events from text output.
2936+ </summary>
2937+ <param name="singleLine">The single line.</param>
2938+ <param name="messageImportance">The message importance.</param>
2939+ </member>
2940+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.RepositoryRoot">
2941+ <summary>
2942+ Return the repository root or null if not set by Subversion.
2943+ </summary>
2944+ </member>
2945+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.RepositoryUuid">
2946+ <summary>
2947+ Return the repository UUID value from Subversion.
2948+ </summary>
2949+ </member>
2950+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.NodeKind">
2951+ <summary>
2952+ The Subversion node kind.
2953+ </summary>
2954+ <enum cref="T:MSBuild.Community.Tasks.Subversion.NodeKind"/>
2955+ </member>
2956+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.LastChangedAuthor">
2957+ <summary>
2958+ The author who last changed this node.
2959+ </summary>
2960+ </member>
2961+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.LastChangedRevision">
2962+ <summary>
2963+ The last changed revision number.
2964+ </summary>
2965+ </member>
2966+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.LastChangedDate">
2967+ <summary>
2968+ The date this node was last changed.
2969+ </summary>
2970+ </member>
2971+ <member name="P:MSBuild.Community.Tasks.Subversion.SvnInfo.Schedule">
2972+ <summary>
2973+ The Subversion schedule type.
2974+ </summary>
2975+ <enum cref="T:MSBuild.Community.Tasks.Subversion.Schedule"/>
2976+ </member>
2977+ <member name="T:MSBuild.Community.Tasks.TemplateFile">
2978+ <summary>
2979+ MSBuild task that replaces tokens in a template file and writes out a new file.
2980+ </summary>
2981+ <example>
2982+ <code><![CDATA[
2983+ <ItemGroup>
2984+ <Tokens Include="Name">
2985+ <ReplacementValue>MSBuild Community Tasks</ReplacementValue>
2986+ </Tokens>
2987+ </ItemGroup>
2988+
2989+ <TemplateFile TemplateFile="ATemplateFile.template" OutputFile="ReplacedFile.txt" Tokens="@(Tokens)" />
2990+ ]]></code>
2991+ </example>
2992+ <remarks>Tokens in the template file are formatted using ${var} syntax and names are not
2993+ case-sensitive, so ${Token} and ${TOKEN} are equivalent.</remarks>
2994+ </member>
2995+ <member name="F:MSBuild.Community.Tasks.TemplateFile.MetadataValueTag">
2996+ <summary>
2997+ Meta data tag used for token replacement
2998+ </summary>
2999+ </member>
3000+ <member name="M:MSBuild.Community.Tasks.TemplateFile.#ctor">
3001+ <summary>
3002+ Default constructor. Creates a new TemplateFile task.
3003+ </summary>
3004+ </member>
3005+ <member name="M:MSBuild.Community.Tasks.TemplateFile.Execute">
3006+ <summary>
3007+ Executes the task.
3008+ </summary>
3009+ <returns>Success or failure of the task.</returns>
3010+ </member>
3011+ <member name="P:MSBuild.Community.Tasks.TemplateFile.OutputFile">
3012+ <summary>
3013+ The token replaced template file.
3014+ </summary>
3015+ </member>
3016+ <member name="P:MSBuild.Community.Tasks.TemplateFile.OutputFilename">
3017+ <summary>
3018+ The full path to the output file name. If no filename is specified (the default) the
3019+ output file will be the Template filename with a .out extension.
3020+ </summary>
3021+ </member>
3022+ <member name="P:MSBuild.Community.Tasks.TemplateFile.Template">
3023+ <summary>
3024+ The template file used. Tokens with values of ${Name} are replaced by name.
3025+ </summary>
3026+ </member>
3027+ <member name="P:MSBuild.Community.Tasks.TemplateFile.Tokens">
3028+ <summary>
3029+ List of tokens to replace in the template. Token name is taken from the TaskItem.ItemSpec and the
3030+ replacement value comes from the ReplacementValue metadata of the item.
3031+ </summary>
3032+ </member>
3033+ <member name="T:MSBuild.Community.Tasks.Time">
3034+ <summary>
3035+ Gets the current date and time.
3036+ </summary>
3037+ <remarks>
3038+ See
3039+ <a href="ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.NETDEVFX.v20.en/cpref8/html/T_System_Globalization_DateTimeFormatInfo.htm">
3040+ DateTimeFormatInfo</a>
3041+ for the syntax of the format string.
3042+ </remarks>
3043+ <example>Using the Time task to get the Month, Day,
3044+ Year, Hour, Minute, and Second:
3045+ <code><![CDATA[
3046+ <Time>
3047+ <Output TaskParameter="Month" PropertyName="Month" />
3048+ <Output TaskParameter="Day" PropertyName="Day" />
3049+ <Output TaskParameter="Year" PropertyName="Year" />
3050+ <Output TaskParameter="Hour" PropertyName="Hour" />
3051+ <Output TaskParameter="Minute" PropertyName="Minute" />
3052+ <Output TaskParameter="Second" PropertyName="Second" />
3053+ </Time>
3054+ <Message Text="Current Date and Time: $(Month)/$(Day)/$(Year) $(Hour):$(Minute):$(Second)" />]]></code>
3055+ Set property "BuildDate" to the current date and time:
3056+ <code><![CDATA[
3057+ <Time Format="yyyyMMddHHmmss">
3058+ <Output TaskParameter="FormattedTime" PropertyName="buildDate" />
3059+ </Time>]]></code>
3060+ </example>
3061+ </member>
3062+ <member name="M:MSBuild.Community.Tasks.Time.Execute">
3063+ <summary>
3064+ When overridden in a derived class, executes the task.
3065+ </summary>
3066+ <returns>
3067+ True if the task successfully executed; otherwise, false.
3068+ </returns>
3069+ </member>
3070+ <member name="P:MSBuild.Community.Tasks.Time.Format">
3071+ <summary>
3072+ Gets or sets the format string
3073+ for output parameter <see cref="P:MSBuild.Community.Tasks.Time.FormattedTime"/>.
3074+ </summary>
3075+ <remarks>
3076+ See
3077+ <a href="ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.NETDEVFX.v20.en/cpref8/html/T_System_Globalization_DateTimeFormatInfo.htm">
3078+ DateTimeFormatInfo</a>
3079+ for the syntax of the format string.
3080+ </remarks>
3081+ </member>
3082+ <member name="P:MSBuild.Community.Tasks.Time.Month">
3083+ <summary>
3084+ Gets the month component of the date represented by this instance.
3085+ </summary>
3086+ </member>
3087+ <member name="P:MSBuild.Community.Tasks.Time.Day">
3088+ <summary>
3089+ Gets the day of the month represented by this instance.
3090+ </summary>
3091+ </member>
3092+ <member name="P:MSBuild.Community.Tasks.Time.Year">
3093+ <summary>
3094+ Gets the year component of the date represented by this instance.
3095+ </summary>
3096+ </member>
3097+ <member name="P:MSBuild.Community.Tasks.Time.Hour">
3098+ <summary>
3099+ Gets the hour component of the date represented by this instance.
3100+ </summary>
3101+ </member>
3102+ <member name="P:MSBuild.Community.Tasks.Time.Minute">
3103+ <summary>
3104+ Gets the minute component of the date represented by this instance.
3105+ </summary>
3106+ </member>
3107+ <member name="P:MSBuild.Community.Tasks.Time.Second">
3108+ <summary>
3109+ Gets the seconds component of the date represented by this instance.
3110+ </summary>
3111+ </member>
3112+ <member name="P:MSBuild.Community.Tasks.Time.Millisecond">
3113+ <summary>
3114+ Gets the milliseconds component of the date represented by this instance.
3115+ </summary>
3116+ </member>
3117+ <member name="P:MSBuild.Community.Tasks.Time.Ticks">
3118+ <summary>
3119+ Gets the number of ticks that represent the date and time of this instance.
3120+ </summary>
3121+ </member>
3122+ <member name="P:MSBuild.Community.Tasks.Time.Kind">
3123+ <summary>
3124+ Gets or sets a value that indicates whether the time represented by this instance is based
3125+ on local time, Coordinated Universal Time (UTC), or neither.
3126+ </summary>
3127+ <remarks>
3128+ Possible values are:
3129+ <list type="ul">
3130+ <item>Local (default)</item>,
3131+ <item>Utc</item>,
3132+ <item>Unspecified</item>
3133+ </list>
3134+ </remarks>
3135+ <enum cref="T:System.DateTimeKind"/>
3136+ </member>
3137+ <member name="P:MSBuild.Community.Tasks.Time.TimeOfDay">
3138+ <summary>
3139+ Gets the time of day for this instance.
3140+ </summary>
3141+ </member>
3142+ <member name="P:MSBuild.Community.Tasks.Time.DayOfYear">
3143+ <summary>
3144+ Gets the day of the year represented by this instance.
3145+ </summary>
3146+ </member>
3147+ <member name="P:MSBuild.Community.Tasks.Time.DayOfWeek">
3148+ <summary>
3149+ Gets the day of the week represented by this instance.
3150+ </summary>
3151+ </member>
3152+ <member name="P:MSBuild.Community.Tasks.Time.FormattedTime">
3153+ <summary>
3154+ Gets the value of this instance to its equivalent string representation.
3155+ If input parameter <see cref="P:MSBuild.Community.Tasks.Time.Format"/> is provided,
3156+ the value is formatted according to it.
3157+ </summary>
3158+ </member>
3159+ <member name="P:MSBuild.Community.Tasks.Time.ShortDate">
3160+ <summary>
3161+ Gets the value of this instance to its equivalent short date string representation.
3162+ </summary>
3163+ </member>
3164+ <member name="P:MSBuild.Community.Tasks.Time.LongDate">
3165+ <summary>
3166+ Gets the value of this instance to its equivalent long date string representation.
3167+ </summary>
3168+ </member>
3169+ <member name="P:MSBuild.Community.Tasks.Time.ShortTime">
3170+ <summary>
3171+ Gets the value of this instance to its equivalent short time string representation.
3172+ </summary>
3173+ </member>
3174+ <member name="P:MSBuild.Community.Tasks.Time.LongTime">
3175+ <summary>
3176+ Gets the value of this instance to its equivalent long time string representation.
3177+ </summary>
3178+ </member>
3179+ <member name="P:MSBuild.Community.Tasks.Time.DateTimeValue">
3180+ <summary>
3181+ Gets the internal time value.
3182+ </summary>
3183+ </member>
3184+ <member name="T:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem">
3185+ <summary>
3186+ Represents a single XmlNode selected using an XML task.
3187+ </summary>
3188+ </member>
3189+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.#ctor(System.Xml.XPath.XPathNavigator,System.String)">
3190+ <summary>
3191+ Initializes a new instance of an XmlNodeTaskItem
3192+ </summary>
3193+ <param name="xpathNavigator">The selected XmlNode</param>
3194+ <param name="reservedMetaDataPrefix">The prefix to attach to the reserved metadata properties.</param>
3195+ </member>
3196+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.ToString">
3197+ <summary>
3198+ Returns a string representation of the XmlNodeTaskItem.
3199+ </summary>
3200+ <returns></returns>
3201+ </member>
3202+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.op_Explicit(MSBuild.Community.Tasks.Xml.XmlNodeTaskItem)~System.String">
3203+ <summary>
3204+ Returns the ItemSpec when the XmlNodeTaskItem is explicitly cast as a <see cref="T:System.String"/>
3205+ </summary>
3206+ <param name="taskItemToCast">The XmlNodeTaskItem</param>
3207+ <returns></returns>
3208+ </member>
3209+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.CloneCustomMetadata">
3210+ <summary>
3211+
3212+ </summary>
3213+ <returns></returns>
3214+ </member>
3215+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.CopyMetadataTo(Microsoft.Build.Framework.ITaskItem)">
3216+ <summary>
3217+
3218+ </summary>
3219+ <param name="destinationItem"></param>
3220+ </member>
3221+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.GetMetadata(System.String)">
3222+ <summary>
3223+
3224+ </summary>
3225+ <param name="metadataName"></param>
3226+ <returns></returns>
3227+ </member>
3228+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.RemoveMetadata(System.String)">
3229+ <summary>
3230+
3231+ </summary>
3232+ <param name="metadataName"></param>
3233+ </member>
3234+ <member name="M:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.SetMetadata(System.String,System.String)">
3235+ <summary>
3236+
3237+ </summary>
3238+ <param name="metadataName"></param>
3239+ <param name="metadataValue"></param>
3240+ </member>
3241+ <member name="P:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.ItemSpec">
3242+ <summary>
3243+
3244+ </summary>
3245+ </member>
3246+ <member name="P:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.MetadataCount">
3247+ <summary>
3248+
3249+ </summary>
3250+ </member>
3251+ <member name="P:MSBuild.Community.Tasks.Xml.XmlNodeTaskItem.MetadataNames">
3252+ <summary>
3253+
3254+ </summary>
3255+ </member>
3256+ <member name="T:MSBuild.Community.Tasks.Xml.XmlQuery">
3257+ <summary>
3258+ Reads a value or values from lines of XML
3259+ </summary>
3260+ <remarks>
3261+ Use the Lines property (possibly populated from the the ReadLinesFromFile task) if you want to perform multiple
3262+ queries against some XML in memory. Use the XmlFileName property to query a large XML file.
3263+ <para>
3264+ An XPath expression can return multiple nodes in the <see cref="P:MSBuild.Community.Tasks.Xml.XmlQuery.Values"/> collection.
3265+ The number of nodes returned is availabe in the <see cref="P:MSBuild.Community.Tasks.Xml.XmlQuery.ValuesCount"/> output TaskParameter.
3266+ </para>
3267+ <para>
3268+ When the XPath expression resolves to an element node, all of the
3269+ attributes of the element are added as metadata to the returned <see cref="T:Microsoft.Build.Framework.ITaskItem"/>.
3270+ In addition, some reserved metadata properties are available on all element nodes.
3271+ They are all prefixed with the <see cref="P:MSBuild.Community.Tasks.Xml.XmlQuery.ReservedMetaDataPrefix"/>,
3272+ which is a single underscore (_) by default.
3273+ <list type="table">
3274+ <listheader>
3275+ <term>Reserved Property</term>
3276+ </listheader>
3277+ <item>
3278+ <term>_value</term>
3279+ <description>The value of the node (non-xml text between the opening and closing tags).</description>
3280+ </item>
3281+ <item>
3282+ <term>_innerXml</term>
3283+ <description>The markup representing the children of this node.</description>
3284+ </item>
3285+ <item>
3286+ <term>_outerXml</term>
3287+ <description>The markup representing this node and all its child nodes.</description>
3288+ </item>
3289+ </list>
3290+ </para>
3291+ </remarks><example>
3292+ Read an attribute value by selecting it with an XPath expression:
3293+ <code>
3294+ <![CDATA[
3295+<ReadLinesFromFile File="web.config">
3296+ <Output TaskParameter="Lines" ItemName="FileContents" />
3297+</ReadLinesFromFile>
3298+
3299+<XmlQuery Lines="@(FileContents)"
3300+ XPath = "/configuration/system.web/compilation/@defaultLanguage">
3301+ <Output TaskParameter="Values" PropertyName="CompilationLanguage" />
3302+</XmlQuery>
3303+
3304+<Message Text="The default language is $(CompilationLanguage)." />
3305+]]>
3306+ </code>
3307+ </example><example>
3308+ Read attribute values (from an XML file) using item metadata on a selected element node:
3309+ <code>
3310+ <![CDATA[
3311+<XmlQuery XmlFileName="$(MSBuildProjectDirectory)\web.config"
3312+ XPath = "/configuration/system.web/compilation">
3313+ <Output TaskParameter="Values" ItemName="CompilationElement" />
3314+</XmlQuery>
3315+
3316+<Message Text="The default language is: $(CompilationElement.defaultLanguage)." />
3317+<Message Text="Debug is enabled: $(CompilationElement.debug)." />
3318+]]>
3319+ </code>
3320+ </example><example>
3321+ Read an element value (requires use of the reserved metadata property "_value"):
3322+ <code>
3323+ <![CDATA[
3324+<ReadLinesFromFile File="web.config">
3325+ <Output TaskParameter="Lines" ItemName="FileContents" />
3326+</ReadLinesFromFile>
3327+
3328+<XmlQuery Lines="@(FileContents)"
3329+ XPath = "/configuration/singleValue/LastName">
3330+ <Output TaskParameter="Values" PropertyName="LastNameElement" />
3331+</XmlQuery>
3332+
3333+<Message Text="The last name is %(LastNameElement._value)" />
3334+]]>
3335+ </code>
3336+ </example>
3337+ </member>
3338+ <member name="M:MSBuild.Community.Tasks.Xml.XmlQuery.Execute">
3339+ <summary>
3340+ When overridden in a derived class, executes the task.
3341+ </summary>
3342+ <returns>
3343+ True if the task successfully executed; otherwise, false.
3344+ </returns>
3345+ </member>
3346+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.Lines">
3347+ <summary>
3348+ The lines of a valid XML document
3349+ </summary>
3350+ </member>
3351+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.XmlFileName">
3352+ <summary>
3353+ Gets or sets the name of an XML file to query
3354+ </summary>
3355+ <value>The full path of the XML file.</value>
3356+ </member>
3357+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.NamespaceDefinitions">
3358+ <summary>
3359+ A collection of prefix=namespace definitions used to query the XML document
3360+ </summary>
3361+ <example>
3362+ Defining multiple namespaces:
3363+ <code>
3364+ <![CDATA[
3365+<XmlMassUpdate ContentFile="web.config"
3366+ SubstitutionsRoot="/configuration/substitutions"
3367+ NamespaceDefinitions = "soap=http://www.w3.org/2001/12/soap-envelope;x=http://www.w3.org/1999/XSL/Transform">
3368+/>]]>
3369+ </code>
3370+ </example>
3371+ </member>
3372+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.XPath">
3373+ <summary>
3374+ The query used to identify the values in the XML document
3375+ </summary>
3376+ </member>
3377+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.Values">
3378+ <summary>
3379+ The values selected by <see cref="P:MSBuild.Community.Tasks.Xml.XmlQuery.XPath"/>
3380+ </summary>
3381+ </member>
3382+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.ValuesCount">
3383+ <summary>
3384+ The number of values returned in <see cref="P:MSBuild.Community.Tasks.Xml.XmlQuery.Values"/>
3385+ </summary>
3386+ </member>
3387+ <member name="P:MSBuild.Community.Tasks.Xml.XmlQuery.ReservedMetaDataPrefix">
3388+ <summary>
3389+ The string that is prepended to all reserved metadata properties.
3390+ </summary>
3391+ <remarks>The default value is a single underscore: '_'
3392+ <para>All attributes of an element node are added as metadata to the returned ITaskItem,
3393+ so this property can be used to avoid clashes with the reserved properties.
3394+ For example, if you selected the following node:
3395+ <code><![CDATA[ <SomeNode _name="x" _value="y" /> ]]></code>
3396+ the <c>_value</c> attribute would clash with the <c>value</c> reserved property, when using
3397+ the default prefix. If you set the ReservedMetaDataPrefix to another value (two underscores '__')
3398+ there would be no clash. You would be able to select the attribute using <c>%(item._value)</c>
3399+ and the value of the node using <c>%(item.__value)</c>.</para></remarks>
3400+ </member>
3401+ <member name="T:MSBuild.Community.Tasks.Xml.XmlTaskHelper">
3402+ <summary>
3403+ Provides methods used by all of the XML tasks
3404+ </summary>
3405+ </member>
3406+ <member name="M:MSBuild.Community.Tasks.Xml.XmlTaskHelper.JoinItems(Microsoft.Build.Framework.ITaskItem[])">
3407+ <summary>
3408+ Concatenates the string value of a list of ITaskItems into a single string
3409+ </summary>
3410+ <param name="items">The items to concatenate</param>
3411+ <returns>A single string containing the values from all of the items</returns>
3412+ </member>
3413+ <member name="M:MSBuild.Community.Tasks.Xml.XmlTaskHelper.LoadNamespaceDefinitionItems(System.Xml.XmlNamespaceManager,Microsoft.Build.Framework.ITaskItem[])">
3414+ <summary>
3415+ Uses the prefix=namespace definitions in <paramref name="definitions"/> to populate <paramref name="namespaceManager"/>
3416+ </summary>
3417+ <param name="namespaceManager">The <see cref="T:System.Xml.XmlNamespaceManager"/> to populate.</param>
3418+ <param name="definitions">The prefix=namespace definitions.</param>
3419+ </member>
3420+ <member name="T:MSBuild.Community.Tasks.Xslt">
3421+ <summary>
3422+ A task to merge and transform a set of xml files.
3423+ </summary>
3424+ <remarks>
3425+ <p>
3426+ The xml files of parameter <see cref="P:MSBuild.Community.Tasks.Xslt.Inputs"/>
3427+ are merged into one xml document,
3428+ wrapped with a root tag <see cref="P:MSBuild.Community.Tasks.Xslt.RootTag"/>
3429+ </p>
3430+ <p>
3431+ If only one input file is provided,
3432+ merging and wrapping can be omitted
3433+ by setting <see cref="P:MSBuild.Community.Tasks.Xslt.RootTag"/> to an empty string.
3434+ </p>
3435+ <p>
3436+ The root tag can be given any number of attributes
3437+ by providing a list of semicolon-delimited name/value pairs
3438+ to parameter <see cref="P:MSBuild.Community.Tasks.Xslt.RootAttributes"/>.
3439+ For example: <code>RootAttributes="foo=bar;date=$(buildDate)"</code>
3440+ </p>
3441+ <p>
3442+ Parameter <see cref="P:MSBuild.Community.Tasks.Xslt.RootAttributes"/> defaults to
3443+ one attribute with a name specified by <see cref="F:MSBuild.Community.Tasks.Xslt.CREATED_ATTRIBUTE"/>,
3444+ and a local time stamp as value.
3445+ To suppress the default value, an empty parameter
3446+ <code>RootAttributes=""</code>
3447+ must be specified explicitely.
3448+ </p>
3449+ <p>
3450+ The xsl transformation file
3451+ specified by parameter <see cref="P:MSBuild.Community.Tasks.Xslt.Xsl"/>
3452+ is applied on the input.
3453+ </p>
3454+ <p>
3455+ The <see cref="T:Microsoft.Build.Framework.ITaskItem"/> <see cref="P:MSBuild.Community.Tasks.Xslt.Xsl"/>
3456+ can be given any number of metadata,
3457+ which will be handed to the xsl transformation
3458+ as parameters.
3459+ </p>
3460+ <p>
3461+ The output is written to the file
3462+ specified by parameter <see cref="P:MSBuild.Community.Tasks.Xslt.Output"/>.
3463+ </p>
3464+ </remarks><example>
3465+ This example for generating a report
3466+ from a set of NUnit xml results:
3467+ <code>
3468+ <![CDATA[
3469+<ItemGroup>
3470+ <nunitReportXslFile Include="$(MSBuildCommunityTasksPath)\$(nunitReportXsl)">
3471+ <project>$(project)</project>
3472+ <configuration>$(configuration)</configuration>
3473+ <msbuildFilename>$(MSBuildProjectFullPath)</msbuildFilename>
3474+ <msbuildBinpath>$(MSBuildBinPath)</msbuildBinpath>
3475+ <xslFile>$(MSBuildCommunityTasksPath)\$(nunitReportXsl)</xslFile>
3476+ </nunitReportXslFile>
3477+</ItemGroup>
3478+
3479+<Target Name="test-report" >
3480+ <Xslt Inputs="@(nunitFiles)"
3481+ RootTag="mergedroot"
3482+ Xsl="@(nunitReportXslFile)"
3483+ Output="$(testDir)\TestReport.html" />
3484+</Target>]]>
3485+ </code>
3486+
3487+ This examples shows all available task attributes:
3488+ <code>
3489+ <![CDATA[
3490+<Time Format="yyyyMMddHHmmss">
3491+ <Output TaskParameter="LocalTimestamp" PropertyName="buildDate" />
3492+</Time>
3493+
3494+<Xslt
3495+ Inputs="@(xmlfiles)"
3496+ RootTag="mergedroot"
3497+ RootAttributes="foo=bar;date=$(buildDate)"
3498+ Xsl="transformation.xsl"
3499+ Output="report.html"
3500+/>]]>
3501+ </code>
3502+ </example>
3503+ </member>
3504+ <member name="F:MSBuild.Community.Tasks.Xslt.CREATED_ATTRIBUTE">
3505+ <summary>
3506+ The name of the default attribute
3507+ of the <see cref="P:MSBuild.Community.Tasks.Xslt.RootTag"/>.
3508+ The value is <c>"created"</c>,
3509+ and the attribute will contain a local time stamp.
3510+ </summary>
3511+ </member>
3512+ <member name="M:MSBuild.Community.Tasks.Xslt.Execute">
3513+ <summary>
3514+ When overridden in a derived class, executes the task.
3515+ </summary>
3516+ <returns>
3517+ Returns <c>true</c> if the task successfully executed; otherwise, <c>false</c>.
3518+ </returns>
3519+ </member>
3520+ <member name="P:MSBuild.Community.Tasks.Xslt.Inputs">
3521+ <summary>
3522+ Gets or sets the xml input files.
3523+ </summary>
3524+ </member>
3525+ <member name="P:MSBuild.Community.Tasks.Xslt.RootTag">
3526+ <summary>
3527+ Gets or sets the xml tag name
3528+ of the root tag wrapped
3529+ around the merged xml input files.
3530+ </summary>
3531+ </member>
3532+ <member name="P:MSBuild.Community.Tasks.Xslt.RootAttributes">
3533+ <summary>
3534+ Gets or sets the list of
3535+ semicolon-delimited name/value pairs
3536+ of the <see cref="P:MSBuild.Community.Tasks.Xslt.RootTag"/>.
3537+ For example: <code>RootAttributes="foo=bar;date=$(buildDate)"</code>
3538+ </summary>
3539+ </member>
3540+ <member name="P:MSBuild.Community.Tasks.Xslt.Xsl">
3541+ <summary>
3542+ Gets or sets the path of the
3543+ xsl transformation file to apply.
3544+ </summary>
3545+ <remarks>
3546+ The property can be given any number of metadata,
3547+ which will be handed to the xsl transformation
3548+ as parameters.
3549+ </remarks>
3550+ </member>
3551+ <member name="P:MSBuild.Community.Tasks.Xslt.Output">
3552+ <summary>
3553+ Gets or sets the path of the output file.
3554+ </summary>
3555+ </member>
3556+ <member name="T:MSBuild.Community.Tasks.FileUpdate">
3557+ <summary>
3558+ Replace text in file(s) using a Regular Expression.
3559+ </summary>
3560+ <example>Search for a version number and update the revision.
3561+ <code><![CDATA[
3562+ <FileUpdate Files="version.txt"
3563+ Regex="(\d+)\.(\d+)\.(\d+)\.(\d+)"
3564+ ReplacementText="$1.$2.$3.123" />
3565+ ]]></code>
3566+ </example>
3567+ </member>
3568+ <member name="M:MSBuild.Community.Tasks.FileUpdate.#ctor">
3569+ <summary>
3570+ Initializes a new instance of the <see cref="T:FileUpdate"/> class.
3571+ </summary>
3572+ </member>
3573+ <member name="M:MSBuild.Community.Tasks.FileUpdate.Execute">
3574+ <summary>
3575+ When overridden in a derived class, executes the task.
3576+ </summary>
3577+ <returns>
3578+ true if the task successfully executed; otherwise, false.
3579+ </returns>
3580+ </member>
3581+ <member name="P:MSBuild.Community.Tasks.FileUpdate.Files">
3582+ <summary>
3583+ Gets or sets the files to update.
3584+ </summary>
3585+ <value>The files.</value>
3586+ </member>
3587+ <member name="P:MSBuild.Community.Tasks.FileUpdate.Regex">
3588+ <summary>
3589+ Gets or sets the regex.
3590+ </summary>
3591+ <value>The regex.</value>
3592+ </member>
3593+ <member name="P:MSBuild.Community.Tasks.FileUpdate.IgnoreCase">
3594+ <summary>
3595+ Gets or sets a value specifies case-insensitive matching. .
3596+ </summary>
3597+ <value><c>true</c> if [ignore case]; otherwise, <c>false</c>.</value>
3598+ </member>
3599+ <member name="P:MSBuild.Community.Tasks.FileUpdate.Multiline">
3600+ <summary>
3601+ Gets or sets a value changing the meaning of ^ and $ so they match at the beginning and end,
3602+ respectively, of any line, and not just the beginning and end of the entire string.
3603+ </summary>
3604+ <value><c>true</c> if multiline; otherwise, <c>false</c>.</value>
3605+ </member>
3606+ <member name="P:MSBuild.Community.Tasks.FileUpdate.Singleline">
3607+ <summary>
3608+ Gets or sets a value changing the meaning of the dot (.) so it matches
3609+ every character (instead of every character except \n).
3610+ </summary>
3611+ <value><c>true</c> if singleline; otherwise, <c>false</c>.</value>
3612+ </member>
3613+ <member name="P:MSBuild.Community.Tasks.FileUpdate.ReplacementCount">
3614+ <summary>
3615+ Gets or sets the maximum number of times the replacement can occur.
3616+ </summary>
3617+ <value>The replacement count.</value>
3618+ </member>
3619+ <member name="P:MSBuild.Community.Tasks.FileUpdate.ReplacementText">
3620+ <summary>
3621+ Gets or sets the replacement text.
3622+ </summary>
3623+ <value>The replacement text.</value>
3624+ </member>
3625+ <member name="P:MSBuild.Community.Tasks.FileUpdate.Encoding">
3626+ <summary>
3627+ The character encoding used to read and write the file.
3628+ </summary>
3629+ <remarks>Any value returned by <see cref="P:System.Text.Encoding.WebName"/> is valid input.
3630+ <para>The default is <c>utf-8</c></para></remarks>
3631+ </member>
3632+ <member name="T:MSBuild.Community.Tasks.FxCop">
3633+ <summary>
3634+ Uses FxCop to analyse managed code assemblies and reports on
3635+ their design best-practice compliance.
3636+ </summary>
3637+ <example>
3638+ <para>Shows how to analyse an assembly and use an XSLT stylesheet
3639+ to present the report as an HTML file. If the static anlysis fails,
3640+ the build does not stop - this is controlled with the <c>FailOnError</c>
3641+ parameter.</para>
3642+ <code><![CDATA[
3643+ <FxCop
3644+ TargetAssemblies="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.dll"
3645+ RuleLibraries="@(FxCopRuleAssemblies)"
3646+ Rules="Microsoft.Design#CA1012;-Microsoft.Performance#CA1805"
3647+ AnalysisReportFileName="Test.html"
3648+ DependencyDirectories="$(MSBuildCommunityTasksPath)"
3649+ FailOnError="False"
3650+ ApplyOutXsl="True"
3651+ OutputXslFileName="C:\Program Files\Microsoft FxCop 1.32\Xml\FxCopReport.xsl"
3652+ />
3653+ ]]></code>
3654+ </example>
3655+ <remarks>If you include the <c>MSBuild.Community.Tasks.Targets</c> file
3656+ in you build project, the ItemGroup <c>@(FxCopRuleAssemblies)</c> is defined
3657+ with the standard FxCop Rules Assemblies.</remarks>
3658+ </member>
3659+ <member name="M:MSBuild.Community.Tasks.FxCop.Execute">
3660+ <summary>
3661+ Executes the task.
3662+ </summary>
3663+ <returns><see langword="true"/> if the task ran successfully;
3664+ otherwise <see langword="false"/>.</returns>
3665+ </member>
3666+ <member name="M:MSBuild.Community.Tasks.FxCop.GenerateFullPathToTool">
3667+ <summary>
3668+ Returns the fully qualified path to the executable file.
3669+ </summary>
3670+ <returns>
3671+ The fully qualified path to the executable file.
3672+ </returns>
3673+ </member>
3674+ <member name="M:MSBuild.Community.Tasks.FxCop.GenerateCommandLineCommands">
3675+ <summary>
3676+ Returns a string value containing the command line arguments
3677+ to pass directly to the executable file.
3678+ </summary>
3679+ <returns>
3680+ A string value containing the command line arguments to pass
3681+ directly to the executable file.
3682+ </returns>
3683+ </member>
3684+ <member name="M:MSBuild.Community.Tasks.FxCop.ValidateParameters">
3685+ <summary>
3686+ Indicates whether all task paratmeters are valid.
3687+ </summary>
3688+ <returns>true if all task parameters are valid; otherwise, false</returns>
3689+ </member>
3690+ <member name="M:MSBuild.Community.Tasks.FxCop.GetWorkingDirectory">
3691+ <summary>
3692+ Returns the directory in which to run the executable file.
3693+ </summary>
3694+ <returns>
3695+ The directory in which to run the executable file,
3696+ or a null reference (Nothing in Visual Basic) if the executable file
3697+ should be run in the current directory.
3698+ </returns>
3699+ </member>
3700+ <member name="P:MSBuild.Community.Tasks.FxCop.ApplyOutXsl">
3701+ <summary>
3702+ Applies the XSL transformation specified in /outXsl to the
3703+ analysis report before saving the file.
3704+ </summary>
3705+ </member>
3706+ <member name="P:MSBuild.Community.Tasks.FxCop.DirectOutputToConsole">
3707+ <summary>
3708+ Directs analysis output to the console or to the
3709+ Output window in Visual Studio .NET. By default,
3710+ the XSL file FxCopConsoleOutput.xsl is applied to the
3711+ output before it is displayed.
3712+ </summary>
3713+ </member>
3714+ <member name="P:MSBuild.Community.Tasks.FxCop.DependencyDirectories">
3715+ <summary>
3716+ Specifies additional directories to search for assembly dependencies.
3717+ FxCopCmd always searches the target assembly directory and the current
3718+ working directory.
3719+ </summary>
3720+ </member>
3721+ <member name="P:MSBuild.Community.Tasks.FxCop.TargetAssemblies">
3722+ <summary>
3723+ Specifies the target assembly to analyze.
3724+ </summary>
3725+ </member>
3726+ <member name="P:MSBuild.Community.Tasks.FxCop.ConsoleXslFileName">
3727+ <summary>
3728+ Specifies the XSL or XSLT file that contains a transformation to
3729+ be applied to the analysis output before it is displayed in the console.
3730+ </summary>
3731+ </member>
3732+ <member name="P:MSBuild.Community.Tasks.FxCop.ImportFiles">
3733+ <summary>
3734+ Specifies the name of an analysis report or project file to import.
3735+ Any messages in the imported file that are marked as excluded are not
3736+ included in the analysis results.
3737+ </summary>
3738+ </member>
3739+ <member name="P:MSBuild.Community.Tasks.FxCop.RuleLibraries">
3740+ <summary>
3741+ Specifies the filename(s) of FxCop rule assemblies
3742+ </summary>
3743+ </member>
3744+ <member name="P:MSBuild.Community.Tasks.FxCop.Rules">
3745+ <summary>
3746+ The list of rules to run
3747+ </summary>
3748+ <remarks>Rule names should be provided using the format Library#RuleNumber. For example <c>Microsoft.Design#CA1012</c>
3749+ <para>Place a single hyphen (-) in front of the rule name to exclude it. For example <c>-Microsoft.Performance#CA1805</c></para>
3750+ </remarks>
3751+ </member>
3752+ <member name="P:MSBuild.Community.Tasks.FxCop.AnalysisReportFileName">
3753+ <summary>
3754+ Specifies the file name for the analysis report.
3755+ </summary>
3756+ </member>
3757+ <member name="P:MSBuild.Community.Tasks.FxCop.OutputXslFileName">
3758+ <summary>
3759+ Specifies the XSL or XSLT file that is referenced by the
3760+ xml-stylesheet processing instruction in the analysis report.
3761+ </summary>
3762+ </member>
3763+ <member name="P:MSBuild.Community.Tasks.FxCop.PlatformDirectory">
3764+ <summary>
3765+ Specifies the location of the version of Mscorlib.dll
3766+ that was used when building the target assemblies if this
3767+ version is not installed on the computer running FxCopCmd.
3768+ </summary>
3769+ </member>
3770+ <member name="P:MSBuild.Community.Tasks.FxCop.ProjectFile">
3771+ <summary>
3772+ Specifies the filename of FxCop project file.
3773+ </summary>
3774+ </member>
3775+ <member name="P:MSBuild.Community.Tasks.FxCop.IncludeSummaryReport">
3776+ <summary>
3777+ Includes a summary report with the informational
3778+ messages returned by FxCopCmd.
3779+ </summary>
3780+ </member>
3781+ <member name="P:MSBuild.Community.Tasks.FxCop.TypeList">
3782+ <summary>
3783+ Comma-separated list of type names to analyze. This option disables
3784+ analysis of assemblies, namespaces, and resources; only the specified
3785+ types and their members are included in the analysis.
3786+ Use the wildcard character '*' at the end of the name to select multiple types.
3787+ </summary>
3788+ </member>
3789+ <member name="P:MSBuild.Community.Tasks.FxCop.SaveResults">
3790+ <summary>
3791+ Saves the results of the analysis in the project file.
3792+ </summary>
3793+ </member>
3794+ <member name="P:MSBuild.Community.Tasks.FxCop.WorkingDirectory">
3795+ <summary>
3796+ Gets or sets the working directory.
3797+ </summary>
3798+ <value>The working directory.</value>
3799+ <returns>
3800+ The directory in which to run the executable file, or a null reference (Nothing in Visual Basic) if the executable file should be run in the current directory.
3801+ </returns>
3802+ </member>
3803+ <member name="P:MSBuild.Community.Tasks.FxCop.Verbose">
3804+ <summary>
3805+ Gets or sets a value indicating whether the output is verbose.
3806+ </summary>
3807+ <value><c>true</c> if verbose; otherwise, <c>false</c>.</value>
3808+ </member>
3809+ <member name="P:MSBuild.Community.Tasks.FxCop.FailOnError">
3810+ <summary>
3811+ Gets or sets a value indicating whether the build should
3812+ fail if static code analysis reports errors. Defaults to
3813+ <c>true</c>.
3814+ </summary>
3815+ <value><c>true</c> if verbose; otherwise, <c>false</c>.</value>
3816+ </member>
3817+ <member name="P:MSBuild.Community.Tasks.FxCop.ToolName">
3818+ <summary>
3819+ Gets the name of the executable file to run.
3820+ </summary>
3821+ <value></value>
3822+ <returns>The name of the executable file to run.</returns>
3823+ </member>
3824+ <member name="T:MSBuild.Community.Tasks.ServiceActions">
3825+ <summary>
3826+ Defines the actions that can be performed on a service.
3827+ </summary>
3828+ </member>
3829+ <member name="F:MSBuild.Community.Tasks.ServiceActions.Start">
3830+ <summary>
3831+ Starts a service.
3832+ </summary>
3833+ </member>
3834+ <member name="F:MSBuild.Community.Tasks.ServiceActions.Stop">
3835+ <summary>
3836+ Stops a service.
3837+ </summary>
3838+ </member>
3839+ <member name="F:MSBuild.Community.Tasks.ServiceActions.Restart">
3840+ <summary>
3841+ Restarts a service.
3842+ </summary>
3843+ </member>
3844+ <member name="F:MSBuild.Community.Tasks.ServiceActions.Pause">
3845+ <summary>
3846+ Pauses a running service.
3847+ </summary>
3848+ </member>
3849+ <member name="F:MSBuild.Community.Tasks.ServiceActions.Continue">
3850+ <summary>
3851+ Continues a paused service.
3852+ </summary>
3853+ </member>
3854+ <member name="T:MSBuild.Community.Tasks.ServiceController">
3855+ <summary>
3856+ Task that can control a Windows service.
3857+ </summary>
3858+ <example>
3859+ <para>Restart Web Server</para>
3860+ <code><![CDATA[
3861+ <ServiceController ServiceName="w3svc" Action="Restart" />
3862+ ]]></code>
3863+ </example>
3864+ </member>
3865+ <member name="T:MSBuild.Community.Tasks.ServiceQuery">
3866+ <summary>
3867+ Task that can determine the status of a specified service
3868+ on a target server.
3869+ </summary>
3870+ <example>
3871+ <para>Check status of SQL Server</para>
3872+ <code><![CDATA[
3873+ <ServiceQuery ServiceName="MSSQLServer">
3874+ <Output TaskParameter="Status" PropertyName="ResultStatus" />
3875+ </ServiceQuery>
3876+ <Message Text="MSSQLServer Service Status: $(ResultStatus)"/>
3877+ ]]></code>
3878+ </example>
3879+ </member>
3880+ <member name="F:MSBuild.Community.Tasks.ServiceQuery.UNKNOWN_STATUS">
3881+ <summary>
3882+ The unknown <see cref="P:MSBuild.Community.Tasks.ServiceQuery.Status"/>
3883+ returned when the service does not exist.
3884+ The value is "Unknown".
3885+ </summary>
3886+ </member>
3887+ <member name="M:MSBuild.Community.Tasks.ServiceQuery.#ctor">
3888+ <summary>
3889+ Initializes a new instance of the <see cref="T:ServiceQuery"/> class.
3890+ </summary>
3891+ </member>
3892+ <member name="M:MSBuild.Community.Tasks.ServiceQuery.Execute">
3893+ <summary>
3894+ Executes the task.
3895+ </summary>
3896+ <returns><see langword="true"/> if the task ran successfully;
3897+ otherwise <see langword="false"/>.</returns>
3898+ </member>
3899+ <member name="M:MSBuild.Community.Tasks.ServiceQuery.GetServiceController">
3900+ <summary>
3901+ Gets the service controller.
3902+ </summary>
3903+ <returns></returns>
3904+ </member>
3905+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.ServiceName">
3906+ <summary>
3907+ Gets or sets the name of the service.
3908+ </summary>
3909+ <value>The name of the service.</value>
3910+ </member>
3911+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.MachineName">
3912+ <summary>
3913+ Gets or sets the name of the machine.
3914+ </summary>
3915+ <value>The name of the machine.</value>
3916+ </member>
3917+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.Status">
3918+ <summary>
3919+ Gets or sets the status.
3920+ </summary>
3921+ <value>The status of the service.</value>
3922+ </member>
3923+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.CanPauseAndContinue">
3924+ <summary>
3925+ Gets a value indicating whether the service can be paused and resumed.
3926+ </summary>
3927+ <value>
3928+ <c>true</c> if this instance can pause and continue; otherwise, <c>false</c>.
3929+ </value>
3930+ </member>
3931+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.CanShutdown">
3932+ <summary>
3933+ Gets a value indicating whether the service should be notified when the system is shutting down.
3934+ </summary>
3935+ <value>
3936+ <c>true</c> if this instance can shutdown; otherwise, <c>false</c>.
3937+ </value>
3938+ </member>
3939+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.CanStop">
3940+ <summary>
3941+ Gets a value indicating whether the service can be stopped after it has started.
3942+ </summary>
3943+ <value><c>true</c> if this instance can stop; otherwise, <c>false</c>.</value>
3944+ </member>
3945+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.DisplayName">
3946+ <summary>
3947+ Gets a friendly name for the service.
3948+ </summary>
3949+ <value>The name of the display.</value>
3950+ </member>
3951+ <member name="P:MSBuild.Community.Tasks.ServiceQuery.Exists">
3952+ <summary>
3953+ Gets a value indicating whether the service exists.
3954+ </summary>
3955+ <value><c>true</c> if the service exists; otherwise, <c>false</c>.</value>
3956+ </member>
3957+ <member name="M:MSBuild.Community.Tasks.ServiceController.#ctor">
3958+ <summary>
3959+ Initializes a new instance of the <see cref="T:ServiceController"/> class.
3960+ </summary>
3961+ </member>
3962+ <member name="M:MSBuild.Community.Tasks.ServiceController.Execute">
3963+ <summary>
3964+ Executes the task.
3965+ </summary>
3966+ <returns><see langword="true"/> if the task ran successfully;
3967+ otherwise <see langword="false"/>.</returns>
3968+ </member>
3969+ <member name="P:MSBuild.Community.Tasks.ServiceController.Action">
3970+ <summary>
3971+ Gets or sets the <see cref="T:ServiceActions"/> to perform on the service.
3972+ </summary>
3973+ <value>The action to perform on the service.</value>
3974+ <enum cref="T:MSBuild.Community.Tasks.ServiceActions"/>
3975+ </member>
3976+ <member name="P:MSBuild.Community.Tasks.ServiceController.Timeout">
3977+ <summary>
3978+ Gets or sets the timeout for the command. The default is
3979+ one minute.
3980+ </summary>
3981+ <value>The timeout for the command.</value>
3982+ </member>
3983+ <member name="T:MSBuild.Community.Tasks.SourceSafe.VssClean">
3984+ <summary>
3985+ Task that can strip the source control information from a
3986+ Visual Studio Solution and subprojects.
3987+ </summary>
3988+ <remarks>This task is useful if you keep an archive of the
3989+ source tree at each build milestone, because it's irritating to have
3990+ to remove source control binding manually once you've copied a
3991+ version of the code from your archive.</remarks>
3992+ </member>
3993+ <member name="M:MSBuild.Community.Tasks.SourceSafe.VssClean.Execute">
3994+ <summary>
3995+ Executes the task.
3996+ </summary>
3997+ <returns><see langword="true"/> if the task ran successfully;
3998+ otherwise <see langword="false"/>.</returns>
3999+ </member>
4000+ <member name="T:MSBuild.Community.Tasks.FtpUpload">
4001+ <summary>
4002+ Uploads a file using File Transfer Protocol (FTP).
4003+ </summary>
4004+ <example>Upload a file.
4005+ <code><![CDATA[
4006+ <FtpUpload
4007+ LocalFile="MSBuild.Community.Tasks.zip"
4008+ RemoteUri="ftp://localhost/MSBuild.Community.Tasks.zip" />
4009+ ]]></code>
4010+ </example>
4011+ </member>
4012+ <member name="M:MSBuild.Community.Tasks.FtpUpload.#ctor">
4013+ <summary>
4014+ Initializes a new instance of the <see cref="T:FtpUpload"/> class.
4015+ </summary>
4016+ </member>
4017+ <member name="M:MSBuild.Community.Tasks.FtpUpload.Execute">
4018+ <summary>
4019+ When overridden in a derived class, executes the task.
4020+ </summary>
4021+ <returns>
4022+ true if the task successfully executed; otherwise, false.
4023+ </returns>
4024+ </member>
4025+ <member name="P:MSBuild.Community.Tasks.FtpUpload.LocalFile">
4026+ <summary>
4027+ Gets or sets the local file to upload.
4028+ </summary>
4029+ <value>The local file.</value>
4030+ </member>
4031+ <member name="P:MSBuild.Community.Tasks.FtpUpload.RemoteUri">
4032+ <summary>
4033+ Gets or sets the remote URI to upload.
4034+ </summary>
4035+ <value>The remote URI.</value>
4036+ </member>
4037+ <member name="P:MSBuild.Community.Tasks.FtpUpload.Username">
4038+ <summary>
4039+ Gets or sets the username.
4040+ </summary>
4041+ <value>The username.</value>
4042+ </member>
4043+ <member name="P:MSBuild.Community.Tasks.FtpUpload.Password">
4044+ <summary>
4045+ Gets or sets the password.
4046+ </summary>
4047+ <value>The password.</value>
4048+ </member>
4049+ <member name="P:MSBuild.Community.Tasks.FtpUpload.UsePassive">
4050+ <summary>
4051+ Gets or sets the behavior of a client application's data transfer process.
4052+ </summary>
4053+ <value><c>true</c> if [use passive]; otherwise, <c>false</c>.</value>
4054+ </member>
4055+ <member name="T:MSBuild.Community.Tasks.IIS.AppPoolCreate">
4056+ <summary>
4057+ Creates a new application pool on a local or remote machine with IIS installed. The default is
4058+ to create the new application pool on the local machine. If connecting to a remote machine, you can
4059+ specify the <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Username"/> and <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Password"/> for the task
4060+ to run under.
4061+ </summary>
4062+ <example>Create a new application pool on the local machine.
4063+ <code><![CDATA[
4064+ <AppPoolCreate AppPoolName="MyAppPool" />
4065+ ]]></code>
4066+ </example>
4067+ </member>
4068+ <member name="M:MSBuild.Community.Tasks.IIS.AppPoolCreate.Execute">
4069+ <summary>
4070+ When overridden in a derived class, executes the task.
4071+ </summary>
4072+ <returns>
4073+ True if the task successfully executed; otherwise, false.
4074+ </returns>
4075+ </member>
4076+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.ApplicationPoolName">
4077+ <summary>
4078+ Gets or sets the name of the application pool.
4079+ </summary>
4080+ <value>The name of the application pool.</value>
4081+ </member>
4082+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.AppPoolAutoStart">
4083+ <summary>
4084+ The AppPoolAutoStart property indicates to the World Wide Web Publishing Service (WWW service)
4085+ to automatically start an application pool when the application pool is created or when IIS
4086+ is started, if the value of this property is set to true.
4087+ </summary>
4088+ <value>Value indicating if AppPoolAutoStart is enabled or disabled.</value>
4089+ </member>
4090+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.AppPoolIdentityType">
4091+ <summary>
4092+ The AppPoolIdentityType property allows application pools to run as a specific user account:
4093+
4094+ 0 - The application pool runs as NT AUTHORITY\SYSTEM.
4095+ 1 - The application pool runs as NT AUTHORITY\LOCAL SERVICE.
4096+ 2 - The application pool runs as NT AUTHORITY\NETWORK SERVICE.
4097+ 3 - The application pool runs as a specific user account, defined by the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.WAMUserName"/> property.
4098+ </summary>
4099+ <value>Value indicating the application pool identity type.</value>
4100+ </member>
4101+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.AppPoolQueueLength">
4102+ <summary>
4103+ The AppPoolQueueLength property indicates to the Universal Listener how many requests
4104+ to queue up for an application pool before rejecting future requests. When the limit
4105+ for this property is exceeded, IIS rejects the additional requests with a 503 error.
4106+ </summary>
4107+ <value>Value indicating the application pool queue length.</value>
4108+ </member>
4109+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.AutoShutdownAppPoolExe">
4110+ <summary>
4111+ The AutoShutdownAppPoolExe property specifies an executable to run when the World Wide Web
4112+ Publishing Service (WWW service) shuts down an application pool for rapid fail protection. You
4113+ can use the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.AutoShutdownAppPoolParams"/> property to send parameters to the executable.
4114+ </summary>
4115+ <value>Value indicating the application pool auto shutdown executable.</value>
4116+ </member>
4117+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.AutoShutdownAppPoolParams">
4118+ <summary>
4119+ The AutoShutdownAppPoolParams property specifies any command-line parameters for the executable that
4120+ is specified in the AutoShutdownAppPoolExe property. You can use these two properties in the following
4121+ way to send e-mail, for example, when the World Wide Web Publishing Service (WWW service) shuts down
4122+ an application pool for rapid fail protection:
4123+
4124+ AutoShutdownAppPoolExe = "C:\LogAndSendMail.bat"
4125+ AutoShutdownAppPoolParams = "-AppPoolName %1%"
4126+
4127+ where %1% represents the application pool name.
4128+ </summary>
4129+ <value>Value indicating the parameters for the application pool auto shutdown executable.</value>
4130+ </member>
4131+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.CPUAction">
4132+ <summary>
4133+ The CPUAction property configures the action(s) that IIS takes when Microsoft Windows NT ® job objects
4134+ run. Only one Windows NT job object exists per application pool, therefore the CPUAction property
4135+ is configured on a per application pool basis.
4136+
4137+ Possible values:
4138+ 0 - No action is taken except that a warning is written to the event log when the CPU limit is exceeded.
4139+ 1 - Application pool worker processes that exceed their CPU limit will be forced to shut down.
4140+ </summary>
4141+ <value>Value indicating the CPU action.</value>
4142+ </member>
4143+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.CPULimit">
4144+ <summary>
4145+ The CPULimit property configures the maximum percentage of CPU resources that worker processes
4146+ in an application pool are allowed to consume over a period of time, as indicated by the
4147+ <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.CPUResetInterval"/> property. Set this property by specifying a percentage of CPU
4148+ usage, multiplied by 1000. For example, if you want the CPU usage limit to be 50%, set CPULimit to 50,000.
4149+ </summary>
4150+ <value>Value indicating the CPU limit.</value>
4151+ </member>
4152+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.CPUResetInterval">
4153+ <summary>
4154+ The CPUResetInterval property specifies the reset period (in minutes) for CPU monitoring and
4155+ throttling limits on the application pool. When the number of minutes elapsed since the last
4156+ process accounting reset equals the number specified by this property, IIS will reset the CPU
4157+ timers for both the logging and limit intervals. Setting the value of this property to 0
4158+ disables CPU monitoring.
4159+ </summary>
4160+ <value>Value indicating the CPU reset interval.</value>
4161+ </member>
4162+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.DisallowOverlappingRotation">
4163+ <summary>
4164+ The DisallowOverlappingRotation property specifies whether or not the World Wide Web Publishing
4165+ Service (WWW Service) should start up another worker process to replace the existing worker
4166+ process while it is shutting down.
4167+ </summary>
4168+ <value>Value indicating the DisallowOverlappingRotation.</value>
4169+ </member>
4170+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.DisallowRotationOnConfigChange">
4171+ <summary>
4172+ The DisallowRotationOnConfigChange property specifies whether or not the World Wide Web Publishing
4173+ Service (WWW Service) should rotate worker processes in an application pool when the configuration
4174+ has changed. This means that the worker processes will not pick up application pool changes to
4175+ values passed to the worker process, such as <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.IdleTimeout"/> and <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PeriodicRestartRequests"/>.
4176+ </summary>
4177+ <value>Value indicating the DisallowRotationOnConfigChange.</value>
4178+ </member>
4179+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.IdleTimeout">
4180+ <summary>
4181+ The IdleTimeout property specifies how long (in minutes) a worker process should run idle if no new
4182+ requests are received and the worker process is not processing requests. After the allotted time
4183+ passes, the worker process should request to be shut down by the World Wide Web Publishing Service (WWW Service).
4184+ </summary>
4185+ <value>Value indicating the idle timeout.</value>
4186+ </member>
4187+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.LoadBalancerCapabilities">
4188+ <summary>
4189+ The LoadBalancerCapabilities property specifies behavior when a service is unavailable. A setting of 1
4190+ terminates the connection. A setting of 2 sends error code 503.
4191+ </summary>
4192+ <value>Value indicating the load balancer capabilities.</value>
4193+ </member>
4194+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.LogEventOnRecycle">
4195+ <summary>
4196+ The LogEventOnRecycle property specifies that IIS should log an event when an application pool is
4197+ recycled. Application pools recycle for a variety of reasons. In order for IIS to log the event, the
4198+ LogEventOnRecycle property must have a bit set corresponding to the reason for the recycle.
4199+ </summary>
4200+ <value>Value indicating which recycle events to log.</value>
4201+ </member>
4202+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.LogonMethod">
4203+ <summary>
4204+ The LogonMethod property contains an integer that specifies the logon method for cleartext
4205+ logons. Valid settings are:
4206+
4207+ 0 for interactive logon.
4208+ 1 for batch logon.
4209+ 2 for network logon.
4210+ 3 for cleartext logon.
4211+ </summary>
4212+ <value>Value indicating the logon method.</value>
4213+ </member>
4214+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.MaxProcesses">
4215+ <summary>
4216+ The MaxProcesses property determines the maximum number of worker processes an application pool
4217+ allows to service requests for an application pool. This property cannot be set to 0 because there
4218+ are no unmanaged pools.
4219+ </summary>
4220+ <value>Value indicating the maximum number of worker processes allowed by the application pool.</value>
4221+ </member>
4222+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.OrphanActionExe">
4223+ <summary>
4224+ The OrphanActionExe property specifies an executable to run when the World Wide Web Publishing
4225+ Service (WWW service) orphans a worker process. You can use the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.OrphanActionParams"/> property
4226+ to send parameters to the executable.
4227+ </summary>
4228+ <value>The value for the orphan action executable.</value>
4229+ </member>
4230+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.OrphanActionParams">
4231+ <summary>
4232+ The OrphanActionParams property specifies command-line parameters for the executable
4233+ specified by the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.OrphanActionExe"/> property.
4234+ </summary>
4235+ <value>Value indicating the orphan action parameters.</value>
4236+ </member>
4237+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.OrphanWorkerProcess">
4238+ <summary>
4239+ The OrphanWorkerProcess property, when set to true, notifies the World Wide Web Publishing
4240+ Service (WWW Service) not to terminate a worker process that fails to respond to pings, but
4241+ to instead orphan the worker process in the application pool if the worker process suffers
4242+ fatal errors.
4243+ </summary>
4244+ <value>Value indicating the orphan worker process.</value>
4245+ </member>
4246+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PeriodicRestartMemory">
4247+ <summary>
4248+ The PeriodicRestartMemory property specifies the amount of virtual memory (in KB) that a
4249+ worker process can use before the worker process recycles. The maximum value supported
4250+ for this property is 4,294,967 KB.
4251+ </summary>
4252+ <value>Value indicating the amount of memory.</value>
4253+ </member>
4254+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PeriodicRestartPrivateMemory">
4255+ <summary>
4256+ The PeriodicRestartPrivateMemory property specifies the amount of private memory (in KB) that a
4257+ worker process can use before the worker process recycles. The maximum value supported
4258+ for this property is 4,294,967 KB.
4259+ </summary>
4260+ <value>Value indicating the amount of memory.</value>
4261+ </member>
4262+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PeriodicRestartRequests">
4263+ <summary>
4264+ The PeriodicRestartRequests property indicates the number of requests the OOP application
4265+ should process, after which it is recycled.
4266+ </summary>
4267+ <value>Value indicating the number of requests.</value>
4268+ </member>
4269+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PeriodicRestartSchedule">
4270+ <summary>
4271+ The PeriodicRestartSchedule property specifies the time (in 24 hour format) that the application
4272+ will be rotated. Each time is in local time and is specified in the following format:
4273+
4274+ PeriodicRestartSchedule="hh:mm,hh:mm,hh:mm"
4275+ </summary>
4276+ <value>Value indicating the restart schedule.</value>
4277+ </member>
4278+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PeriodicRestartTime">
4279+ <summary>
4280+ The PeriodicRestartTime property specifies the period of time, in minutes, after which IIS
4281+ rotates an isolated OOP application. Setting the value of this property to 0 disables the
4282+ property. The maximum supported value for this property is 71,582.
4283+ </summary>
4284+ <value>Value indicating the restart time period.</value>
4285+ </member>
4286+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PingingEnabled">
4287+ <summary>
4288+ The PingingEnabled property specifies whether the World Wide Web Publishing Service
4289+ (WWW Service) should periodically monitor the health of a worker process. Setting the
4290+ value of this property to true indicates to the WWW service to monitor the worker
4291+ processes to ensure that the they are running and healthy.
4292+ </summary>
4293+ <value>Value indicating if pinging is enabled or disabled.</value>
4294+ </member>
4295+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PingInterval">
4296+ <summary>
4297+ The PingInterval property specifies the period of time (in seconds) between health-monitoring
4298+ pings that the World Wide Web Publishing Service (WWW Service) sends to a worker process.
4299+ </summary>
4300+ <value>Value indicating the ping interval.</value>
4301+ </member>
4302+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.PingResponseTime">
4303+ <summary>
4304+ The PingResponseTime property specifies the amount of time (in seconds) that a worker process
4305+ is given to respond to a health monitoring ping. After the time limit is exceeded, the World
4306+ Wide Web Publishing Service (WWW Service) terminates the worker process.
4307+ </summary>
4308+ <value>Value indicating the ping response time.</value>
4309+ </member>
4310+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtection">
4311+ <summary>
4312+ Setting the RapidFailProtection property to true instructs the World Wide Web Publishing
4313+ Service (WWW service) to put all applications in an application pool out of service if the
4314+ number of worker process crashes has reached the maximum specified by the
4315+ <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtectionMaxCrashes"/> property, within the number of minutes specified
4316+ by the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtectionInterval"/> property.
4317+ </summary>
4318+ <value>Value indicating if rapid fail protection is enabled or disabled.</value>
4319+ </member>
4320+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtectionInterval">
4321+ <summary>
4322+ The RapidFailProtectionInterval property specifies the number of minutes before the failure
4323+ count for a process is reset. See <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtection"/>.
4324+ </summary>
4325+ <value>Value indicating the rapid fail protection interval.</value>
4326+ </member>
4327+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtectionMaxCrashes">
4328+ <summary>
4329+ The RapidFailProtectionMaxCrashes property specifies the maximum number of failures
4330+ allowed within the number of minutes specified by the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtectionInterval"/>
4331+ property. See <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.RapidFailProtection"/>.
4332+ </summary>
4333+ <value>Value indicating the maximum number of crashes.</value>
4334+ </member>
4335+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.ShutdownTimeLimit">
4336+ <summary>
4337+ The ShutdownTimeLimit property specifies the amount of time (in seconds) after a recycle
4338+ threshold has been reached that IIS waits for all old requests to finish running in a worker
4339+ process before terminating the worker process.
4340+ </summary>
4341+ <value>Value indicating the shutdown time limit.</value>
4342+ </member>
4343+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.SMPAffinitized">
4344+ <summary>
4345+ Setting the SMPAffinitized property to true indicates that a particular worker process
4346+ assigned to an application pool should be assigned to a given CPU. This property is used
4347+ in conjunction with the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.SMPProcessorAffinityMask"/> property to configure a
4348+ particular processor a worker process will be assigned to.
4349+ </summary>
4350+ <value>Value indicating if SMPAffinitized is enabled or disabled.</value>
4351+ </member>
4352+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.SMPProcessorAffinityMask">
4353+ <summary>
4354+ The SMPProcessorAffinityMask property configures the hexadecimal processor mask. The hexadecimal
4355+ processor mask indicates to which CPU the worker processes in an application pool should be
4356+ bound. Before this property takes affect, the <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.SMPAffinitized"/> property must be set
4357+ to true for the application pool. These properties cannot be set through IIS Manager.
4358+
4359+ Do not set this property to zero. Doing so causes no SMP affinity to be configured, creating an
4360+ error condition. The default DWORD value is 4294967295 (or -1), which is represented in hexadecimal
4361+ as 0xFFFFFFFF. A value of 0xFFFFFFFF in SMPProcessorAffinityMask indicates that all processors are enabled.
4362+ </summary>
4363+ <value>Value indicating the SMP processor affinity bit mask.</value>
4364+ </member>
4365+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.StartupTimeLimit">
4366+ <summary>
4367+ The value of the StartupTimeLimit property specifies the amount of time (in seconds) that the World Wide
4368+ Web Publishing Service (WWW Service) should wait for a worker process to finish starting up and
4369+ reporting to the WWW Service.
4370+ </summary>
4371+ <value>Value indicating the startup time limit.</value>
4372+ </member>
4373+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.WAMUserName">
4374+ <summary>
4375+ The WAMUserName property specifies the account user name that IIS uses by default as the COM+
4376+ application identity for newly created IIS out-of-process applications. The values of this
4377+ property and its companion property, <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.WAMUserPass"/>, are set when IIS is installed, and
4378+ match the user name and password values in the Microsoft Windows user account, which is established
4379+ at the same time. Changing the value of this property is not recommended. If you do, change
4380+ it to a valid Windows user account, and change WAMUserPass to the corresponding password
4381+ for the new account.
4382+
4383+ Important:
4384+ Changes to WAMUserName and WAMUserPass may disrupt the operation of existing IIS out-of-process
4385+ applications. You can synchronize application identities using Component Services to edit the
4386+ user name and password values, found on the Identity tab of the property sheet for each package.
4387+
4388+ In-process applications are not affected by these property values.
4389+ </summary>
4390+ <value>Value indicating the username.</value>
4391+ </member>
4392+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.WAMUserPass">
4393+ <summary>
4394+ The WAMUserPass property specifies the password for the account that IIS uses by default as the COM+
4395+ application identity for newly created IIS out-of-process applications. The values of this property
4396+ and its companion property, <see cref="P:MSBuild.Community.Tasks.IIS.AppPoolCreate.WAMUserName"/>, are set when IIS is installed, and match the
4397+ password and user name values in the Microsoft Windows user account (IWAM_ MachineName, where MachineName
4398+ is the name of the machine on which IIS is installed) established at the same time.
4399+
4400+ Important:
4401+ Changing the value of this property is not recommended. If you do, you must change the Windows account
4402+ password to the identical value. You must also synchronize existing IIS out-of-process application
4403+ identities, using Component Services to edit the user name and password values, which are found on the
4404+ Identity tab of the property sheet for each package.
4405+
4406+ In-process applications are not affected by these property values.
4407+ </summary>
4408+ <value>Value indicating the password.</value>
4409+ </member>
4410+ <member name="T:MSBuild.Community.Tasks.IIS.WebDirectoryCreate">
4411+ <summary>
4412+ Creates a new web directory on a local or remote machine with IIS installed. The default is
4413+ to create the new web directory on the local machine. The physical path is required to already exist
4414+ on the target machine. If connecting to a remote machine, you can specify the <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Username"/>
4415+ and <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Password"/> for the task to run under.
4416+ </summary>
4417+ <example>Create a new web directory on the local machine.
4418+ <code><![CDATA[
4419+ <WebDirectoryCreate VirtualDirectoryName="MyVirDir"
4420+ VirtualDirectoryPhysicalPath="C:\Inetpub\MyWebDir" />
4421+ ]]></code>
4422+ </example>
4423+ </member>
4424+ <member name="M:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.Execute">
4425+ <summary>
4426+ When overridden in a derived class, executes the task.
4427+ </summary>
4428+ <returns>
4429+ True if the task successfully executed; otherwise, false.
4430+ </returns>
4431+ </member>
4432+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.VirtualDirectoryName">
4433+ <summary>
4434+ Gets or sets the name of the virtual directory.
4435+ </summary>
4436+ <value>The name of the virtual directory.</value>
4437+ </member>
4438+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.VirtualDirectoryPhysicalPath">
4439+ <summary>
4440+ Gets or sets the virtual directory physical path. The physical directory must
4441+ exist before this task executes.
4442+ </summary>
4443+ <value>The virtual directory physical path.</value>
4444+ </member>
4445+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessExecute">
4446+ <summary>
4447+ Gets or sets a value that indicates if the file
4448+ or the contents of the folder may be executed, regardless of file type.
4449+ </summary>
4450+ <value>A value indicating if AccessExecute is enabled or disabled.</value>
4451+ </member>
4452+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessNoRemoteExecute">
4453+ <summary>
4454+ A value of true indicates that remote requests to execute applications
4455+ are denied; only requests from the same computer as the IIS server succeed
4456+ if the AccessExecute property is set to true. You cannot set
4457+ AccessNoRemoteExecute to false to enable remote requests, and set
4458+ <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessExecute"/> to false to disable local requests.
4459+ </summary>
4460+ <value>Value indicating if AccessNoRemoteExecute is enabled or disabled.</value>
4461+ </member>
4462+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessNoRemoteRead">
4463+ <summary>
4464+ A value of true indicates that remote requests to view files are denied; only
4465+ requests from the same computer as the IIS server succeed if the <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessRead"/>
4466+ property is set to true. You cannot set <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessNoRemoteRead"/> to false to enable
4467+ remote requests, and set <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessRead"/> to false to disable local requests.
4468+ </summary>
4469+ <value>Value indicating if AccessNoRemoteRead is enabled or disabled.</value>
4470+ </member>
4471+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessNoRemoteScript">
4472+ <summary>
4473+ A value of true indicates that remote requests to view dynamic content are denied; only
4474+ requests from the same computer as the IIS server succeed if the <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessScript"/> property
4475+ is set to true. You cannot set AccessNoRemoteScript to false to enable remote requests,
4476+ and set <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessScript"/> to false to disable local requests.
4477+ </summary>
4478+ <value>Value indicating if AccessNoRemoteScript is enabled or disabled.</value>
4479+ </member>
4480+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessNoRemoteWrite">
4481+ <summary>
4482+ A value of true indicates that remote requests to create or change files are denied; only
4483+ requests from the same computer as the IIS server succeed if the <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessWrite"/> property
4484+ is set to true. You cannot set AccessNoRemoteWrite to false to enable remote requests,
4485+ and set <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessWrite"/> to false to disable local requests.
4486+ </summary>
4487+ <value>Value indicating if AccessNoRemoteWrite is enabled or disabled.</value>
4488+ </member>
4489+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessRead">
4490+ <summary>
4491+ A value of true indicates that the file or the contents of the folder may be read
4492+ through Microsoft Internet Explorer.
4493+ </summary>
4494+ <value>Value indicating if AccessRead is enabled or disabled.</value>
4495+ </member>
4496+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSource">
4497+ <summary>
4498+ A value of true indicates that users are allowed to access source code if either
4499+ Read or Write permissions are set. Source code includes scripts in Microsoft ® Active
4500+ Server Pages (ASP) applications.
4501+ </summary>
4502+ <value>Value indicating if AccessSource is enabled or disabled.</value>
4503+ </member>
4504+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessScript">
4505+ <summary>
4506+ A value of true indicates that the file or the contents of the folder may be executed
4507+ if they are script files or static content. A value of false only allows static files,
4508+ such as HTML files, to be served.
4509+ </summary>
4510+ <value>Value indicating if AccessScript is enabled or disabled.</value>
4511+ </member>
4512+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSsl">
4513+ <summary>
4514+ A value of true indicates that file access requires SSL file permission processing, with
4515+ or without a client certificate.
4516+ </summary>
4517+ <value>Value indicating if AccessSsl is enabled or disabled.</value>
4518+ </member>
4519+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSsl128">
4520+ <summary>
4521+ A value of true indicates that file access requires SSL file permission processing
4522+ with a minimum key size of 128 bits, with or without a client certificate.
4523+ </summary>
4524+ <value>Value indicating if AccessSsl128 is enabled or disabled.</value>
4525+ </member>
4526+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSslMapCert">
4527+ <summary>
4528+ A value of true indicates that SSL file permission processing maps a client certificate
4529+ to a Microsoft Windows ® operating system user-account. The <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSslNegotiateCert"/> property
4530+ must also be set to true for the mapping to occur.
4531+ </summary>
4532+ <value>Value indicating if AccessSslMapCert is enabled or disabled.</value>
4533+ </member>
4534+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSslNegotiateCert">
4535+ <summary>
4536+ A value of true indicates that SSL file access processing requests a certificate from
4537+ the client. A value of false indicates that access continues if the client does not have
4538+ a certificate. Some versions of Internet Explorer will close the connection if the server
4539+ requests a certificate and a certificate is not available (even if <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSslRequireCert"/>
4540+ is also set to true).
4541+ </summary>
4542+ <value>Value indicating if AccessSslNegotiateCert is enabled or disabled.</value>
4543+ </member>
4544+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSslRequireCert">
4545+ <summary>
4546+ A value of true indicates that SSL file access processing requests a certificate from the
4547+ client. If the client provides no certificate, the connection is closed. <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessSslNegotiateCert"/>
4548+ must also be set to true when using AccessSSLRequireCert.
4549+ </summary>
4550+ <value>Value indicating if AccessSslRequireCert is enabled or disabled.</value>
4551+ </member>
4552+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AccessWrite">
4553+ <summary>
4554+ A value of true indicates that users are allowed to upload files and their associated
4555+ properties to the enabled directory on your server or to change content in a Write-enabled
4556+ file. Write can be implemented only with a browser that supports the PUT feature of
4557+ the HTTP 1.1 protocol standard.
4558+ </summary>
4559+ <value>Value indicating if AccessWrite is enabled or disabled.</value>
4560+ </member>
4561+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AnonymousPasswordSync">
4562+ <summary>
4563+ The AnonymousPasswordSync property indicates whether IIS should handle the user password
4564+ for anonymous users attempting to access resources.
4565+ </summary>
4566+ <value>Value indicating if AnonymousPasswordSync is enabled or disabled.</value>
4567+ </member>
4568+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AppAllowClientDebug">
4569+ <summary>
4570+ The AppAllowClientDebug property specifies whether ASP client-side debugging
4571+ is enabled. This property is independent of <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AppAllowDebugging"/>, which
4572+ applies to server-side debugging.
4573+ </summary>
4574+ <value>Value indicating if AppAllowClientDebug is enabled or disabled.</value>
4575+ </member>
4576+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AppAllowDebugging">
4577+ <summary>
4578+ The AppAllowDebugging property specifies whether ASP debugging is enabled on
4579+ the server. This property is independent of the <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AppAllowClientDebug"/> property,
4580+ which applies to client-side debugging.
4581+ </summary>
4582+ <value>Value indicating if AppAllowDebugging is enabled or disabled.</value>
4583+ </member>
4584+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspAllowSessionState">
4585+ <summary>
4586+ The AspAllowSessionState property enables session state persistence for the ASP application.
4587+ </summary>
4588+ <value>Value indicating if the AspAllowSessionState is enabled or disabled.</value>
4589+ </member>
4590+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspBufferingOn">
4591+ <summary>
4592+ The AspBufferingOn property specifies whether output from an ASP application will be buffered.
4593+ </summary>
4594+ <value>Value indicating if the AspBufferingOn is enabled or disabled.</value>
4595+ </member>
4596+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspEnableApplicationRestart">
4597+ <summary>
4598+ The AspEnableApplicationRestart determines whether an ASP application can be
4599+ automatically restarted. When changes are made to Global.asa or metabase properties
4600+ that affect an application, the application will not restart unless the
4601+ AspEnableApplicationRestart property is set to true.
4602+ </summary>
4603+ <value>Value indicating if AspEnableApplicationRestart is enabled or disabled.</value>
4604+ </member>
4605+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspEnableAspHtmlFallback">
4606+ <summary>
4607+ The AspEnableAspHtmlFallback property controls the behavior of ASP when a
4608+ new request is to be rejected due to a full request queue.
4609+ </summary>
4610+ <value>Value indicating if AspEnableAspHtmlFallback is enabled or disabled.</value>
4611+ </member>
4612+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspEnableChunkedEncoding">
4613+ <summary>
4614+ The AspEnableChunkedEncoding property specifies whether HTTP 1.1 chunked
4615+ transfer encoding is enabled for the World Wide Web Publishing Service (WWW service).
4616+ </summary>
4617+ <value>Value indicating if AspEnableChunkedEncoding is enabled or disabled.</value>
4618+ </member>
4619+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspErrorsToNTLog">
4620+ <summary>
4621+ The AspErrorsToNTLog property specifies which ASP errors are written to the
4622+ Windows event log. ASP errors are written to the client browser and to the IIS
4623+ log files by default.
4624+ </summary>
4625+ <value>Value indicating if AspErrorsToNTLog is enabled or disabled.</value>
4626+ </member>
4627+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspEnableParentPaths">
4628+ <summary>
4629+ The AspEnableParentPaths property specifies whether an ASP page allows paths
4630+ relative to the current directory (using the ..\ notation) or above the current directory.
4631+ </summary>
4632+ <value>Value indicating if AspEnableParentPaths is enabled or disabled.</value>
4633+ </member>
4634+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspEnableTypelibCache">
4635+ <summary>
4636+ The AspEnableTypelibCache property specifies whether type libraries are cached
4637+ on the server. The World Wide Web Publishing Service (WWW service) setting for
4638+ this property is applicable to all in-process and pooled out-of-process application
4639+ nodes, at all levels. Metabase settings at the Web server level or lower are ignored
4640+ for in-process and pooled out-of-process applications. However, settings at the Web
4641+ server level or lower are used if that node is an isolated out-of-process application.
4642+ </summary>
4643+ <value>Value indicating if AspEnableTypelibCache is enabled or disabled.</value>
4644+ </member>
4645+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspExceptionCatchEnable">
4646+ <summary>
4647+ The AspExceptionCatchEnable property specifies whether ASP pages trap exceptions
4648+ thrown by components.
4649+ </summary>
4650+ <value>Value indicating if AspExceptionCatchEnable is enabled or disabled.</value>
4651+ </member>
4652+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspLogErrorRequests">
4653+ <summary>
4654+ The AspLogErrorRequests property controls whether the Web server writes ASP errors
4655+ to the application section of the Windows event log. ASP errors are written to the
4656+ client browser and to the IIS log files by default.
4657+ </summary>
4658+ <value>Value indicating if AspLogErrorRequests is enabled or disabled.</value>
4659+ </member>
4660+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspScriptErrorSentToBrowser">
4661+ <summary>
4662+ The AspScriptErrorSentToBrowser property specifies whether the Web server writes
4663+ debugging specifics (file name, error, line number, description) to the client
4664+ browser, in addition to logging them to the Windows Event Log. The <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspScriptErrorMessage"/>
4665+ property provides the error message to be sent if this property is set to false.
4666+ </summary>
4667+ <value>Value indicating if AspScriptErrorSentToBrowser is enabled or disabled.</value>
4668+ </member>
4669+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspTrackThreadingModel">
4670+ <summary>
4671+ The AspTrackThreadingModel property specifies whether IIS checks the threading model
4672+ of any components (COM objects) that your application creates. The preferred setting
4673+ of this metabase property is false.
4674+ </summary>
4675+ <value>Value indicating if AspTrackThreadingModel is enabled or disabled.</value>
4676+ </member>
4677+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AuthAnonymous">
4678+ <summary>
4679+ Specifies Anonymous authentication as one of the possible Windows authentication
4680+ schemes returned to clients as being available.
4681+ </summary>
4682+ <value>Value indicating if AuthAnonymous is enabled or disabled.</value>
4683+ </member>
4684+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AuthBasic">
4685+ <summary>
4686+ Specifies Basic authentication as one of the possible Windows authentication
4687+ schemes returned to clients as being available.
4688+ </summary>
4689+ <value>Value indicating if AuthBasic is enabled or disabled.</value>
4690+ </member>
4691+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AuthNtlm">
4692+ <summary>
4693+ Specifies Integrated Windows authentication (also known as Challenge/Response or
4694+ NTLM authentication) as one of the possible Windows authentication schemes
4695+ returned to clients as being available.
4696+ </summary>
4697+ <value>Value indicating if AuthNtlm is enabled or disabled.</value>
4698+ </member>
4699+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AuthPersistSingleRequest">
4700+ <summary>
4701+ Setting this flag to true specifies that authentication persists only for a single
4702+ request on a connection. IIS resets the authentication at the end of each request, and
4703+ forces re-authentication on the next request of the session.
4704+ </summary>
4705+ <value>Value indicating if AuthPersistSingleRequest is enabled or disabled.</value>
4706+ </member>
4707+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AuthPersistSingleRequestIfProxy">
4708+ <summary>
4709+ Setting this flag to true specifies authentication will persist only across single
4710+ requests on a connection if the connection is by proxy. IIS will reset the authentication
4711+ at the end of the request if the current authenticated request is by proxy and it is
4712+ not the special case where IIS is running MSPROXY.
4713+ </summary>
4714+ <value>Value indicating if AuthPersistSingleRequestIfProxy is enabled or disabled.</value>
4715+ </member>
4716+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AuthPersistSingleRequestAlwaysIfProxy">
4717+ <summary>
4718+ Setting this flag to true specifies that authentication is valid for a single request if
4719+ by proxy. IIS will reset the authentication at the end of the request and force
4720+ re-authentication on the next request if the current authenticated request is by
4721+ proxy of any type.
4722+ </summary>
4723+ <value>Value indicating if AuthPersistSingleRequestAlwaysIfProxy is enabled or disabled.</value>
4724+ </member>
4725+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CacheControlNoCache">
4726+ <summary>
4727+ The CacheControlNoCache property specifies the HTTP 1.1 directive to prevent caching of content.
4728+ </summary>
4729+ <value>Value indicating if CacheControlNoCache is enabled or disabled.</value>
4730+ </member>
4731+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CacheIsapi">
4732+ <summary>
4733+ The CacheISAPI property indicates whether ISAPI extensions are cached in memory after first use.
4734+ </summary>
4735+ <value>Value indicating if CacheIsapi is enabled or disabled.</value>
4736+ </member>
4737+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.ContentIndexed">
4738+ <summary>
4739+ The ContentIndexed property specifies whether the installed content indexer should
4740+ index content under this directory tree.
4741+ </summary>
4742+ <value>Value indicating if ContentIndexed is enabled or disabled.</value>
4743+ </member>
4744+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CpuAppEnabled">
4745+ <summary>
4746+ This property specifies whether process accounting and throttling should be performed
4747+ for ISAPI extensions and ASP applications. To perform process accounting on CGI
4748+ applications, use the property <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CpuCgiEnabled"/>.
4749+ </summary>
4750+ <value>Value indicating if CpuAppEnabled is enabled or disabled.</value>
4751+ </member>
4752+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CpuCgiEnabled">
4753+ <summary>
4754+ This property indicates whether IIS should perform process accounting for CGI
4755+ applications. To effectively throttle CGI applications, use the CgiTimeout
4756+ property. To use process accounting for ISAPI and ASP applications, use <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CpuAppEnabled"/>.
4757+ </summary>
4758+ <value>Value indicating if CpuCgiEnabled is enabled or disabled.</value>
4759+ </member>
4760+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CreateCgiWithNewConsole">
4761+ <summary>
4762+ The CreateCGIWithNewConsole property indicates whether a CGI application runs in its own console.
4763+ </summary>
4764+ <value>Value indicating if CreateCgiWithNewConsole is enabled or disabled.</value>
4765+ </member>
4766+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.CreateProcessAsUser">
4767+ <summary>
4768+ The CreateProcessAsUser property specifies whether a CGI process is created in the system context or in the context of the requesting user.
4769+ </summary>
4770+ <value>Value indicating if CreateProcessAsUser is enabled or disabled.</value>
4771+ </member>
4772+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DirBrowseShowDate">
4773+ <summary>
4774+ When set to true, date information is displayed when browsing directories.
4775+ </summary>
4776+ <value>Value indicating if DirBrowseShowDate is enabled or disabled.</value>
4777+ </member>
4778+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DirBrowseShowExtension">
4779+ <summary>
4780+ When set to true, file name extensions are displayed when browsing directories.
4781+ </summary>
4782+ <value>Value indicating if DirBrowseShowExtension is enabled or disabled.</value>
4783+ </member>
4784+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DirBrowseShowLongDate">
4785+ <summary>
4786+ When set to true, date information is displayed in extended format when displaying directories.
4787+ </summary>
4788+ <value>Value indicating if DirBrowseShowLongDate is enabled or disabled.</value>
4789+ </member>
4790+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DirBrowseShowSize">
4791+ <summary>
4792+ When set to true, file size information is displayed when browsing directories.
4793+ </summary>
4794+ <value>Value indicating if DirBrowseShowSize is enabled or disabled.</value>
4795+ </member>
4796+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DirBrowseShowTime">
4797+ <summary>
4798+ When set to true, file time information is displayed when displaying directories.
4799+ </summary>
4800+ <value>Value indicating if DirBrowseShowTime is enabled or disabled.</value>
4801+ </member>
4802+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DontLog">
4803+ <summary>
4804+ The DontLog property specifies whether client requests are written to the IIS log files.
4805+ </summary>
4806+ <value>Value indicating if DontLog is enabled or disabled.</value>
4807+ </member>
4808+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.EnableDefaultDoc">
4809+ <summary>
4810+ When set to true, the default document (specified by the <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DefaultDoc"/> property) for
4811+ a directory is loaded when the directory is browsed.
4812+ </summary>
4813+ <value>Value indicating if EnableDefaultDoc is enabled or disabled.</value>
4814+ </member>
4815+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.EnableDirBrowsing">
4816+ <summary>
4817+ When set to true, directory browsing is enabled.
4818+ </summary>
4819+ <value>Value indicating if EnableDirBrowsing is enabled or disabled.</value>
4820+ </member>
4821+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.EnableDocFooter">
4822+ <summary>
4823+ The EnableDocFooter property enables or disables custom footers specified by
4824+ the DefaultDocFooter property.
4825+ </summary>
4826+ <value>Value indicating if EnableDocFooter is enabled or disabled.</value>
4827+ </member>
4828+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.EnableReverseDns">
4829+ <summary>
4830+ The EnableReverseDns property enables or disables reverse Domain Name Server (DNS) lookups
4831+ for the World Wide Web Publishing Service (WWW service). Reverse lookups involve looking
4832+ up the domain name when the IP address is known. Reverse DNS lookups can use significant
4833+ resources and time.
4834+ </summary>
4835+ <value>Value indicating if EnableReverseDns is enabled or disabled.</value>
4836+ </member>
4837+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.SsiExecDisable">
4838+ <summary>
4839+ The SSIExecDisable property specifies whether server-side include (SSI) #exec directives
4840+ are disabled under this path.
4841+ </summary>
4842+ <value>Value indicating if SsiExecDisable is enabled or disabled.</value>
4843+ </member>
4844+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.UncAuthenticationPassthrough">
4845+ <summary>
4846+ The UNCAuthenticationPassthrough property enables user authentication passthrough
4847+ for Universal Naming Convention (UNC) virtual root access (for authentication schemes
4848+ that support delegation).
4849+ </summary>
4850+ <value>Value indicating if UncAuthenticationPassthrough is enabled or disabled.</value>
4851+ </member>
4852+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspScriptErrorMessage">
4853+ <summary>
4854+ The AspScriptErrorMessage property specifies the error message to send to the browser
4855+ if specific debugging errors are not sent to the client (if <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.AspScriptErrorSentToBrowser"/>
4856+ is set to false).
4857+ </summary>
4858+ <value>Value indicating if AspScriptErrorMessage is enabled or disabled.</value>
4859+ </member>
4860+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.DefaultDoc">
4861+ <summary>
4862+ The DefaultDoc contains one or more file names of default documents that will be returned
4863+ to the client if no file name is included in the client's request. The default document
4864+ will be returned if the <see cref="P:MSBuild.Community.Tasks.IIS.WebDirectoryCreate.EnableDefaultDoc"/> flag of the DirBrowseFlags property
4865+ is set to true for the directory. This property can contain a list of default document
4866+ file names separated by a comma and a space, for example Default.htm, Default.asp.
4867+ </summary>
4868+ <value>Listing of the default documents for the web application.</value>
4869+ </member>
4870+ <member name="T:MSBuild.Community.Tasks.IIS.AppPoolDelete">
4871+ <summary>
4872+ Deletes an existing application pool on a local or remote machine with IIS installed. The default is
4873+ to delete an existing application pool on the local machine. If connecting to a remote machine, you can
4874+ specify the <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Username"/> and <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Password"/> for the task
4875+ to run under.
4876+ </summary>
4877+ <example>Delete an existing application pool on the local machine.
4878+ <code><![CDATA[
4879+ <AppPoolDelete AppPoolName="MyAppPool" />
4880+ ]]></code>
4881+ </example>
4882+ </member>
4883+ <member name="M:MSBuild.Community.Tasks.IIS.AppPoolDelete.Execute">
4884+ <summary>
4885+ When overridden in a derived class, executes the task.
4886+ </summary>
4887+ <returns>
4888+ True if the task successfully executed; otherwise, false.
4889+ </returns>
4890+ </member>
4891+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolDelete.ApplicationPoolName">
4892+ <summary>
4893+ Gets or sets the name of the application pool.
4894+ </summary>
4895+ <value>The name of the application pool.</value>
4896+ </member>
4897+ <member name="T:MSBuild.Community.Tasks.IIS.WebDirectoryDelete">
4898+ <summary>
4899+ Deletes a web directory on a local or remote machine with IIS installed. The default is
4900+ to delete the web directory on the local machine. If connecting to a remote machine, you
4901+ can specify the <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Username"/> and <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Password"/> for the
4902+ task to run under.
4903+ </summary>
4904+ <example>Deletes a web directory on the local machine.
4905+ <code><![CDATA[
4906+ <WebDirectoryDelete VirtualDirectoryName="MyVirDir" />
4907+ ]]></code>
4908+ </example>
4909+ </member>
4910+ <member name="M:MSBuild.Community.Tasks.IIS.WebDirectoryDelete.Execute">
4911+ <summary>
4912+ When overridden in a derived class, executes the task.
4913+ </summary>
4914+ <returns>
4915+ True if the task successfully executed; otherwise, false.
4916+ </returns>
4917+ </member>
4918+ <member name="P:MSBuild.Community.Tasks.IIS.WebDirectoryDelete.VirtualDirectoryName">
4919+ <summary>
4920+ Gets or sets the name of the virtual directory.
4921+ </summary>
4922+ <value>The name of the virtual directory.</value>
4923+ </member>
4924+ <member name="T:MSBuild.Community.Tasks.IIS.AppPoolControllerActions">
4925+ <summary>
4926+ Actions the <see cref="T:MSBuild.Community.Tasks.IIS.AppPoolController"/> can do.
4927+ </summary>
4928+ </member>
4929+ <member name="F:MSBuild.Community.Tasks.IIS.AppPoolControllerActions.Start">
4930+ <summary>Start the applicaiton pool</summary>
4931+ </member>
4932+ <member name="F:MSBuild.Community.Tasks.IIS.AppPoolControllerActions.Stop">
4933+ <summary>Stop the applicaiton pool</summary>
4934+ </member>
4935+ <member name="F:MSBuild.Community.Tasks.IIS.AppPoolControllerActions.Restart">
4936+ <summary>Restart the applicaiton pool</summary>
4937+ </member>
4938+ <member name="F:MSBuild.Community.Tasks.IIS.AppPoolControllerActions.Recycle">
4939+ <summary>Recycle the applicaiton pool</summary>
4940+ </member>
4941+ <member name="T:MSBuild.Community.Tasks.IIS.AppPoolController">
4942+ <summary>
4943+ Allows control for an application pool on a local or remote machine with IIS installed. The default is
4944+ to control the application pool on the local machine. If connecting to a remote machine, you can
4945+ specify the <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Username"/> and <see cref="P:MSBuild.Community.Tasks.IIS.WebBase.Password"/> for the task
4946+ to run under.
4947+ </summary>
4948+ <example>Restart an application pool on the local machine.
4949+ <code><![CDATA[
4950+ <AppPoolController AppPoolName="MyAppPool" Action="Restart" />
4951+ ]]></code>
4952+ </example>
4953+ </member>
4954+ <member name="M:MSBuild.Community.Tasks.IIS.AppPoolController.Execute">
4955+ <summary>
4956+ When overridden in a derived class, executes the task.
4957+ </summary>
4958+ <returns>
4959+ True if the task successfully executed; otherwise, false.
4960+ </returns>
4961+ </member>
4962+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolController.ApplicationPoolName">
4963+ <summary>
4964+ Gets or sets the name of the app pool.
4965+ </summary>
4966+ <value>The name of the app pool.</value>
4967+ </member>
4968+ <member name="P:MSBuild.Community.Tasks.IIS.AppPoolController.Action">
4969+ <summary>
4970+ Gets or sets the application pool action.
4971+ </summary>
4972+ <value>The application pool action.</value>
4973+ <enum cref="T:MSBuild.Community.Tasks.IIS.AppPoolControllerActions"/>
4974+ </member>
4975+ <member name="T:MSBuild.Community.Tasks.Mail">
4976+ <summary>
4977+ Sends an email message
4978+ </summary>
4979+ <example>Example of sending an email.
4980+ <code><![CDATA[
4981+ <Target Name="Mail">
4982+ <Mail SmtpServer="localhost"
4983+ To="user@email.com"
4984+ From="from@email.com"
4985+ Subject="Test Mail Task"
4986+ Body="This is a test of the mail task." />
4987+ </Target>
4988+ ]]></code>
4989+ </example>
4990+ </member>
4991+ <member name="M:MSBuild.Community.Tasks.Mail.#ctor">
4992+ <summary>
4993+ Initializes a new instance of the <see cref="T:Mail"/> class.
4994+ </summary>
4995+ </member>
4996+ <member name="M:MSBuild.Community.Tasks.Mail.Execute">
4997+ <summary>Sends an email message</summary>
4998+ <returns>Returns true if successful</returns>
4999+ </member>
5000+ <member name="P:MSBuild.Community.Tasks.Mail.Attachments">
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: