Skip to content

Commit fbbbd11

Browse files
committed
icon
1 parent dfcbb4c commit fbbbd11

File tree

3 files changed

+20
-37
lines changed

3 files changed

+20
-37
lines changed

ReadMe.md

Lines changed: 15 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
1-
Core client for codeRR
1+
Core client for Coderr
22
======================
33

44
![](https://1tcompany.visualstudio.com/_apis/public/build/definitions/75570083-b1ef-4e78-88e2-5db4982f756c/4/badge) [![NuGet](https://img.shields.io/nuget/dt/codeRR.Client.svg?style=flat-square)]()
55

6-
This client library is used to manually report exceptions to codeRR (`Err.Report(exception)`).
6+
This client library is used to manually report exceptions to Coderr (`Err.Report(exception)`).
77

8-
For more information about codeRR, check the [homepage](https://coderrapp.com).
8+
For more information about Coderr, visit our [homepage](https://coderr.io).
99

10-
# Installation
10+
[Getting started guide](https://coderr.io/documentation/getting-started/)
1111

12-
1. Download and install the [codeRR server](https://github.com/coderrapp/coderr.server) or create an account at [coderrapp.com](https://coderrapp.com/live)
13-
2. Install this client library (using nuget `coderr.client`)
14-
3. Configure the credentials from your codeRR account in your `Program.cs`.
15-
16-
# Getting started
12+
# Reporting the first error
1713

1814
Simply catch an exception and report it:
1915

@@ -33,28 +29,22 @@ public void UpdatePost(int uid, ForumPost post)
3329

3430
The context information will be attached as:
3531

36-
![](https://coderrapp.com/images/features/custom-context.png)
32+
![](https://coderrio/images/features/custom-context.png)
3733

38-
[Read more...](https://coderrapp.com/features/)
34+
[Read more...](https://coderrio/features/)
3935

4036

4137
# Automated handling
4238

4339
For automated handling, use one of the integration libraries:
4440

45-
Regular .NET
46-
47-
* [ASP.NET](https://github.com/coderrapp/coderr.client.aspnet)
48-
* [ASP.NET MVC5](https://github.com/coderrapp/coderr.client.aspnet.mvc5)
49-
* [ASP.NET WebApi2](https://github.com/coderrapp/coderr.client.aspnet.webapi2)
50-
* [log4net](https://github.com/coderrapp/coderr.client.log4net)
51-
* [WinForms](https://github.com/coderrapp/coderr.client.winforms)
52-
* [WPF](https://github.com/coderrapp/coderr.client.wpf)
53-
54-
.NET Standard
55-
56-
* [NetStd](https://github.com/coderrapp/coderr.Client.NetStandard)
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)
5744
* [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)
5848

5949

6050
# Features in this library
@@ -70,11 +60,7 @@ Regular .NET
7060
* Allow user to leave feedback
7161
* Automated information collection from windows, the process and the current thread.
7262

73-
# Requirements
74-
75-
You need to either install [codeRR Community Server](https://github.com/coderrapp/coderr.server) or use [codeRR Live](https://coderrapp.com/live).
76-
7763
# More information
7864

79-
* [Documentation](https://coderrapp.com/documentation/client/libraries/)
80-
* [Forum](http://discuss.coderrapp.com)
65+
* [Documentation](https://coderr.io/documentation/client/libraries/)
66+
* [Forum](http://discuss.coderr.io)

src/Coderr.Client.Demo/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@ class Program
66
{
77
static void Main()
88
{
9-
109
var url = new Uri("http://localhost:60473/");
1110
Err.Configuration.Credentials(url,
1211
"1a68bc3e123c48a3887877561b0982e2",
1312
"bd73436e965c4f3bb0578f57c21fde69");
1413

15-
1614
Err.ReportLogicError("User should have been assigned.");
1715
try
1816
{

src/Coderr.Client/Coderr.Client.csproj

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Coderr.Client.xml</DocumentationFile>
77
<RootNamespace>Coderr.Client</RootNamespace>
8-
<PackageIcon>NugetIcon.png</PackageIcon>
98

10-
<PackageReleaseNotes>Added ConfigureAwait to function better in desktop apps.</PackageReleaseNotes>
11-
<Version>2.0.1</Version>
9+
<PackageReleaseNotes>Corrected the package icon.</PackageReleaseNotes>
10+
<Version>2.0.2</Version>
1211
</PropertyGroup>
1312

1413
<PropertyGroup>
@@ -18,8 +17,8 @@
1817
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1918
<Copyright>Copyright 2020 © 1TCompany AB. All rights reserved.</Copyright>
2019
<PackageTags>logger exceptions analysis .net-core NetStandard</PackageTags>
21-
<PackageIconUrl>https://coderr.io/images/nuget_icon.png</PackageIconUrl>
2220
<RepositoryUrl>https://github.com/coderrio/coderr.client</RepositoryUrl>
21+
<PackageIcon>NugetIcon.png</PackageIcon>
2322
<RepositoryType>git</RepositoryType>
2423
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
2524
<PackageProjectUrl>https://coderr.io</PackageProjectUrl>
@@ -30,10 +29,10 @@
3029
<Pack>true</Pack>
3130
<PackagePath>README.txt</PackagePath>
3231
</Content>
33-
<None Include="NugetIcon.png" Pack="true" PackagePath=""/>
32+
<None Include="NugetIcon.png" Pack="true" PackagePath="/"/>
3433
</ItemGroup>
3534

36-
<ItemGroup Condition="$(TargetFramework) == 'net461'">
35+
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
3736
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" />
3837
</ItemGroup>
3938

0 commit comments

Comments
 (0)