Skip to content

Commit 2109805

Browse files
committed
Regenerate ref projects w/ PackageRefs
1 parent 09c7ecc commit 2109805

File tree

46 files changed

+109
-112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+109
-112
lines changed

eng/targets/ReferenceAssembly.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
Condition=" '@(FilteredOriginalReferences)' != '' " />
108108
<_ReferenceAssemblyItems
109109
Include="@(_ExplicitPackageReference->'&lt;PackageReference Include=&quot;%(Identity)&quot; Version=&quot;%(Version)&quot; /&gt;')"
110-
Condition=" '@(_ExplicitPackageReference)' != '' " />
110+
Condition=" '@(_ExplicitPackageReference)' != '' AND '$(DisablePackageReferenceRestrictions)' == 'true'" />
111111
<!-- Some src/ projects use Arcade SDK feature to generate InternalsVisibleTo attributes. -->
112112
<_ReferenceAssemblyItems
113113
Include="@(InternalsVisibleTo->'&lt;InternalsVisibleTo Include=&quot;%(Identity)&quot; Key=&quot;%(Key)&quot; /&gt;')"

eng/targets/ResolveReferences.targets

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,6 @@
215215
Condition="'$(DisablePackageReferenceRestrictions)' != 'true' AND @(_ExplicitPackageReference->Count()) != 0"
216216
Text="PackageReference items are not allowed. Use &lt;Reference&gt; instead to replace the reference to @(_ExplicitPackageReference, ', '). See docs/ReferenceResolution.md for more details." />
217217

218-
<ItemGroup>
219-
<_ExplicitPackageReference Remove="@(_ExplicitPackageReference)" />
220-
</ItemGroup>
221-
222218
<Warning
223219
Condition="'$(IsReferenceAssemblyProject)' != 'true' AND '$(IsServicingBuild)' != 'true' AND '%(UnusedBaselinePackageReference.Identity)' != ''"
224220
Code="BUILD001"

src/Antiforgery/ref/Microsoft.AspNetCore.Antiforgery.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
1212
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1313
<Reference Include="Microsoft.AspNetCore.WebUtilities" />
14-
<Reference Include="Microsoft.Extensions.ObjectPool" />
14+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="3.1.4" />
1515
</ItemGroup>
1616
</Project>

src/Components/Server/ref/Microsoft.AspNetCore.Components.Server.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
<Reference Include="Microsoft.AspNetCore.DataProtection.Extensions" />
1313
<Reference Include="Microsoft.AspNetCore.SignalR" />
1414
<Reference Include="Microsoft.AspNetCore.StaticFiles" />
15-
<Reference Include="Microsoft.Extensions.Caching.Memory" />
16-
<Reference Include="Microsoft.Extensions.FileProviders.Composite" />
17-
<Reference Include="Microsoft.Extensions.FileProviders.Embedded" />
18-
<Reference Include="Microsoft.Extensions.Logging" />
15+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.4" />
16+
<PackageReference Include="Microsoft.Extensions.FileProviders.Composite" Version="3.1.4" />
17+
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.4" />
18+
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.4" />
19+
<PackageReference Include="Microsoft.Extensions.ValueStopwatch.Sources" Version="3.1.4-servicing.20181.5" />
1920
</ItemGroup>
2021
</Project>

src/Hosting/Abstractions/ref/Microsoft.AspNetCore.Hosting.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<Compile Include="Microsoft.AspNetCore.Hosting.Abstractions.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Hosting.Server.Abstractions" />
99
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
10-
<Reference Include="Microsoft.Extensions.Hosting.Abstractions" />
10+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.4" />
1111
</ItemGroup>
1212
</Project>

