Skip to content

Commit 843be02

Browse files
committed
Bumped version of the core package
1 parent b00b87b commit 843be02

File tree

7 files changed

+44
-96
lines changed

7 files changed

+44
-96
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ Integration library for ASP.NET applications
33

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

6-
This library will detect all unhandled exceptions in ASP.NET-based applications and report them to your codeRR server (or your account at https://coderrapp.com).
6+
This library will detect all unhandled exceptions in ASP.NET-based applications and report them to your codeRR server (or your account at https://coderr.io).
77

88
If you want to get automated exception handling for one of the ASP.NET-based libraries, use the following packages:
99

10-
* [ASP.NET MVC5](https://github.com/coderrapp/coderr.client.aspnet.mvc5)
11-
* [ASP.NET WebApi2](https://github.com/coderrapp/coderr.client.aspnet.webapi2)
12-
* [ASP.NET Core MVC](https://www.nuget.org/packages/codeRR.Client.AspNetCore.Mvc/)
10+
* [ASP.NET MVC5](https://github.com/coderrio/coderr.client.aspnet.mvc5)
11+
* [ASP.NET WebApi2](https://github.com/coderrio/coderr.client.aspnet.webapi2)
12+
* [ASP.NET Core MVC](https://www.nuget.org/packages/Coderr.Client.AspNetCore.Mvc/)
1313

1414
# Installation
1515

16-
1. Download and install the [codeRR server](https://github.com/coderrapp/coderr.server) or create an account at [coderrapp.com](https://coderrapp.com)
16+
1. Download and install the [codeRR server](https://github.com/coderrio/coderr.server) or create an account at [coderrio.com](https://coderr.io)
1717
2. Install this client library (using nuget `coderr.client.aspnet`)
1818
3. Configure the credentials from your codeRR account in your `global.asax`.
1919

@@ -24,7 +24,7 @@ public class Global : System.Web.HttpApplication
2424
protected void Application_Start(object sender, EventArgs e)
2525
{
2626
//replace with your server URL and your appkey/SharedSecret.
27-
var uri = new Uri("https://report.coderrapp.com/");
27+
var uri = new Uri("https://report.coderr.io/");
2828
Err.Configuration.Credentials(uri,
2929
"yourAppKey",
3030
"yourSharedSecret");
@@ -59,7 +59,7 @@ public void UpdatePost(int uid, ForumPost post)
5959

6060
This library includes the following context collections for every reported exceptions:
6161

62-
* All in the [core library](https://github.com/coderrapp/coderr.client)
62+
* All in the [core library](https://github.com/coderrio/coderr.client)
6363
* Application collection
6464
* Form data
6565
* Http headers
@@ -69,9 +69,9 @@ This library includes the following context collections for every reported excep
6969

7070
# Requirements
7171

72-
You need to either install [codeRR Community Server](https://github.com/coderrapp/coderr.server) or use [codeRR Live](https://coderrapp.com/live).
72+
You need to either install [codeRR Community Server](https://github.com/coderrio/coderr.server) or use [codeRR Live](https://coderr.io/live).
7373

7474
# More information
7575

76-
* [Questions/Help](http://discuss.coderrapp.com)
77-
* [Documentation](https://coderrapp.com/documentation/client/libraries/aspnet/)
76+
* [Questions/Help](http://discuss.coderr.io)
77+
* [Documentation](https://coderr.io/documentation/client/libraries/aspnet/)

src/Coderr.Client.AspNet.Demo/Coderr.Client.AspNet.Demo.csproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
<WarningLevel>4</WarningLevel>
4545
</PropertyGroup>
4646
<ItemGroup>
47-
<Reference Include="Coderr.Client, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
48-
<HintPath>..\packages\Coderr.Client.1.1.0\lib\net452\Coderr.Client.dll</HintPath>
47+
<Reference Include="Coderr.Client, Version=1.1.5.0, Culture=neutral, processorArchitecture=MSIL">
48+
<HintPath>..\packages\Coderr.Client.1.1.5\lib\net452\Coderr.Client.dll</HintPath>
4949
</Reference>
5050
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
5151
<HintPath>..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
@@ -139,9 +139,7 @@
139139
<AutoAssignPort>True</AutoAssignPort>
140140
<DevelopmentServerPort>54793</DevelopmentServerPort>
141141
<DevelopmentServerVPath>/</DevelopmentServerVPath>
142-
<IISUrl>http://localhost/OneTrueError.Client.AspNet.Demo/</IISUrl>
143-
<OverrideIISAppRootUrl>True</OverrideIISAppRootUrl>
144-
<IISAppRootUrl>http://localhost/OneTrueError.Client.AspNet.Demo/Startpage.aspx</IISAppRootUrl>
142+
<IISUrl>http://localhost/coderrdemo</IISUrl>
145143
<NTLMAuthentication>False</NTLMAuthentication>
146144
<UseCustomServer>False</UseCustomServer>
147145
<CustomServerUrl>

src/Coderr.Client.AspNet.Demo/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Coderr.Client" version="1.1.0" targetFramework="net452" />
3+
<package id="Coderr.Client" version="1.1.5" targetFramework="net452" />
44
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="2.0.0" targetFramework="net452" />
55
<package id="Microsoft.Net.Compilers" version="2.9.0" targetFramework="net452" developmentDependency="true" />
66
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net452" />

src/Coderr.Client.AspNet.Tests/Coderr.Client.AspNet.Tests.csproj

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\xunit.core.2.4.0\build\xunit.core.props" Condition="Exists('..\packages\xunit.core.2.4.0\build\xunit.core.props')" />
3+
<Import Project="..\packages\xunit.core.2.4.1\build\xunit.core.props" Condition="Exists('..\packages\xunit.core.2.4.1\build\xunit.core.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -39,14 +39,14 @@
3939
</PropertyGroup>
4040
<ItemGroup>
4141
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
42-
<HintPath>..\packages\Castle.Core.4.2.0\lib\net45\Castle.Core.dll</HintPath>
42+
<HintPath>..\packages\Castle.Core.4.4.0\lib\net45\Castle.Core.dll</HintPath>
4343
</Reference>
44-
<Reference Include="FluentAssertions, Version=5.4.1.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
45-
<HintPath>..\packages\FluentAssertions.5.4.1\lib\net45\FluentAssertions.dll</HintPath>
44+
<Reference Include="FluentAssertions, Version=5.9.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
45+
<HintPath>..\packages\FluentAssertions.5.9.0\lib\net45\FluentAssertions.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Microsoft.CSharp" />
48-
<Reference Include="NSubstitute, Version=3.1.0.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca, processorArchitecture=MSIL">
49-
<HintPath>..\packages\NSubstitute.3.1.0\lib\net45\NSubstitute.dll</HintPath>
48+
<Reference Include="NSubstitute, Version=4.2.0.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca, processorArchitecture=MSIL">
49+
<HintPath>..\packages\NSubstitute.4.2.1\lib\net45\NSubstitute.dll</HintPath>
5050
</Reference>
5151
<Reference Include="System" />
5252
<Reference Include="System.Configuration" />
@@ -61,14 +61,14 @@
6161
<Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
6262
<HintPath>..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll</HintPath>
6363
</Reference>
64-
<Reference Include="xunit.assert, Version=2.4.0.4049, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
65-
<HintPath>..\packages\xunit.assert.2.4.0\lib\netstandard1.1\xunit.assert.dll</HintPath>
64+
<Reference Include="xunit.assert, Version=2.4.1.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
65+
<HintPath>..\packages\xunit.assert.2.4.1\lib\netstandard1.1\xunit.assert.dll</HintPath>
6666
</Reference>
67-
<Reference Include="xunit.core, Version=2.4.0.4049, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
68-
<HintPath>..\packages\xunit.extensibility.core.2.4.0\lib\net452\xunit.core.dll</HintPath>
67+
<Reference Include="xunit.core, Version=2.4.1.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
68+
<HintPath>..\packages\xunit.extensibility.core.2.4.1\lib\net452\xunit.core.dll</HintPath>
6969
</Reference>
70-
<Reference Include="xunit.execution.desktop, Version=2.4.0.4049, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
71-
<HintPath>..\packages\xunit.extensibility.execution.2.4.0\lib\net452\xunit.execution.desktop.dll</HintPath>
70+
<Reference Include="xunit.execution.desktop, Version=2.4.1.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
71+
<HintPath>..\packages\xunit.extensibility.execution.2.4.1\lib\net452\xunit.execution.desktop.dll</HintPath>
7272
</Reference>
7373
</ItemGroup>
7474
<Choose>
@@ -117,10 +117,10 @@
117117
<PropertyGroup>
118118
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
119119
</PropertyGroup>
120-
<Error Condition="!Exists('..\packages\xunit.core.2.4.0\build\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.4.0\build\xunit.core.props'))" />
121-
<Error Condition="!Exists('..\packages\xunit.core.2.4.0\build\xunit.core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.4.0\build\xunit.core.targets'))" />
120+
<Error Condition="!Exists('..\packages\xunit.core.2.4.1\build\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.4.1\build\xunit.core.props'))" />
121+
<Error Condition="!Exists('..\packages\xunit.core.2.4.1\build\xunit.core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.4.1\build\xunit.core.targets'))" />
122122
</Target>
123-
<Import Project="..\packages\xunit.core.2.4.0\build\xunit.core.targets" Condition="Exists('..\packages\xunit.core.2.4.0\build\xunit.core.targets')" />
123+
<Import Project="..\packages\xunit.core.2.4.1\build\xunit.core.targets" Condition="Exists('..\packages\xunit.core.2.4.1\build\xunit.core.targets')" />
124124
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
125125
Other similar extension points exist, see Microsoft.Common.targets.
126126
<Target Name="BeforeBuild">
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Castle.Core" version="4.2.0" targetFramework="net452" />
4-
<package id="FluentAssertions" version="5.4.1" targetFramework="net452" />
5-
<package id="NSubstitute" version="3.1.0" targetFramework="net452" />
3+
<package id="Castle.Core" version="4.4.0" targetFramework="net452" />
4+
<package id="FluentAssertions" version="5.9.0" targetFramework="net452" />
5+
<package id="NSubstitute" version="4.2.1" targetFramework="net452" />
66
<package id="System.Threading.Tasks.Extensions" version="4.3.0" targetFramework="net452" />
77
<package id="System.ValueTuple" version="4.4.0" targetFramework="net452" />
8-
<package id="xunit" version="2.4.0" targetFramework="net452" />
8+
<package id="xunit" version="2.4.1" targetFramework="net452" />
99
<package id="xunit.abstractions" version="2.0.3" targetFramework="net452" />
1010
<package id="xunit.analyzers" version="0.10.0" targetFramework="net452" />
11-
<package id="xunit.assert" version="2.4.0" targetFramework="net452" />
12-
<package id="xunit.core" version="2.4.0" targetFramework="net452" />
13-
<package id="xunit.extensibility.core" version="2.4.0" targetFramework="net452" />
14-
<package id="xunit.extensibility.execution" version="2.4.0" targetFramework="net452" />
11+
<package id="xunit.assert" version="2.4.1" targetFramework="net452" />
12+
<package id="xunit.core" version="2.4.1" targetFramework="net452" />
13+
<package id="xunit.extensibility.core" version="2.4.1" targetFramework="net452" />
14+
<package id="xunit.extensibility.execution" version="2.4.1" targetFramework="net452" />
1515
</packages>

src/Coderr.Client.AspNet/Coderr.Client.AspNet.csproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@
55
<Authors>1TCompany AB</Authors>
66
<Description>Automates exception handling for ASP.NET applications</Description>
77
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
8-
<Copyright2017 1TCompany AB. All rights reserved.</Copyright>
8+
<Copyright2019 1TCompany AB. All rights reserved.</Copyright>
99
<PackageTags>logger exceptions analysis asp.net</PackageTags>
10-
<PackageIconUrl>https://coderrapp.com/images/nuget_icon.png</PackageIconUrl>
11-
<RepositoryUrl>https://github.com/coderrapp/coderr.client.aspnet</RepositoryUrl>
10+
<PackageIconUrl>https://coderr.io/images/nuget_icon.png</PackageIconUrl>
11+
<RepositoryUrl>https://github.com/coderrio/coderr.client.aspnet</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
13-
<PackageLicenseUrl>https://github.com/coderrapp/coderr.client.aspnet/LICENSE</PackageLicenseUrl>
14-
<PackageProjectUrl>https://coderrapp.com</PackageProjectUrl>
15-
<Version>1.1.0</Version>
13+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
14+
<PackageProjectUrl>https://coderr.io</PackageProjectUrl>
15+
<Version>1.1.1</Version>
1616
<PackageReleaseNotes>Bumped version of core package and changed namespaces</PackageReleaseNotes>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
18-
<RootNamespace>Coderr.Client.AspNet</RootNamespace>
1918
</PropertyGroup>
2019
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2120
<DocumentationFile>bin\Debug\$(TargetFramework)\Coderr.Client.AspNet.xml</DocumentationFile>
@@ -32,7 +31,7 @@
3231

3332
<ItemGroup>
3433
<PackageReference Include="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
35-
<PackageReference Include="Coderr.Client" Version="1.1.0" />
34+
<PackageReference Include="Coderr.Client" Version="1.1.5" />
3635
</ItemGroup>
3736
<ItemGroup>
3837
<Content Include="README.txt">

src/Coderr.Client.AspNet/README.txt

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -17,55 +17,6 @@ Alternative packages:
1717
* Coderr.Client.AspNet.WebApi2 - Better integration for ASP.NET WebApi 2.x applications
1818
* Coderr.Client.AspNetCore.Mvc - Better integration for ASP.NET Core MVC applications
1919

20-
21-
Quick start
22-
===========
23-
24-
To start with, you need to configure the connection to the Coderr server,
25-
this code is typically added in your Global.asax. This information is found either
26-
in our hosted service or in your installed Coderr server.
27-
28-
public class Global : System.Web.HttpApplication
29-
{
30-
31-
protected void Application_Start(object sender, EventArgs e)
32-
{
33-
//replace with your server URL and your appkey/SharedSecret.
34-
var uri = new Uri("http://localhost/coderr/");
35-
Err.Configuration.Credentials(uri,
36-
"yourAppKey",
37-
"yourSharedSecret");
38-
39-
40-
Err.Configuration.CatchAspNetExceptions();
41-
}
42-
}
43-
44-
45-
46-
47-
Reporting errors manually
48-
=========================
49-
50-
This is one of many examples:
51-
52-
public void SomeMethod(PostViewModel model)
53-
{
54-
try
55-
{
56-
_somService.Execute(model);
57-
}
58-
catch (Exception ex)
59-
{
60-
Err.Report(ex, model);
61-
62-
//some custom handling
63-
}
64-
65-
// some other code here...
66-
}
67-
68-
6920
Questions:
7021
https://discuss.coderr.io
7122

0 commit comments

Comments
 (0)