Skip to content

Commit 710ad8e

Browse files
author
John Luo
committed
Manually add TypeForwardedTo in ref assemblies
1 parent f3b7077 commit 710ad8e

File tree

133 files changed

+227
-1
lines changed

Some content is hidden

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

133 files changed

+227
-1
lines changed

eng/targets/ReferenceAssembly.targets

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
<PropertyGroup>
4848
<_RefSourceOutputPath>$([System.IO.Directory]::GetParent('$(MSBuildProjectDirectory)'))/ref/</_RefSourceOutputPath>
4949
<_RefSourceFileName>$(AssemblyName).$(TargetFramework).cs</_RefSourceFileName>
50+
<_ManualRefSourceFileName>$(AssemblyName).Manual.cs</_ManualRefSourceFileName>
5051
<_RefSourceFileOutputPath>$(_RefSourceOutputPath)$(_RefSourceFileName)</_RefSourceFileOutputPath>
5152
</PropertyGroup>
5253

@@ -80,6 +81,7 @@
8081
<![CDATA[
8182
<ItemGroup Condition="'%24(TargetFramework)' == '$(TargetFramework)'">
8283
<Compile Include="$(_RefSourceFileName)" />
84+
<Compile Include="$(_ManualRefSourceFileName)" Condition="Exists('$(_ManualRefSourceFileName)')" />
8385
@(FilteredOriginalReferences->'<Reference Include="%(Identity)" />', '%0A ')
8486
</ItemGroup>
8587
]]>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Antiforgery.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Antiforgery.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Antiforgery.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.DataProtection" />
910
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
1011
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />

src/Azure/AzureAD/Authentication.AzureAD.UI/ref/Microsoft.AspNetCore.Authentication.AzureAD.UI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Authentication.AzureAD.UI.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Authentication.AzureAD.UI.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Authentication.AzureAD.UI.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Mvc" />
910
<Reference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
1011
<Reference Include="Microsoft.AspNetCore.Authentication.Cookies" />

src/Azure/AzureAD/Authentication.AzureADB2C.UI/ref/Microsoft.AspNetCore.Authentication.AzureADB2C.UI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Authentication.AzureADB2C.UI.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Authentication.AzureADB2C.UI.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Authentication.AzureADB2C.UI.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Mvc" />
910
<Reference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
1011
<Reference Include="Microsoft.AspNetCore.Authentication.Cookies" />

