Skip to content

Commit

Permalink
Merge pull request #40 from QuantumNightmare/fix-namespace
Browse files Browse the repository at this point in the history
fix namespace
  • Loading branch information
QuantumNightmare authored Jun 21, 2021
2 parents 07c88b2 + f7dc0e5 commit 76fd5bd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Serilog.Sinks.Raygun/Serilog.Sinks.Raygun.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<Copyright>Copyright © Serilog Contributors 2017-2020</Copyright>
<Description>Serilog event sink that writes to the Raygun service.</Description>
<VersionPrefix>5.0.2</VersionPrefix>
<RootNamespace>Serilog</RootNamespace>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
Expand Down
2 changes: 1 addition & 1 deletion src/Serilog.Sinks.Raygun/Sinks/Raygun/NullException.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Diagnostics;

namespace Serilog.Sinks.Raygun.Sinks.Raygun
namespace Serilog.Sinks.Raygun
{
// This is used to carry the code execution StackTrace from the Serilog Sink to the Raygun callback in the case that no exception has been provided.
internal class NullException : Exception
Expand Down
1 change: 0 additions & 1 deletion src/Serilog.Sinks.Raygun/Sinks/Raygun/RaygunSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
#endif
using Serilog.Core;
using Serilog.Events;
using Serilog.Sinks.Raygun.Sinks.Raygun;

namespace Serilog.Sinks.Raygun
{
Expand Down

0 comments on commit 76fd5bd

Please sign in to comment.