Skip to content

Commit a002cbf

Browse files
authored
Merge pull request #2228 from dseefeld/5.0.204-jun2021
Update to the 5.0.7 / 5.0.204 release
2 parents c707c3d + baf7bc6 commit a002cbf

8 files changed

+44
-58
lines changed

.vsts.pipelines/jobs/ci-linux.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,9 @@ jobs:
228228
df -h
229229
$(docker.run) $(docker.tb.map) $(docker.drop.map) $(docker.tb.work) $(imageName) /bin/bash -c '
230230
mkdir -p /drop/tarball/
231-
# Make one .tar.gz for build, another for extras necessary to smoke test:
232-
tar --numeric-owner -zcf "/drop/tarball/$(baseTarballName).tar.gz" "$(baseTarballName)"'
231+
smokeTestPackages="$(baseTarballName)/packages/smoke-test-packages"
232+
# Make base .tar.gz for build:
233+
tar --numeric-owner "--exclude=$smokeTestPackages" -zcf "/drop/tarball/$(baseTarballName).tar.gz" "$(baseTarballName)"'
233234
du -h $(rootDirectory) | sort -h | tail -n 50
234235
displayName: Copy base tarball to output
235236
condition: and(succeeded(), eq(variables['sb.baseTarball'], true))

build.sh

+9-8
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,16 @@ if [ "${internalPackageFeedPat:-}" ]; then
108108
# TODO: Read these from nuget.config
109109
# The internal transport isn't added by Darc, though, so it will still need special-casing.
110110
export VSS_NUGET_EXTERNAL_FEED_ENDPOINTS='{"endpointCredentials": [
111-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-aspnetcore-b7a2ec8c/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
112-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-roslyn-analyzers-ce71b27b/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
113-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-runtime-2f740adc-5/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
114-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-runtime-2f740adc-4/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
115-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-runtime-2f740adc-3/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
116-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-runtime-2f740adc/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
117-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-aspnetcore-f3eeec88/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
111+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-roslyn-analyzers-755ceda7/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
112+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-runtime-556582d9-3/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
113+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-runtime-556582d9-2/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
114+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-3cdb1866-1/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
115+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-3cdb1866/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
116+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-aspnetcore-67acc3d3/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
117+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-aspnetcore-67acc3d3-1/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
118+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/darc-int-dotnet-aspnetcore-67acc3d3-2/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
118119
{"endpoint":"https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet5-internal-transport/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"},
119-
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/5.0.203-servicing.21222.11-shipping/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"}
120+
{"endpoint":"https://pkgs.dev.azure.com/dnceng/_packaging/5.0.204-servicing.21263.62-shipping/nuget/v3/index.json", "username":"optional", "password":"'$internalPackageFeedPat'"}
120121
]}'
121122
fi
122123

