Skip to content

Commit 60c7b57

Browse files
committed
Corrected the nuget icon
2 parents fbbbd11 + 7b310bd commit 60c7b57

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

ReadMe.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,9 @@ The context information will be attached as:
3636

3737
# Automated handling
3838

39-
For automated handling, use one of the integration libraries:
40-
41-
* [ASP.NET](https://github.com/coderrio/coderr.client.aspnet)
42-
* [ASP.NET MVC5](https://github.com/coderrio/coderr.client.aspnet.mvc5)
43-
* [ASP.NET WebApi2](https://github.com/coderrio/coderr.client.aspnet.webapi2)
44-
* [ASP.NET Core MVC](https://www.nuget.org/packages?q=coderr.client.aspnetcore.mvc)
45-
* [log4net](https://github.com/coderrio/coderr.client.log4net)
46-
* [WinForms](https://github.com/coderrio/coderr.client.winforms)
47-
* [WPF](https://github.com/coderrio/coderr.client.wpf)
39+
For automated handling, use one of the integration libraries found in nuget.
4840

41+
https://www.nuget.org/packages?q=coderr.client
4942

5043
# Features in this library
5144

src/Coderr.Client/Coderr.Client.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net461;net451</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Coderr.Client.xml</DocumentationFile>
77
<RootNamespace>Coderr.Client</RootNamespace>
88

99
<PackageReleaseNotes>Corrected the package icon.</PackageReleaseNotes>
10-
<Version>2.0.2</Version>
10+
<Version>2.0.3</Version>
1111
</PropertyGroup>
1212

1313
<PropertyGroup>
1414
<PackageId>Coderr.Client</PackageId>
15-
<Authors>1TCompany AB</Authors>
15+
<Authors>Coderr AB</Authors>
1616
<Description>Automated exception handling for .NET based applications</Description>
1717
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
18-
<Copyright>Copyright 2020 © 1TCompany AB. All rights reserved.</Copyright>
18+
<Copyright>Copyright 2020 © Coderr AB. All rights reserved.</Copyright>
1919
<PackageTags>logger exceptions analysis .net-core NetStandard</PackageTags>
2020
<RepositoryUrl>https://github.com/coderrio/coderr.client</RepositoryUrl>
2121
<PackageIcon>NugetIcon.png</PackageIcon>
@@ -35,6 +35,9 @@
3535
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
3636
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" />
3737
</ItemGroup>
38+
<ItemGroup Condition="$(TargetFramework) == 'net451'">
39+
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" />
40+
</ItemGroup>
3841

3942
<ItemGroup>
4043
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />

0 commit comments

Comments
 (0)