Skip to content

Commit 270990b

Browse files
Fix targets
1 parent 9ceee64 commit 270990b

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ dotnet_diagnostic.CA1727.severity = None
1010

1111
dotnet_diagnostic.CA2254.severity = None
1212

13+
dotnet_diagnostic.CS8981.severity = None
14+
1315
#Why doesn't this setting work?
1416
#csharp_style_expression_bodied_local_functions = true;
1517
dotnet_diagnostic.IDE0061.severity = none

src/RestClient.NET/RestClient.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net45;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net45;net5.0;net6.0;net7.0</TargetFrameworks>
55
<DebugType>pdbonly</DebugType>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Description>.NET REST Client Framework for all platforms</Description>

src/RestClient.Net.Abstractions/RestClient.Net.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net45;net5.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net45;net5.0;net6.0;net7.0</TargetFrameworks>
55
<DebugType>pdbonly</DebugType>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Description>.NET REST Client Framework for all platforms. This package contains abstractions for dependency injection and mocking with no implementations.</Description>

src/RestClient.Net.DependencyInjection/RestClient.Net.DependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net5.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net5.0;net6.0;net7.0</TargetFrameworks>
55
<DebugType>pdbonly</DebugType>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Description>.NET REST Client Framework for all platforms. This package contains ASP.NET Core DI infrastructure.</Description>

0 commit comments

Comments
 (0)