src/Hosting/Hosting/ref/Microsoft.AspNetCore.Hosting.csproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
1111
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1212
<Reference Include="Microsoft.AspNetCore.Http" />
13-
<Reference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
14-
<Reference Include="Microsoft.Extensions.Configuration.FileExtensions" />
15-
<Reference Include="Microsoft.Extensions.Configuration" />
16-
<Reference Include="Microsoft.Extensions.DependencyInjection" />
17-
<Reference Include="Microsoft.Extensions.FileProviders.Physical" />
18-
<Reference Include="Microsoft.Extensions.FileProviders.Composite" />
19-
<Reference Include="Microsoft.Extensions.Hosting.Abstractions" />
20-
<Reference Include="Microsoft.Extensions.Logging" />
21-
<Reference Include="Microsoft.Extensions.Options" />
22-
<Reference Include="Microsoft.Extensions.TypeNameHelper.Sources" />
13+
<PackageReference Include="Microsoft.Extensions.TypeNameHelper.Sources" Version="3.1.4-servicing.20181.5" />
14+
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="3.1.4" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="3.1.4" />
16+
<PackageReference Include="Microsoft.Extensions.FileProviders.Composite" Version="3.1.4" />
17+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.4" />
18+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
19+
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.4" />
20+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.4" />
21+
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="3.1.4" />
22+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.4" />
2323
</ItemGroup>
2424
</Project>

src/Hosting/Server.Abstractions/ref/Microsoft.AspNetCore.Hosting.Server.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
77
<Compile Include="Microsoft.AspNetCore.Hosting.Server.Abstractions.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Features" />
9-
<Reference Include="Microsoft.Extensions.Configuration.Abstractions" />
9+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.4" />
1010
</ItemGroup>
1111
</Project>

src/Http/Authentication.Abstractions/ref/Microsoft.AspNetCore.Authentication.Abstractions.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
77
<Compile Include="Microsoft.AspNetCore.Authentication.Abstractions.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
9-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
10-
<Reference Include="Microsoft.Extensions.Options" />
9+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
10+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1111
</ItemGroup>
1212
</Project>

src/Http/Headers/ref/Microsoft.Net.Http.Headers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<Compile Include="Microsoft.Net.Http.Headers.netcoreapp.cs" />
88
<Compile Include="Microsoft.Net.Http.Headers.Manual.cs" />
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
10-
<Reference Include="Microsoft.Extensions.Primitives" />
10+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="3.1.4" />
1111
</ItemGroup>
1212
</Project>

src/Http/Http.Abstractions/ref/Microsoft.AspNetCore.Http.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<Compile Include="Microsoft.AspNetCore.Http.Abstractions.Manual.cs" />
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.AspNetCore.Http.Features" />
11-
<Reference Include="Microsoft.Extensions.ActivatorUtilities.Sources" />
1211
<Reference Include="Microsoft.Net.Http.Headers" />
12+
<PackageReference Include="Microsoft.Extensions.ActivatorUtilities.Sources" Version="3.1.4-servicing.20181.5" />
1313
<InternalsVisibleTo Include="Microsoft.AspNetCore.Http.Microbenchmarks" Key="" />
1414
</ItemGroup>
1515
</Project>

src/Http/Http.Extensions/ref/Microsoft.AspNetCore.Http.Extensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<Compile Include="Microsoft.AspNetCore.Http.Extensions.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
99
<Reference Include="Microsoft.Net.Http.Headers" />
10-
<Reference Include="Microsoft.Extensions.FileProviders.Abstractions" />
10+
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="3.1.4" />
1111
</ItemGroup>
1212
</Project>

src/Http/Http/ref/Microsoft.AspNetCore.Http.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
1111
<Reference Include="Microsoft.AspNetCore.WebUtilities" />
12-
<Reference Include="Microsoft.Extensions.ObjectPool" />
13-
<Reference Include="Microsoft.Extensions.Options" />
1412
<Reference Include="Microsoft.Net.Http.Headers" />
13+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="3.1.4" />
14+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1515
</ItemGroup>
1616
</Project>

src/Http/Routing/ref/Microsoft.AspNetCore.Routing.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<Reference Include="Microsoft.AspNetCore.Authorization" />
1111
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1212
<Reference Include="Microsoft.AspNetCore.Routing.Abstractions" />
13-
<Reference Include="Microsoft.Extensions.HashCodeCombiner.Sources" />
14-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
15-
<Reference Include="Microsoft.Extensions.ObjectPool" />
16-
<Reference Include="Microsoft.Extensions.Options" />
13+
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="3.1.4-servicing.20181.5" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
15+
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="3.1.4" />
16+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1717
</ItemGroup>
1818
</Project>

