Undo changes to baseline

This commit is contained in:
Pranav K 2020-02-05 10:07:51 -08:00
parent 65fb07fe26
commit 58fd885ffe
No known key found for this signature in database
GPG Key ID: F748807460A27E91
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
<AspNetCoreBaselineVersion>3.1.2</AspNetCoreBaselineVersion> <AspNetCoreBaselineVersion>3.1.1</AspNetCoreBaselineVersion>
</PropertyGroup> </PropertyGroup>
<!-- Package: AspNetCoreRuntime.3.0.x64--> <!-- Package: AspNetCoreRuntime.3.0.x64-->
<PropertyGroup Condition=" '$(PackageId)' == 'AspNetCoreRuntime.3.0.x64' "> <PropertyGroup Condition=" '$(PackageId)' == 'AspNetCoreRuntime.3.0.x64' ">

View File

@ -15,10 +15,10 @@
<!-- Targeting pack version should be the one we just built, if we're building it. Otherwise we use the baseline version --> <!-- Targeting pack version should be the one we just built, if we're building it. Otherwise we use the baseline version -->
<PropertyGroup> <PropertyGroup>
<MicrosoftAspNetCoreAppRefPackageVersion Condition="'$(IsTargetingPackBuilding)' != 'false'">%(_TargetingPackVersionInfo.PackageVersion)</MicrosoftAspNetCoreAppRefPackageVersion> <MicrosoftAspNetCoreAppRefPackageVersion Condition="'$(IsTargetingPackBuilding)' != 'false'">%(_TargetingPackVersionInfo.PackageVersion)</MicrosoftAspNetCoreAppRefPackageVersion>
<MicrosoftAspNetCoreAppRefPackageVersion Condition="'$(IsTargetingPackBuilding)' == 'false'">$(AspNetCoreBaselineVersion)</MicrosoftAspNetCoreAppRefPackageVersion> <MicrosoftAspNetCoreAppRefPackageVersion Condition="'$(IsTargetingPackBuilding)' == 'false'">$(MicrosoftAspNetCoreAppRefPackageVersion)</MicrosoftAspNetCoreAppRefPackageVersion>
<!-- For blazor-wasm we want the runtime to match the baseline, as we want to target the latest released asp.net core app --> <!-- For blazor-wasm we want the runtime to match the baseline, as we want to target the latest released asp.net core app -->
<MicrosoftAspNetCoreAppRuntimePackageVersion>$(AspNetCoreBaselineVersion)</MicrosoftAspNetCoreAppRuntimePackageVersion> <MicrosoftAspNetCoreAppRuntimePackageVersion>$(MicrosoftAspNetCoreAppVersion)</MicrosoftAspNetCoreAppRuntimePackageVersion>
</PropertyGroup> </PropertyGroup>
<!-- Runtime and Ref packs may have separate versions. --> <!-- Runtime and Ref packs may have separate versions. -->