Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2016-04-27 23:41:59 +0300
committerEric St. John <ericstj@microsoft.com>2016-04-28 20:11:26 +0300
commit09a43a53ce9d675cf89ceea49ddd2cc34fae3380 (patch)
treebd1e4174481afaafd0ad854f50d4c374fa990478 /src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
parentbe54b97a6e3f39202b84a355267caf909a00e7e7 (diff)
Make System.Numerics.Vectors target netstandard1.0
Previously we targeted netstandard 1.3 because this contract was added inbox to .NET 4.6, however we need not constrain this to 1.3 since the implementation can be used back to NET 4.5/wp8/wpa81. This updates BuildToolsVersion to stop forcing NS1.3 for this contract, and retargets the library to netstandard1.0.
Diffstat (limited to 'src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj')
-rw-r--r--src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj b/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
index 0f1eabbce1..138a08c7e7 100644
--- a/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
+++ b/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
@@ -4,20 +4,10 @@
<PropertyGroup>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<OutputType>Library</OutputType>
- <NuGetTargetMoniker>.NETStandard,Version=v1.1</NuGetTargetMoniker>
- <!-- remove when fixing https://github.com/dotnet/corefx/issues/5900 -->
- <SkipValidatePackageTargetFramework>true</SkipValidatePackageTargetFramework>
+ <NuGetTargetMoniker>.NETStandard,Version=v1.0</NuGetTargetMoniker>
+ <PackageTargetFramework>netstandard1.0</PackageTargetFramework>
</PropertyGroup>
- <ItemGroup Condition="'$(PackageTargetFramework)' == ''">
- <PackageDestination Include="ref/netstandard1.1">
- <TargetFramework>netstandard1.1</TargetFramework>
- </PackageDestination>
- <PackageDestination Include="ref/portable-net45+win8">
- <TargetFramework>portable-net45+win8</TargetFramework>
- </PackageDestination>
- </ItemGroup>
-
<ItemGroup>
<Compile Include="System.Numerics.Vectors.cs" />
</ItemGroup>