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>2015-10-19 07:12:23 +0300
committerEric St. John <ericstj@microsoft.com>2015-10-19 07:12:23 +0300
commit0931c347eb836c9da94d0d5ff9ad7a14403b9738 (patch)
treea6e0fda32f1734bc167af71d411b1fac7fc37cdf /src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
parent3bedc54e35ecc6d334086caced4e49d265c769db (diff)
Switch from using "dotnet" to using "dotnet<generation>"
All projects that previously used dotnet have been updated to specify the appropriate generation of the surface area they depend on or in the case of desktop inbox contracts, the generation that includes the set of platforms they can support. Now all packages contain all generations of API that they have ever shipped. In doing this I needed to change how we determine package version. Before we ensured all assemblies would have the same version and used that. Now we choose the max. Additionally I needed to change how we chose which asset to use for netcore50 when the dotnet asset was obscured by a placeholder for a previous netcore release (eg System.Runtime will have placeholders for Win8 since it was inbox there). To do this I wrote a task that uses nuget to evaluate the package assets with and without the placeholders. In this way it chooses the "best" dotnet implementation and reference assembly to use for netcore50. This new model made my old MSBuild-based validation impossible to carry forward, so I wrote better validation in a task that actually uses Nuget's asset resolution algorithm. This uncovered many existing issues in packages that I have cleaned up. The validation algorithm could use some polish but its working now. Perf is not great, package build went from 15s to ~2 minutes. I'll work on this some more by making it incremental (input: nuspec, output: marker created on success). Profiling shows that most of the time is spent in calling the nuget APIs. I'll see if I can reduce some of this with caching for things that don't change (eg: RID graph). Ultimately I think its a reasonable tradeoff for the types of bugs I can find this way. [tfs-changeset: 1539216]
Diffstat (limited to 'src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj')
-rw-r--r--src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj b/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
index aee0a98ffa..b51a089afd 100644
--- a/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
+++ b/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj
@@ -4,6 +4,7 @@
<PropertyGroup>
<AssemblyVersion>4.1.1.0</AssemblyVersion>
<OutputType>Library</OutputType>
+ <PackageTargetFramework>dotnet5.4</PackageTargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="System.Numerics.Vectors.cs" />