Changes per code review...

This commit is contained in:
John Beisner 2017-07-06 11:11:07 -07:00
parent 087f1830ef
commit c617e5f0ce
2 changed files with 4 additions and 5 deletions

View file

@ -12,7 +12,7 @@
Condition=" '$(PUBLISH_TO_AZURE_BLOB)' != '' "
DependsOnTargets="Init;
Package;
RuntimeCoherence;
EvaluateRuntimeCoherence;
PublishArtifacts;
FinishBuild" />

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="RuntimeCoherence"
<Target Name="EvaluateRuntimeCoherence"
DependsOnTargets="ReadAspNetCoreSharedRuntimeVersionFile;
EvaluateRuntimeCoherence" />
CompareRuntimeVersions" />
<Target Name="ReadAspNetCoreSharedRuntimeVersionFile"
DependsOnTargets="DownloadHostAndSharedFxArtifacts">
@ -16,8 +16,7 @@
</ReadLinesFromFile>
</Target>
<Target Name="EvaluateRuntimeCoherence"
DependsOnTargets="ReadAspNetCoreSharedRuntimeVersionFile">
<Target Name="CompareRuntimeVersions">
<PropertyGroup>
<Coherent>false</Coherent>
<Coherent Condition=" '$(CLI_SharedFrameworkVersion)' == '@(AspNetCoreSharedRuntimeVersion)' ">true</Coherent>