src/Azure/AzureAppServices.HostingStartup/ref/Microsoft.AspNetCore.AzureAppServices.HostingStartup.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup.Manual.cs" Condition="Exists('Microsoft.AspNetCore.AzureAppServices.HostingStartup.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.AzureAppServicesIntegration" />
910
<Reference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />
1011
</ItemGroup>

src/Azure/AzureAppServicesIntegration/ref/Microsoft.AspNetCore.AzureAppServicesIntegration.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.AzureAppServicesIntegration.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.AzureAppServicesIntegration.Manual.cs" Condition="Exists('Microsoft.AspNetCore.AzureAppServicesIntegration.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Hosting" />
910
<Reference Include="Microsoft.Extensions.Logging.AzureAppServices" />
1011
</ItemGroup>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Components.Authorization.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Components.Authorization.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Authorization.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Authorization" />
910
<Reference Include="Microsoft.AspNetCore.Components" />
1011
</ItemGroup>
1112
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1213
<Compile Include="Microsoft.AspNetCore.Components.Authorization.netcoreapp3.0.cs" />
14+
<Compile Include="Microsoft.AspNetCore.Components.Authorization.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Authorization.Manual.cs')" />
1315
<Reference Include="Microsoft.AspNetCore.Authorization" />
1416
<Reference Include="Microsoft.AspNetCore.Components" />
1517
</ItemGroup>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Blazor.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Blazor.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Blazor.Manual.cs')" />
89
<Reference Include="Mono.WebAssembly.Interop" />
910
<Reference Include="Microsoft.AspNetCore.Components.Web" />
1011
<Reference Include="Microsoft.Extensions.Options" />

src/Components/Blazor/Http/ref/Microsoft.AspNetCore.Blazor.HttpClient.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Blazor.HttpClient.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Blazor.HttpClient.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Blazor.HttpClient.Manual.cs')" />
89
<Reference Include="System.Text.Json" />
910
</ItemGroup>
1011
</Project>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Blazor.Server.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Blazor.Server.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Blazor.Server.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
910
<Reference Include="Microsoft.AspNetCore.SpaServices.Extensions" />
1011
<Reference Include="Microsoft.AspNetCore.StaticFiles" />

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Components.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Components.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Manual.cs')" />
89
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
910
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
1011
<Reference Include="Microsoft.Extensions.HashCodeCombiner.Sources" />
1112
<Reference Include="System.Buffers" />
1213
</ItemGroup>
1314
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1415
<Compile Include="Microsoft.AspNetCore.Components.netcoreapp3.0.cs" />
16+
<Compile Include="Microsoft.AspNetCore.Components.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Manual.cs')" />
1517
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
1618
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
1719
<Reference Include="Microsoft.Extensions.HashCodeCombiner.Sources" />

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Components.Forms.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Components.Forms.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Forms.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Components" />
910
<Reference Include="System.ComponentModel.Annotations" />
1011
</ItemGroup>
1112
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1213
<Compile Include="Microsoft.AspNetCore.Components.Forms.netcoreapp3.0.cs" />
14+
<Compile Include="Microsoft.AspNetCore.Components.Forms.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Forms.Manual.cs')" />
1315
<Reference Include="Microsoft.AspNetCore.Components" />
1416
</ItemGroup>
1517
</Project>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Components.Server.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Components.Server.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Server.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Components.Authorization" />
910
<Reference Include="Microsoft.AspNetCore.Components.Web" />
1011
<Reference Include="Microsoft.AspNetCore.DataProtection.Extensions" />

src/Components/Web.JS/dist/Release/blazor.server.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Components.Web.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Components.Web.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Web.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Components" />
910
<Reference Include="Microsoft.AspNetCore.Components.Forms" />
1011
<Reference Include="Microsoft.Extensions.DependencyInjection" />
1112
<Reference Include="Microsoft.JSInterop" />
1213
</ItemGroup>
1314
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1415
<Compile Include="Microsoft.AspNetCore.Components.Web.netcoreapp3.0.cs" />
16+
<Compile Include="Microsoft.AspNetCore.Components.Web.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Components.Web.Manual.cs')" />
1517
<Reference Include="Microsoft.AspNetCore.Components" />
1618
<Reference Include="Microsoft.AspNetCore.Components.Forms" />
1719
<Reference Include="Microsoft.Extensions.DependencyInjection" />

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.Abstractions.Manual.cs')" />
89

910
</ItemGroup>
1011
</Project>

src/DataProtection/AzureKeyVault/ref/Microsoft.AspNetCore.DataProtection.AzureKeyVault.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.AzureKeyVault.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.AzureKeyVault.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.AzureKeyVault.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.DataProtection" />
910
<Reference Include="Microsoft.Azure.KeyVault" />
1011
<Reference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" />

src/DataProtection/AzureStorage/ref/Microsoft.AspNetCore.DataProtection.AzureStorage.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.AzureStorage.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.AzureStorage.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.AzureStorage.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.DataProtection" />
910
<Reference Include="Microsoft.Azure.Storage.Blob" />
1011
<Reference Include="Microsoft.Data.OData" />

src/DataProtection/Cryptography.Internal/ref/Microsoft.AspNetCore.Cryptography.Internal.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Cryptography.Internal.Manual.cs')" />
89

910
</ItemGroup>
1011
</Project>

src/DataProtection/Cryptography.KeyDerivation/ref/Microsoft.AspNetCore.Cryptography.KeyDerivation.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Cryptography.KeyDerivation.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Cryptography.Internal" />
910
</ItemGroup>
1011
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
1112
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp2.0.cs" />
13+
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Cryptography.KeyDerivation.Manual.cs')" />
1214
<Reference Include="Microsoft.AspNetCore.Cryptography.Internal" />
1315
</ItemGroup>
1416
</Project>

src/DataProtection/DataProtection/ref/Microsoft.AspNetCore.DataProtection.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Cryptography.Internal" />
910
<Reference Include="Microsoft.AspNetCore.DataProtection.Abstractions" />
1011
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
@@ -17,6 +18,7 @@
1718
</ItemGroup>
1819
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1920
<Compile Include="Microsoft.AspNetCore.DataProtection.netcoreapp3.0.cs" />
21+
<Compile Include="Microsoft.AspNetCore.DataProtection.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.Manual.cs')" />
2022
<Reference Include="Microsoft.AspNetCore.Cryptography.Internal" />
2123
<Reference Include="Microsoft.AspNetCore.DataProtection.Abstractions" />
2224
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />

src/DataProtection/EntityFrameworkCore/ref/Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.netstandard2.1.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.DataProtection" />
910
<Reference Include="Microsoft.EntityFrameworkCore" />
1011
</ItemGroup>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.Extensions.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.Extensions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.Extensions.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.DataProtection" />
910
<Reference Include="Microsoft.Extensions.DependencyInjection" />
1011
</ItemGroup>
1112
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1213
<Compile Include="Microsoft.AspNetCore.DataProtection.Extensions.netcoreapp3.0.cs" />
14+
<Compile Include="Microsoft.AspNetCore.DataProtection.Extensions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.Extensions.Manual.cs')" />
1315
<Reference Include="Microsoft.AspNetCore.DataProtection" />
1416
<Reference Include="Microsoft.Extensions.DependencyInjection" />
1517
</ItemGroup>

src/DataProtection/StackExchangeRedis/ref/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis.Manual.cs" Condition="Exists('Microsoft.AspNetCore.DataProtection.StackExchangeRedis.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.DataProtection" />
910
<Reference Include="StackExchange.Redis" />
1011
</ItemGroup>

src/DefaultBuilder/ref/Microsoft.AspNetCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Diagnostics" />
910
<Reference Include="Microsoft.AspNetCore.HostFiltering" />
1011
<Reference Include="Microsoft.AspNetCore.Hosting" />

src/Features/JsonPatch/ref/Microsoft.AspNetCore.JsonPatch.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.JsonPatch.netstandard2.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.JsonPatch.Manual.cs" Condition="Exists('Microsoft.AspNetCore.JsonPatch.Manual.cs')" />
89
<Reference Include="Microsoft.CSharp" />
910
<Reference Include="Newtonsoft.Json" />
1011
</ItemGroup>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Hosting.Abstractions.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Hosting.Abstractions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Hosting.Abstractions.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Hosting.Server.Abstractions" />
910
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
1011
<Reference Include="Microsoft.Extensions.Hosting.Abstractions" />

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Hosting.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Hosting.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Hosting.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Hosting.Abstractions" />
910
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
1011
<Reference Include="Microsoft.AspNetCore.Http" />

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Hosting.Server.Abstractions.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Hosting.Server.Abstractions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Hosting.Server.Abstractions.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Http.Features" />
910
<Reference Include="Microsoft.Extensions.Configuration.Abstractions" />
1011
</ItemGroup>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.TestHost.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.TestHost.Manual.cs" Condition="Exists('Microsoft.AspNetCore.TestHost.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Hosting" />
910
<Reference Include="Microsoft.Extensions.HostFactoryResolver.Sources" />
1011
<Reference Include="System.IO.Pipelines" />

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Hosting.WindowsServices.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Hosting.WindowsServices.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Hosting.WindowsServices.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Hosting" />
910
<Reference Include="System.ServiceProcess.ServiceController" />
1011
</ItemGroup>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Html.Abstractions.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Html.Abstractions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Html.Abstractions.Manual.cs')" />
89

910
</ItemGroup>
1011
</Project>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Authentication.Abstractions.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Authentication.Abstractions.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Authentication.Abstractions.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Http.Abstractions" />
910
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
1011
<Reference Include="Microsoft.Extensions.Options" />

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
77
<Compile Include="Microsoft.AspNetCore.Authentication.Core.netcoreapp3.0.cs" />
8+
<Compile Include="Microsoft.AspNetCore.Authentication.Core.Manual.cs" Condition="Exists('Microsoft.AspNetCore.Authentication.Core.Manual.cs')" />
89
<Reference Include="Microsoft.AspNetCore.Authentication.Abstractions" />
910
<Reference Include="Microsoft.AspNetCore.Http" />
1011
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />

0 commit comments

Comments
 (0)