eng/Version.Details.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
<Sha>6a15056a9d71169bf04d007301edfd558afcfa6a</Sha>
2828
<RepoName>linker</RepoName>
2929
</Dependency>
30-
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="5.0.6" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
30+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="5.0.7" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
3131
<Uri>https://github.com/dotnet/runtime</Uri>
32-
<Sha>478b2f8c0e480665f6c52c95cd57830784dc9560</Sha>
32+
<Sha>556582d964cc21b82a88d7154e915076f6f9008e</Sha>
3333
<RepoName>runtime</RepoName>
3434
<RepoName>runtime-portable</RepoName>
3535
</Dependency>
36-
<Dependency Name="Microsoft.DotNet.Common.ItemTemplates" Version="5.0.203" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
36+
<Dependency Name="Microsoft.DotNet.Common.ItemTemplates" Version="5.0.204" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
3737
<Uri>https://github.com/dotnet/templating</Uri>
38-
<Sha>50e1aa014b0b35cb9aa2c5157d054ee654949dff</Sha>
38+
<Sha>3cdb1866b853838a7881187b994836b98d240d0a</Sha>
3939
</Dependency>
4040
<Dependency Name="Microsoft.DotNet.Test.ProjectTemplates.5.0" Version="1.0.2-beta4.20420.1">
4141
<Uri>https://github.com/dotnet/test-templates</Uri>
@@ -63,9 +63,9 @@
6363
<Sha>d525b0e670f3b6cbd5c73a35f04730a9f658c852</Sha>
6464
<RepoName>nuget-client</RepoName>
6565
</Dependency>
66-
<Dependency Name="Microsoft.NET.Sdk" Version="5.0.203-servicing.21222.11" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
66+
<Dependency Name="Microsoft.NET.Sdk" Version="5.0.204-servicing.21263.30" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
6767
<Uri>https://github.com/dotnet/sdk</Uri>
68-
<Sha>b8025906f7463b6e477893c81238dc7003b353a3</Sha>
68+
<Sha>b4ddf0facd49caab999e4accd6cb82d5e599bf5e</Sha>
6969
<RepoName>sdk</RepoName>
7070
</Dependency>
7171
<Dependency Name="Microsoft.DotNet.Cli.CommandLine" Version="1.0.0-preview.19208.1" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
@@ -83,9 +83,9 @@
8383
<Uri>https://github.com/dotnet/xliff-tasks</Uri>
8484
<Sha>d2bec3a64076f8463de4756913712badfce0a01d</Sha>
8585
</Dependency>
86-
<Dependency Name="dotnet-dev-certs" Version="5.0.6-servicing.21221.2" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
86+
<Dependency Name="dotnet-dev-certs" Version="5.0.7-servicing.21263.9" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
8787
<Uri>https://github.com/dotnet/aspnetcore</Uri>
88-
<Sha>f3eeec88e64270e9e783d713fea8503f28b1a932</Sha>
88+
<Sha>67acc3d331454956fc06d6de2218a625e3e596f8</Sha>
8989
<RepoName>aspnetcore</RepoName>
9090
</Dependency>
9191
<Dependency Name="Microsoft.FSharp.Compiler" Version="11.3.2-beta.21102.9" CoherentParentDependency="Microsoft.Dotnet.Sdk.Internal">
@@ -96,9 +96,9 @@
9696
<Uri>https://github.com/microsoft/vstest</Uri>
9797
<Sha>99b911a57a02fc5d2eeef23e9ab8cbea4505678b</Sha>
9898
</Dependency>
99-
<Dependency Name="Microsoft.Dotnet.Sdk.Internal" Version="5.0.203-servicing.21222.11">
99+
<Dependency Name="Microsoft.Dotnet.Sdk.Internal" Version="5.0.204-servicing.21263.62">
100100
<Uri>https://github.com/dotnet/installer</Uri>
101-
<Sha>b5f47e6c6aa198df48121dc3076c9626f50b116e</Sha>
101+
<Sha>84d1fe1bb7a65f28ca55d2f85b3b024ff3ddaa9e</Sha>
102102
<RepoName>installer</RepoName>
103103
</Dependency>
104104
<Dependency Name="Microsoft.Diagnostics.NETCore.Client" Version="0.2.0-preview.20419.2">

