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 Mellino <erme@microsoft.com>2017-01-25 04:03:12 +0300
committerEric Mellino <erme@microsoft.com>2017-01-25 04:03:12 +0300
commit35987a82d7b0d82de8726f60d7a7addc7f33300f (patch)
treeb99bf99b037b3c12183becba5464affacec4763e /build.proj
parent9ab794fb198ef846bb390efdc28b69fd2bed4137 (diff)
Remove extraneous test-related info from build.proj
This information is now all contained in src/tests.builds
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj30
1 files changed, 0 insertions, 30 deletions
diff --git a/build.proj b/build.proj
index f7a8490c8f..ddfa66d63f 100644
--- a/build.proj
+++ b/build.proj
@@ -8,15 +8,9 @@
</PropertyGroup>
<PropertyGroup>
- <GenerateCodeCoverageReportForAll>true</GenerateCodeCoverageReportForAll>
- </PropertyGroup>
-
- <PropertyGroup>
<BuildPackages Condition="'$(BuildPackages)'==''">true</BuildPackages>
</PropertyGroup>
- <Import Project="$(ToolsDir)CodeCoverage.targets" Condition="Exists('$(ToolsDir)CodeCoverage.targets')" />
- <Import Project="$(ToolsDir)PerfTesting.targets" Condition="Exists('$(ToolsDir)PerfTesting.targets') and '$(Performance)' == 'true'"/>
<Import Project="$(ToolsDir)VersionTools.targets" Condition="Exists('$(ToolsDir)VersionTools.targets')" />
<ItemGroup>
@@ -25,13 +19,6 @@
<!-- signing must happen before packaging -->
<Project Include="src\sign.builds" />
<Project Include="src\packages.builds" Condition="'$(BuildPackages)'=='true'" />
-
- <!--
- <Project Include="src\post.builds">
- <!- For the root traversal default filter the OSGroup to the OSEnvironment which is the OS we are running on -!>
- <FilterToOSGroup Condition="'$(_OriginalOSGroup)' == ''">$(OSEnvironment)</FilterToOSGroup>
- </Project>
- -->
</ItemGroup>
<Import Project="dir.targets" />
@@ -81,23 +68,6 @@
<Message Importance="High" Text="Validating configurations for projects ... Done." />
</Target>
- <!-- TODO: Can we move this archive test build to BuildTools -->
- <UsingTask TaskName="ZipFileCreateFromDependencyLists" Condition="'$(Platform)' == 'ARM64' and '$(ArchiveTests)' == 'true'" AssemblyFile="$(BuildToolsTaskDir)Microsoft.DotNet.Build.Tasks.dll"/>
- <Target Name="ArchiveTestBuild" Condition="'$(Platform)' == 'ARM64' and '$(ArchiveTests)' == 'true'" AfterTargets="Build" >
- <ItemGroup>
- <ExcludeFromArchive Include="nupkg$" />
- <ExcludeFromArchive Include="Microsoft.DotNet.BuildTools" />
- <ExcludeFromArchive Include="TestData" />
- <TestDependencyListFile Include="$(BinDir)/TestDependencies/*.dependencylist.txt" />
- </ItemGroup>
-
- <ZipFileCreateFromDependencyLists
- DependencyListFiles="@(TestDependencyListFile)"
- DestinationArchive="$(TestWorkingDir)$(OSPlatformConfig)/archive/Packages.zip"
- RelativePathBaseDirectory="$(PackagesDir)"
- OverwriteDestination="true" />
- </Target>
-
<!-- Override CleanAllProjects from dir.traversal.targets and just remove the full BinDir -->
<Target Name="CleanAllProjects">
<RemoveDir Directories="$(BinDir)" />