Skip to content

Commit c187c5f

Browse files
committed
Drop support for .NET 3.0 & Upgrade Microsoft.Extensions.Http to 6.0
Microsoft.Extensions.Http version was causing conflict in some projects
1 parent 48e39ae commit c187c5f

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
5-
<Authors>Axel "Elanis" Soupé</Authors>
6-
<Company>Dysnomia</Company>
7-
<Description>A C# library to easily get data from Web API. It's used in our Web API wrapper like Steam, Blizzard, etc.</Description>
8-
<PackageLicenseFile>LICENSE</PackageLicenseFile>
9-
<PackageProjectUrl>https://github.com/Dysnomia-Studio/Dysnomia.Common.WebAPIWrapper</PackageProjectUrl>
10-
<RepositoryUrl>https://github.com/Dysnomia-Studio/Dysnomia.Common.WebAPIWrapper</RepositoryUrl>
11-
<RepositoryType>Github</RepositoryType>
12-
<PackageReleaseNotes></PackageReleaseNotes>
13-
<Version>1.0.0</Version>
14-
<AssemblyVersion>1.0.0</AssemblyVersion>
15-
<FileVersion>1.0.0</FileVersion>
16-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
5+
<Authors>Axel "Elanis" Soupé</Authors>
6+
<Company>Dysnomia</Company>
7+
<Description>A C# library to easily get data from Web API. It's used in our Web API wrapper like Steam, Blizzard, etc.</Description>
8+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
9+
<PackageProjectUrl>https://github.com/Dysnomia-Studio/Dysnomia.Common.WebAPIWrapper</PackageProjectUrl>
10+
<RepositoryUrl>https://github.com/Dysnomia-Studio/Dysnomia.Common.WebAPIWrapper</RepositoryUrl>
11+
<RepositoryType>Github</RepositoryType>
12+
<PackageReleaseNotes></PackageReleaseNotes>
13+
<Version>1.0.0</Version>
14+
<AssemblyVersion>1.0.0</AssemblyVersion>
15+
<FileVersion>1.0.0</FileVersion>
16+
</PropertyGroup>
1717

18-
<ItemGroup>
19-
<None Include="..\LICENSE">
20-
<Pack>True</Pack>
21-
<PackagePath></PackagePath>
22-
</None>
23-
</ItemGroup>
18+
<ItemGroup>
19+
<None Include="..\LICENSE">
20+
<Pack>True</Pack>
21+
<PackagePath></PackagePath>
22+
</None>
23+
</ItemGroup>
2424

25-
<ItemGroup>
26-
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
27-
</ItemGroup>
25+
<ItemGroup>
26+
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
27+
</ItemGroup>
2828
</Project>

0 commit comments

Comments
 (0)