src/Http/WebUtilities/ref/Microsoft.AspNetCore.WebUtilities.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<Compile Include="Microsoft.AspNetCore.WebUtilities.Manual.cs" />
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.Net.Http.Headers" />
11-
<Reference Include="System.IO.Pipelines" />
11+
<PackageReference Include="System.IO.Pipelines" Version="4.7.0" />
1212
</ItemGroup>
1313
</Project>

src/Middleware/CORS/ref/Microsoft.AspNetCore.Cors.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1111
<Reference Include="Microsoft.AspNetCore.Routing" />
12-
<Reference Include="Microsoft.Extensions.Configuration.Abstractions" />
13-
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
14-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
15-
<Reference Include="Microsoft.Extensions.Options" />
12+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.4" />
13+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.4" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
15+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1616
</ItemGroup>
1717
</Project>

src/Middleware/Diagnostics/ref/Microsoft.AspNetCore.Diagnostics.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1313
<Reference Include="Microsoft.AspNetCore.Routing" />
1414
<Reference Include="Microsoft.AspNetCore.WebUtilities" />
15-
<Reference Include="Microsoft.Extensions.FileProviders.Physical" />
16-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
17-
<Reference Include="Microsoft.Extensions.Options" />
18-
<Reference Include="Microsoft.Extensions.TypeNameHelper.Sources" />
15+
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="3.1.4" />
16+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
17+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
18+
<PackageReference Include="Microsoft.Extensions.TypeNameHelper.Sources" Version="3.1.4-servicing.20181.5" />
1919
</ItemGroup>
2020
</Project>

src/Middleware/HealthChecks/ref/Microsoft.AspNetCore.Diagnostics.HealthChecks.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Compile Include="Microsoft.AspNetCore.Diagnostics.HealthChecks.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
99
<Reference Include="Microsoft.AspNetCore.Routing" />
10-
<Reference Include="Microsoft.Extensions.Diagnostics.HealthChecks" />
11-
<Reference Include="Microsoft.Extensions.Options" />
1210
<Reference Include="Microsoft.Net.Http.Headers" />
11+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="3.1.4" />
12+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1313
</ItemGroup>
1414
</Project>

src/Middleware/HostFiltering/ref/Microsoft.AspNetCore.HostFiltering.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Compile Include="Microsoft.AspNetCore.HostFiltering.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http" />
99
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
10-
<Reference Include="Microsoft.Extensions.Options" />
1110
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
11+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1212
</ItemGroup>
1313
</Project>

src/Middleware/HttpOverrides/ref/Microsoft.AspNetCore.HttpOverrides.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
77
<Compile Include="Microsoft.AspNetCore.HttpOverrides.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
9-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
10-
<Reference Include="Microsoft.Extensions.Options" />
9+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
10+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1111
</ItemGroup>
1212
</Project>

src/Middleware/HttpsPolicy/ref/Microsoft.AspNetCore.HttpsPolicy.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Compile Include="Microsoft.AspNetCore.HttpsPolicy.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http" />
99
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
10-
<Reference Include="Microsoft.Extensions.Configuration.Binder" />
11-
<Reference Include="Microsoft.Extensions.Options" />
1210
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
11+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="3.1.4" />
12+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1313
</ItemGroup>
1414
</Project>

src/Middleware/Localization/ref/Microsoft.AspNetCore.Localization.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
77
<Compile Include="Microsoft.AspNetCore.Localization.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
9-
<Reference Include="Microsoft.Extensions.Localization.Abstractions" />
10-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
11-
<Reference Include="Microsoft.Extensions.Options" />
9+
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="3.1.4" />
10+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
11+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1212
</ItemGroup>
1313
</Project>

src/Middleware/ResponseCaching.Abstractions/ref/Microsoft.AspNetCore.ResponseCaching.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
77
<Compile Include="Microsoft.AspNetCore.ResponseCaching.Abstractions.netcoreapp.cs" />
8-
<Reference Include="Microsoft.Extensions.Primitives" />
8+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="3.1.4" />
99
</ItemGroup>
1010
</Project>

src/Middleware/ResponseCaching/ref/Microsoft.AspNetCore.ResponseCaching.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Reference Include="Microsoft.AspNetCore.ResponseCaching.Abstractions" />
1111
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1212
<Reference Include="Microsoft.AspNetCore.Http" />
13-
<Reference Include="Microsoft.Extensions.Caching.Memory" />
14-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
13+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.4" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
1515
</ItemGroup>
1616
</Project>

