Skip to content

Commit

Permalink
* Corrected the online installation instructions
Browse files Browse the repository at this point in the history
* Updated the internal reporting package to our OTE
  • Loading branch information
gauffininteractive committed Sep 5, 2016
1 parent b682862 commit e22e152
Show file tree
Hide file tree
Showing 33 changed files with 85 additions and 38 deletions.
2 changes: 1 addition & 1 deletion src/Server/OneTrueError.Web/Global.asax.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private static void ConfigureErrorTracking()
errorTrackingConfig.ContactEmail,
errorTrackingConfig.InstallationId));
}
OneTrue.Configure(uri, "appKey", "sharedSecret");
OneTrue.Configuration.Credentials(uri, "appKey", "sharedSecret");
}
else
{
Expand Down
31 changes: 31 additions & 0 deletions src/Server/OneTrueError.Web/Nuget/ReadMe.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
OneTrueError.Client installation
=================================

You've just installed the OneTrueError client.

To get started add the following code to your application:

var url = new Uri("http://yourServer/onetrueerror/");
OneTrue.Configuration.Credentials(url, "yourAppKey", "yourSharedSecret");

Once done you can report exceptions like this:

try
{
somelogic();
}
catch(SomeException ex)
{
OneTrue.Report(ex);
}


More information
=================

* http://onetrueerror.com/ - About the service
* http://onetrueerror.com/documentation/client/index.md - Client documentation
* http://onetrueerror.com/documentation/server/index.md - Server documentation (to extend/change the OnTrueError server source code)


*this library requires that you have installed a OneTrueError server somewhere*
7 changes: 4 additions & 3 deletions src/Server/OneTrueError.Web/OneTrueError.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="OneTrueError.Client, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OneTrueError.Client.1.0.0-rc04\lib\net40\OneTrueError.Client.dll</HintPath>
<Reference Include="OneTrueError.Client, Version=1.1.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OneTrueError.Client.1.0.0\lib\net40\OneTrueError.Client.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="OneTrueError.Client.AspNet.Mvc5, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\OneTrueError.Client.AspNet.Mvc5.1.0.0-rc01\lib\net45\OneTrueError.Client.AspNet.Mvc5.dll</HintPath>
<HintPath>..\packages\OneTrueError.Client.AspNet.Mvc5.1.0.0\lib\net45\OneTrueError.Client.AspNet.Mvc5.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down Expand Up @@ -349,6 +349,7 @@
<Content Include="favicon.ico" />
<Content Include="fonts\glyphicons-halflings-regular.svg" />
<Content Include="Global.asax" />
<Content Include="Nuget\ReadMe.txt" />
<Content Include="Scripts\alertify.js" />
<Content Include="Scripts\alertify.min.js" />
<Content Include="Scripts\Application.js" />
Expand Down
2 changes: 1 addition & 1 deletion src/Server/OneTrueError.Web/Scripts/CqsClient.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Server/OneTrueError.Web/Scripts/Griffin.Net.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit e22e152

Please sign in to comment.