Skip to content

Commit 5a9c484

Browse files
author
John Luo
committed
Regen ref
1 parent dfe40c8 commit 5a9c484

13 files changed

+17
-44
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!-- This file is automatically generated. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.netstandard2.0.cs" />
88
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.Manual.cs" />
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
</ItemGroup>
11-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
12-
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.netcoreapp3.0.cs" />
11+
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
12+
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.netcoreapp.cs" />
1313
<Compile Include="Microsoft.AspNetCore.DataProtection.Abstractions.Manual.cs" />
1414
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1515
</ItemGroup>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Commonly used types:
66
Microsoft.AspNetCore.DataProtection.IDataProtectionProvider
77
Microsoft.AspNetCore.DataProtection.IDataProtector</Description>
8-
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
99
<IsAspNetCoreApp>true</IsAspNetCoreApp>
1010
<IsShippingPackage>true</IsShippingPackage>
1111
<GenerateDocumentationFile>true</GenerateDocumentationFile>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!-- This file is automatically generated. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.netstandard2.0.cs" />
88
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.Manual.cs" />
99
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1010
</ItemGroup>
11-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
12-
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.netcoreapp3.0.cs" />
11+
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
12+
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.netcoreapp.cs" />
1313
<Compile Include="Microsoft.AspNetCore.Cryptography.Internal.Manual.cs" />
1414
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1515
</ItemGroup>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>Infrastructure for ASP.NET Core cryptographic packages. Applications and libraries should not reference this package directly.</Description>
5-
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
66
<IsAspNetCoreApp>true</IsAspNetCoreApp>
77
<IsShippingPackage>true</IsShippingPackage>
88
<NoWarn>$(NoWarn);CS1591</NoWarn>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This file is automatically generated. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netcoreapp2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netstandard2.0.cs" />
@@ -16,10 +16,10 @@
1616
<Compile Include="../src/Properties/AssemblyInfo.cs" />
1717
<Reference Include="Microsoft.AspNetCore.Cryptography.Internal" />
1818
</ItemGroup>
19-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
20-
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp3.0.cs" />
19+
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
20+
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp.cs" />
2121
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.Manual.cs" />
22-
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp3.0.Manual.cs" />
22+
<Compile Include="Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp.Manual.cs" />
2323
<Compile Include="../src/Properties/AssemblyInfo.cs" />
2424
<Reference Include="Microsoft.AspNetCore.Cryptography.Internal" />
2525
</ItemGroup>

src/DataProtection/Cryptography.KeyDerivation/ref/Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp3.0.Manual.cs

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/DataProtection/Cryptography.KeyDerivation/ref/Microsoft.AspNetCore.Cryptography.KeyDerivation.netcoreapp3.0.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>ASP.NET Core utilities for key derivation.</Description>
5-
<TargetFrameworks>netstandard2.0;netcoreapp2.0;netcoreapp3.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;netcoreapp2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
66
<IsAspNetCoreApp>true</IsAspNetCoreApp>
77
<IsShippingPackage>true</IsShippingPackage>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!-- This file is automatically generated. -->
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
55
</PropertyGroup>
66
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
77
<Compile Include="Microsoft.AspNetCore.Metadata.netstandard2.0.cs" />
88
</ItemGroup>
9-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
10-
<Compile Include="Microsoft.AspNetCore.Metadata.netcoreapp3.0.cs" />
9+
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">
10+
<Compile Include="Microsoft.AspNetCore.Metadata.netcoreapp.cs" />
1111
</ItemGroup>
1212
</Project>

src/Http/Metadata/src/Microsoft.AspNetCore.Metadata.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>ASP.NET Core metadata.</Description>
5-
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;$(DefaultNetCoreTargetFramework)</TargetFrameworks>
66
<IsAspNetCoreApp>true</IsAspNetCoreApp>
77
<IsShippingPackage>true</IsShippingPackage>
88
<NoWarn>$(NoWarn);CS1591</NoWarn>

0 commit comments

Comments
 (0)