You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.69
Former-commit-id: fc39669a0b707dd3c063977486506b6793da2890
This commit is contained in:
parent
d8f8abd549
commit
e2950ec768
44
external/corert/build.proj
vendored
44
external/corert/build.proj
vendored
@@ -1,21 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="dir.props" />
|
||||
|
||||
<!-- The following properties are in place to keep the behavior of build.cmd while we work on the dev workflow steps. -->
|
||||
<!-- required to build the projects in their specified order -->
|
||||
<PropertyGroup>
|
||||
<!-- To disable the restoration of packages, set RestoreDuringBuild=false or pass /p:RestoreDuringBuild=false.-->
|
||||
<RestoreDuringBuild Condition="'$(RestoreDuringBuild)'==''">true</RestoreDuringBuild>
|
||||
<SerializeProjects>true</SerializeProjects>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<GenerateCodeCoverageReportForAll>true</GenerateCodeCoverageReportForAll>
|
||||
</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>
|
||||
<Project Include="src\Common\test-runtime\XUnit.Runtime.depproj" />
|
||||
<Project Include="src\dirs.proj" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -23,32 +17,6 @@
|
||||
|
||||
<Import Project="dir.traversal.targets" />
|
||||
|
||||
<PropertyGroup Condition="'$(RestoreDuringBuild)'=='true'">
|
||||
<TraversalBuildDependsOn>
|
||||
BatchRestorePackages;
|
||||
$(TraversalBuildDependsOn);
|
||||
</TraversalBuildDependsOn>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(ToolsDir)clean.targets" />
|
||||
|
||||
<Target Name="BatchRestorePackages">
|
||||
<MakeDir Directories="$(PackagesDir)" Condition="!Exists('$(PackagesDir)')" />
|
||||
|
||||
<Message Importance="High" Text="[$([System.DateTime]::Now.ToString('HH:mm:ss.ff'))] Restoring all packages..." />
|
||||
|
||||
<Exec Command="$(DnuRestoreCommand) @(DnuRestoreDir->'"%(Identity)"', ' ')"
|
||||
StandardOutputImportance="Low"
|
||||
CustomErrorRegularExpression="(^Unable to locate .*)|(^Updating the invalid lock file with .*)"
|
||||
ContinueOnError="ErrorAndContinue" />
|
||||
|
||||
<Message Importance="High" Text="[$([System.DateTime]::Now.ToString('HH:mm:ss.ff'))] Restoring all packages...Done." />
|
||||
</Target>
|
||||
|
||||
<!-- Override RestorePackages from dir.traversal.targets and do a batch restore -->
|
||||
<Target Name="RestorePackages" DependsOnTargets="BatchRestorePackages" />
|
||||
|
||||
<!-- Override clean from dir.traversal.targets and just remove the full BinDir unless build.[cmd|sh] has already done the cleaning -->
|
||||
<Target Name="Clean">
|
||||
<RemoveDir Condition="'$(CleanedTheBuild)' != '1'" Directories="$(ObjDir)" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user