Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric StJohn <ericstj@microsoft.com>2015-05-27 22:03:56 +0300
committerEric StJohn <ericstj@microsoft.com>2015-05-27 22:03:56 +0300
commitd3cc46b910f313dd63b96949c3890949dc574432 (patch)
tree362caa435cebdf4681ac9b3e4d52a67d60812726 /src/dirs.proj
parent6c4716065fd65e35cd860e7f5b546da5d697c380 (diff)
Update traversal project to include more test projects.
The previous pattern was missing src\System.Diagnostics.FileVersionInfo\testAssembly which caused this project to be excluded from RestorePackages since it doesn't recurse project references. We could change RestorePackages to recurse, but that'd require changes to build tools and hurt build perf. For now I'll just update the filter.
Diffstat (limited to 'src/dirs.proj')
-rw-r--r--src/dirs.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dirs.proj b/src/dirs.proj
index 86fd0da794..7658882ff1 100644
--- a/src/dirs.proj
+++ b/src/dirs.proj
@@ -5,8 +5,8 @@
<ItemGroup>
<Project Include="*\src\*.csproj" Exclude="@(ExcludeProjects)" />
<Project Include="*\src\*.vbproj" Condition="'$(IncludeVbProjects)'!='false'" Exclude="@(ExcludeProjects)" />
- <Project Include="*\tests\**\*.csproj" Exclude="@(ExcludeProjects)" />
- <Project Include="*\tests\**\*.vbproj" Condition="'$(IncludeVbProjects)'!='false'" Exclude="@(ExcludeProjects)" />
+ <Project Include="*\test*\**\*.csproj" Exclude="@(ExcludeProjects)" />
+ <Project Include="*\test*\**\*.vbproj" Condition="'$(IncludeVbProjects)'!='false'" Exclude="@(ExcludeProjects)" />
</ItemGroup>
<Import Project="..\dir.targets" />