Add bundled version information for targeting .NET Standard 2.1

This commit is contained in:
Daniel Plaisted 2019-02-12 16:48:43 -08:00
parent 08fa739d05
commit 25b7ea2285
3 changed files with 15 additions and 0 deletions

View file

@ -26,6 +26,10 @@
<Uri>https://github.com/dotnet/toolset</Uri>
<Sha>536d6a237f4de7b248e75b63256b75c1798e1bd7</Sha>
</Dependency>
<Dependency Name="NETStandard.Library" Version="2.1.0-prerelease.19078.1">
<Uri>https://github.com/dotnet/standard</Uri>
<Sha></Sha>
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19107.1">

View file

@ -31,6 +31,9 @@
<MicrosoftNETCoreAppPackageVersion>3.0.0-preview-27408-1</MicrosoftNETCoreAppPackageVersion>
<MicrosoftNETCoreDotNetHostResolverPackageVersion>$(MicrosoftNETCoreAppPackageVersion)</MicrosoftNETCoreDotNetHostResolverPackageVersion>
</PropertyGroup>
<PropertyGroup>
<NETStandardLibraryPackageVersion>2.1.0-prerelease.19078.1</NETStandardLibraryPackageVersion>
</PropertyGroup>
<PropertyGroup>
<MicrosoftDotNetCommonItemTemplatesPackageVersion>1.0.2-beta5.19066.2</MicrosoftDotNetCommonItemTemplatesPackageVersion>
<MicrosoftDotNetCommonProjectTemplates30PackageVersion>$(MicrosoftDotNetCommonItemTemplatesPackageVersion)</MicrosoftDotNetCommonProjectTemplates30PackageVersion>

View file

@ -235,6 +235,14 @@ Copyright (c) .NET Foundation. All rights reserved.
RuntimePackNamePatterns="runtime.**RID**.Microsoft.AspNetCore.App"
RuntimePackRuntimeIdentifiers="@(AspNetCoreRuntimePackRids, '%3B')"
/>
<KnownFrameworkReference Include="NETStandard.Library"
TargetFramework="netstandard2.1"
TargetingPackName="NETStandard.Library"
TargetingPackVersion="$(NETStandardLibraryPackageVersion)"
TargetingPackFormat="NETStandardLegacy"
/>
</ItemGroup>
</Project>
]]>