eng/Versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
<PrivateSourceBuildReferencePackagesPackageVersion>1.0.0-beta.20623.1</PrivateSourceBuildReferencePackagesPackageVersion>
2525
</PropertyGroup>
2626
<PropertyGroup>
27-
<PrivateSourceBuiltArtifactsPackageVersion>0.1.0-5.0.202-1088763-20210414.1</PrivateSourceBuiltArtifactsPackageVersion>
27+
<PrivateSourceBuiltArtifactsPackageVersion>0.1.0-5.0.203-1135543-20210512.3</PrivateSourceBuiltArtifactsPackageVersion>
2828
</PropertyGroup>
2929
</Project>

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"tools": {
3-
"dotnet": "5.0.202"
3+
"dotnet": "5.0.203"
44
},
55
"msbuild-sdks": {
66
"Microsoft.Build.CentralPackageVersions": "2.0.1",

patches/aspnetcore/0007-Support-global.json-on-arm64-as-well.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ index 2ad8434449..4a0820d7fd 100644
2424
+++ b/global.json
2525
@@ -5,13 +5,10 @@
2626
"tools": {
27-
"dotnet": "5.0.202",
27+
"dotnet": "5.0.203",
2828
"runtimes": {
2929
- "dotnet/x64": [
3030
+ "dotnet": [
31-
"2.1.27",
31+
"2.1.28",
3232
"$(MicrosoftNETCoreAppInternalPackageVersion)"
3333
],
3434
- "dotnet/x86": [
3535
- "$(MicrosoftNETCoreAppInternalPackageVersion)"
3636
- ],
3737
"aspnetcore/x64": [
38-
"3.1.14"
38+
"3.1.15"
3939
]
4040
--
4141
2.18.0

smoke-testNuGet.Config

-11
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,6 @@
22
<configuration>
33
<packageSources>
44
<clear />
5-
<!-- Begin: Package sources from dotnet-roslyn-analyzers -->
6-
<add key="darc-pub-dotnet-roslyn-analyzers-ce71b27" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-roslyn-analyzers-ce71b27b/nuget/v3/index.json" />
7-
<!-- End: Package sources from dotnet-roslyn-analyzers -->
8-
<!-- Begin: Package sources from dotnet-templating -->
9-
<add key="darc-pub-dotnet-templating-8470ff3-4" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-8470ff31-4/nuget/v3/index.json" />
10-
<add key="darc-pub-dotnet-templating-8470ff3-3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-8470ff31-3/nuget/v3/index.json" />
11-
<add key="darc-pub-dotnet-templating-8470ff3-2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-8470ff31-2/nuget/v3/index.json" />
12-
<add key="darc-pub-dotnet-templating-8470ff3-1" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-8470ff31-1/nuget/v3/index.json" />
13-
<add key="darc-pub-dotnet-templating-8470ff3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-8470ff31/nuget/v3/index.json" />
14-
<!-- End: Package sources from dotnet-templating -->
15-
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
165
<add key="source-built-packages" value="SOURCE_BUILT_PACKAGES" />
176
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public%40Local/nuget/v3/index.json" />
187
</packageSources>

tools-local/prebuilt-baseline-online.xml

+17-22
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,35 @@
44
<Dir>artifacts/src/ApplicationInsights-dotnet.53b80940842204f78708a538628288ff5d741a1d/</Dir>
55
<Dir>artifacts/src/arcade.6eec4404c2df5bfa46e5da52383c881c5cca3a9f/</Dir>
66
<Dir>artifacts/src/xdt.c01a538851a8ab1a1fbeb2e6243f391fff7587b4/</Dir>
7-
<Dir>artifacts/src/dotnet-aspnetcore.b7a2ec8c7ed6b48857af0a69688a73e8c14fe6cb/</Dir>
7+
<Dir>artifacts/src/dotnet-aspnetcore.67acc3d331454956fc06d6de2218a625e3e596f8/</Dir>
88
<Dir>artifacts/src/CliCommandLineParser.0e89c2116ad28e404ba56c14d1c3f938caa25a01/</Dir>
99
<Dir>artifacts/src/command-line-api.6ddde11ed45e3f4b9d80c97670f347dbfda15c3f/</Dir>
1010
<Dir>artifacts/src/common.6e37cdfe96ac8b06a923242120169fafacd720e6/</Dir>
1111
<Dir>artifacts/src/cssparser.d6d86bcd8c162b1ae22ef00955ff748d028dd0ee/</Dir>
1212
<Dir>artifacts/src/diagnostics.47296ca69bb66180c132f3b16667f904dfc7c6c7/</Dir>
1313
<Dir>artifacts/src/fsharp.7ce7132f1459095e635194d09d6f73265352029a/</Dir>
1414
<Dir>artifacts/src/Humanizer.b30550eed103a6970d8465fe7c5c16300b70be81/</Dir>
15-
<Dir>artifacts/src/dotnet-installer.db7cc87d512335808e3806067f2bf9b31379e1db/</Dir>
15+
<Dir>artifacts/src/dotnet-installer.84d1fe1bb7a65f28ca55d2f85b3b024ff3ddaa9e/</Dir>
1616
<Dir>artifacts/src/known-good-tests./</Dir>
1717
<Dir>artifacts/src/known-good./</Dir>
18-
<Dir>artifacts/src/linker.c43f981eec336c1dc4fd0ead84b5e09db9377d9e/</Dir>
18+
<Dir>artifacts/src/linker.6a15056a9d71169bf04d007301edfd558afcfa6a/</Dir>
1919
<Dir>artifacts/src/msbuild.5e4b48a27efce55a613664b58d353ab4c8d1f6c1/</Dir>
2020
<Dir>src/netcorecli-fsc/</Dir>
2121
<Dir>artifacts/src/Newtonsoft.Json.cac0690ad133c5e166ce5642dc71175791404fad/</Dir>
2222
<Dir>artifacts/src/Newtonsoft.Json.e43dae94c26f0c30e9095327a3a9eac87193923d/</Dir>
2323
<Dir>artifacts/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/</Dir>
2424
<Dir>src/package-source-build/</Dir>
25-
<Dir>artifacts/src/roslyn-analyzers.ce71b27be743710012c0460071da188b2f05959c/</Dir>
25+
<Dir>artifacts/src/roslyn-analyzers.755ceda71eaa7f2356fa0f310fea13bb529266f5/</Dir>
2626
<Dir>artifacts/src/roslyn.59eedc33d35754759994155ea2f4e1012a9951e3/</Dir>
27-
<Dir>artifacts/src/dotnet-runtime.2f740adc1457e8a28c1c072993b66f515977eb51/</Dir>
28-
<Dir>artifacts/src/dotnet-runtime.2f740adc1457e8a28c1c072993b66f515977eb51/</Dir>
29-
<Dir>artifacts/src/dotnet-sdk.51369266643769f9f0c1184e89715cd1045126d0/</Dir>
27+
<Dir>artifacts/src/dotnet-runtime.556582d964cc21b82a88d7154e915076f6f9008e/</Dir>
28+
<Dir>artifacts/src/dotnet-runtime.556582d964cc21b82a88d7154e915076f6f9008e/</Dir>
29+
<Dir>artifacts/src/dotnet-sdk.b4ddf0facd49caab999e4accd6cb82d5e599bf5e/</Dir>
3030
<Dir>artifacts/src/sourcelink.f175b06862f889474b689a57527e489101c774cc/</Dir>
3131
<Dir>artifacts/src/symreader.f8a3ba85aed339fb8d08ca26f3876b28c32d58ee/</Dir>
32-
<Dir>artifacts/src/templating.8470ff317250d761c72f920b8ea1c0700b230eb3/</Dir>
33-
<Dir>artifacts/src/test-templates.956e14dedd3a3ac981b320d66c6d389387a2954a/</Dir>
32+
<Dir>artifacts/src/templating.3cdb1866b853838a7881187b994836b98d240d0a/</Dir>
33+
<Dir>artifacts/src/test-templates.a2b05d8171915c69ad97ab5d49bbb07d2c780a67/</Dir>
3434
<Dir>artifacts/src/vstest.99b911a57a02fc5d2eeef23e9ab8cbea4505678b/</Dir>
35-
<Dir>artifacts/src/xliff-tasks.a52f3d7fb58470749ee4035fbbcb7e63c78b0459/</Dir>
35+
<Dir>artifacts/src/xliff-tasks.d2bec3a64076f8463de4756913712badfce0a01d/</Dir>
3636
<Dir>Tools/</Dir>
3737
<Dir>tools-local/tasks/</Dir>
3838
<Dir>artifacts/obj/</Dir>
@@ -76,33 +76,30 @@
7676
<Usage Id="Microsoft.CodeAnalysis.Common" Version="3.8.0" IsDirectDependency="true" />
7777
<Usage Id="Microsoft.CodeAnalysis.CSharp" Version="2.9.0" IsDirectDependency="true" />
7878
<Usage Id="Microsoft.CodeAnalysis.CSharp" Version="3.4.0" IsDirectDependency="true" />
79-
<Usage Id="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="3.8.0-5.20519.18" IsDirectDependency="true" />
8079
<Usage Id="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="3.8.0" IsDirectDependency="true" />
81-
<Usage Id="Microsoft.CodeAnalysis.VisualBasic.CodeStyle" Version="3.8.0-5.20519.18" IsDirectDependency="true" />
8280
<Usage Id="Microsoft.CodeAnalysis.VisualBasic.CodeStyle" Version="3.8.0" IsDirectDependency="true" />
8381
<Usage Id="Microsoft.CSharp" Version="4.0.1" IsDirectDependency="true" />
8482
<Usage Id="Microsoft.CSharp" Version="4.3.0" IsDirectDependency="true" />
8583
<Usage Id="Microsoft.Docker.Sdk" Version="1.1.0" />
8684
<Usage Id="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20426.4" />
8785
<Usage Id="Microsoft.DotNet.Common.ItemTemplates" Version="1.0.2-beta3" />
8886
<Usage Id="Microsoft.DotNet.Common.ItemTemplates" Version="2.0.0-preview8.19373.1" />
89-
<Usage Id="Microsoft.DotNet.Common.ItemTemplates" Version="3.1.10" />
87+
<Usage Id="Microsoft.DotNet.Common.ItemTemplates" Version="3.1.15" />
9088
<Usage Id="Microsoft.DotNet.PlatformAbstractions" Version="2.1.0" />
9189
<Usage Id="Microsoft.DotNet.SignTool" Version="5.0.0-beta.20426.4" IsDirectDependency="true" IsAutoReferenced="true" />
9290
<Usage Id="microsoft.dotnet.templateLocator" Version="5.0.100-rc.1.20421.19" />
93-
<Usage Id="Microsoft.DotNet.Web.ItemTemplates" Version="2.1.27" />
91+
<Usage Id="Microsoft.DotNet.Web.ItemTemplates" Version="2.1.28" />
9492
<Usage Id="Microsoft.DotNet.Web.ItemTemplates" Version="3.0.1" />
95-
<Usage Id="Microsoft.DotNet.Web.ItemTemplates" Version="3.1.14" />
96-
<Usage Id="Microsoft.DotNet.Web.ProjectTemplates.2.1" Version="2.1.27" />
93+
<Usage Id="Microsoft.DotNet.Web.ItemTemplates" Version="3.1.15" />
94+
<Usage Id="Microsoft.DotNet.Web.ProjectTemplates.2.1" Version="2.1.28" />
9795
<Usage Id="Microsoft.DotNet.Web.ProjectTemplates.3.0" Version="3.0.1" />
98-
<Usage Id="Microsoft.DotNet.Web.ProjectTemplates.3.1" Version="3.1.14" />
99-
<Usage Id="Microsoft.DotNet.Web.Spa.ProjectTemplates.2.1" Version="2.1.27" />
96+
<Usage Id="Microsoft.DotNet.Web.ProjectTemplates.3.1" Version="3.1.15" />
97+
<Usage Id="Microsoft.DotNet.Web.Spa.ProjectTemplates.2.1" Version="2.1.28" />
10098
<Usage Id="Microsoft.DotNet.Web.Spa.ProjectTemplates.3.0" Version="3.0.1" />
101-
<Usage Id="Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1" Version="3.1.14" />
99+
<Usage Id="Microsoft.DotNet.Web.Spa.ProjectTemplates.3.1" Version="3.1.15" />
102100
<Usage Id="Microsoft.Extensions.DependencyInjection" Version="5.0.0" />
103101
<Usage Id="Microsoft.Extensions.DependencyModel" Version="2.1.0" IsDirectDependency="true" />
104102
<Usage Id="Microsoft.Extensions.DependencyModel" Version="3.1.6" IsDirectDependency="true" />
105-
<Usage Id="Microsoft.FSharp.Compiler" Version="11.3.2-beta.21102.9" IsDirectDependency="true" />
106103
<Usage Id="Microsoft.NET.Sdk.IL" Version="5.0.0-preview.8.20359.4" />
107104
<Usage Id="Microsoft.NETCore.App" Version="2.0.0" IsDirectDependency="true" IsAutoReferenced="true" />
108105
<Usage Id="Microsoft.NETCore.App" Version="2.1.0" IsDirectDependency="true" IsAutoReferenced="true" />
@@ -240,7 +237,6 @@
240237
<Usage Id="System.Collections.Specialized" Version="4.3.0" IsDirectDependency="true" />
241238
<Usage Id="System.ComponentModel" Version="4.3.0" />
242239
<Usage Id="System.ComponentModel.Annotations" Version="4.7.0" />
243-
<Usage Id="System.ComponentModel.Composition" Version="4.5.0" IsDirectDependency="true" />
244240
<Usage Id="System.ComponentModel.Primitives" Version="4.3.0" />
245241
<Usage Id="System.ComponentModel.TypeConverter" Version="4.3.0" IsDirectDependency="true" />
246242
<Usage Id="System.Composition" Version="1.0.31" />
@@ -393,7 +389,6 @@
393389
<Usage Id="System.Security.Cryptography.X509Certificates" Version="4.1.0" />
394390
<Usage Id="System.Security.Cryptography.X509Certificates" Version="4.3.0" />
395391
<Usage Id="System.Security.Cryptography.Xml" Version="4.7.0" />
396-
<Usage Id="System.Security.Permissions" Version="4.5.0" />
397392
<Usage Id="System.Security.Permissions" Version="4.7.0" />
398393
<Usage Id="System.Security.Principal" Version="4.0.1" />
399394
<Usage Id="System.Security.Principal" Version="4.3.0" />

0 commit comments

Comments
 (0)