src/Middleware/ResponseCompression/ref/Microsoft.AspNetCore.ResponseCompression.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.AspNetCore.Http" />
1111
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
12-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
13-
<Reference Include="Microsoft.Extensions.Options" />
12+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
13+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1414
</ItemGroup>
1515
</Project>

src/Middleware/Rewrite/ref/Microsoft.AspNetCore.Rewrite.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
1111
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
12-
<Reference Include="Microsoft.Extensions.Configuration.Abstractions" />
13-
<Reference Include="Microsoft.Extensions.FileProviders.Abstractions" />
14-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
15-
<Reference Include="Microsoft.Extensions.Options" />
12+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.4" />
13+
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="3.1.4" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
15+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1616
</ItemGroup>
1717
</Project>

src/Middleware/Session/ref/Microsoft.AspNetCore.Session.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Compile Include="Microsoft.AspNetCore.Session.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.DataProtection" />
99
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
10-
<Reference Include="Microsoft.Extensions.Caching.Abstractions" />
11-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
12-
<Reference Include="Microsoft.Extensions.Options" />
10+
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.4" />
11+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
12+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1313
</ItemGroup>
1414
</Project>

src/Middleware/StaticFiles/ref/Microsoft.AspNetCore.StaticFiles.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
1111
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1212
<Reference Include="Microsoft.AspNetCore.Routing" />
13-
<Reference Include="Microsoft.Extensions.FileProviders.Abstractions" />
14-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
15-
<Reference Include="Microsoft.Extensions.WebEncoders" />
13+
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="3.1.4" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
15+
<PackageReference Include="Microsoft.Extensions.WebEncoders" Version="3.1.4" />
1616
</ItemGroup>
1717
</Project>

src/Middleware/WebSockets/ref/Microsoft.AspNetCore.WebSockets.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
77
<Compile Include="Microsoft.AspNetCore.WebSockets.netcoreapp.cs" />
88
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
9-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
10-
<Reference Include="Microsoft.Extensions.Options" />
9+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
10+
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.4" />
1111
</ItemGroup>
1212
</Project>

src/Mvc/Mvc.Abstractions/ref/Microsoft.AspNetCore.Mvc.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
<Reference Include="Microsoft.AspNetCore.Routing.Abstractions" />
1111
<Reference Include="Microsoft.Net.Http.Headers" />
12-
<Reference Include="Microsoft.Extensions.HashCodeCombiner.Sources" />
12+
<PackageReference Include="Microsoft.Extensions.HashCodeCombiner.Sources" Version="3.1.4-servicing.20181.5" />
1313
</ItemGroup>
1414
</Project>

src/Mvc/Mvc.Core/ref/Microsoft.AspNetCore.Mvc.Core.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
<Reference Include="Microsoft.AspNetCore.ResponseCaching.Abstractions" />
1717
<Reference Include="Microsoft.AspNetCore.Routing.Abstractions" />
1818
<Reference Include="Microsoft.AspNetCore.Routing" />
19-
<Reference Include="Microsoft.Extensions.DependencyInjection" />
20-
<Reference Include="Microsoft.Extensions.FileProviders.Abstractions" />
21-
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
22-
<Reference Include="Microsoft.Extensions.ParameterDefaultValue.Sources" />
23-
<Reference Include="Microsoft.Extensions.TypeNameHelper.Sources" />
24-
<Reference Include="Microsoft.Extensions.ValueStopwatch.Sources" />
19+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.4" />
20+
<PackageReference Include="Microsoft.Extensions.FileProviders.Abstractions" Version="3.1.4" />
21+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
22+
<PackageReference Include="Microsoft.Extensions.ParameterDefaultValue.Sources" Version="3.1.4-servicing.20181.5" />
23+
<PackageReference Include="Microsoft.Extensions.TypeNameHelper.Sources" Version="3.1.4-servicing.20181.5" />
24+
<PackageReference Include="Microsoft.Extensions.ValueStopwatch.Sources" Version="3.1.4-servicing.20181.5" />
2525
</ItemGroup>
2626
</Project>

0 commit comments

Comments
 (0)