From 4435f9f2776ae007e05f4454675e56cf76a51975 Mon Sep 17 00:00:00 2001 From: "Eric St. John" Date: Tue, 23 Feb 2016 20:18:17 -0800 Subject: Rename "dotnet" to "NETStandard" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/dotnet/corefx/issues/5707 We are changing the .NET packages to no longer use the ‘dotnet’, ‘dotnet5.x’, and ‘dnxcore50’ monikers. This is thee first stage of the change for dotnet->netstandard. The replacements are as follows Old moniker | New moniker ----------------- | ------------------ dotnet5.x | netstandard1.y (where y = x -1) DNXCore50 | netstandardapp1.5 dotnet | netstandard1.3 To prepare for this change you can do the following to your project.json. This change will require a recent build of NuGet or dotnet.exe and can be done prior to consuming the packages with the breaking change. These packages will not work with DNX. For a project targeting dotnet5.6 ``` "frameworks": { "netstandard1.5": { "imports": [ "dotnet5.6" ] } }, ``` For a project targeting dnxcore50 ``` "frameworks": { "netstandardapp1.5": { "imports": [ "dnxcore50", "portable-net45+win8" ] } }, ``` [tfs-changeset: 1578321] --- src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj') diff --git a/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj b/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj index 65f08d9e6f..0f1eabbce1 100644 --- a/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj +++ b/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj @@ -1,17 +1,17 @@ - + 4.1.1.0 Library - .NETPlatform,Version=v5.2 + .NETStandard,Version=v1.1 true - - dotnet5.2 + + netstandard1.1 portable-net45+win8 -- cgit v1.2.3