Skip to content

Commit 177c9cc

Browse files
committed
Cleanup: Unused using statements
1 parent 704d6e4 commit 177c9cc

File tree

72 files changed

+50
-141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+50
-141
lines changed

samples/Exceptionless.SampleAspNetCore/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using Microsoft.AspNetCore.Hosting;
1+
using Microsoft.AspNetCore.Hosting;
32
using Microsoft.Extensions.Hosting;
43

54
namespace Exceptionless.SampleAspNetCore {

samples/Exceptionless.SampleAspNetCore/Startup.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using Microsoft.AspNetCore.Builder;
1+
using Microsoft.AspNetCore.Builder;
32
using Microsoft.AspNetCore.Hosting;
43
using Microsoft.Extensions.Configuration;
54
using Microsoft.Extensions.DependencyInjection;

samples/Exceptionless.SampleConsole/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
using Exceptionless.SampleConsole.Plugins;
1515
using NLog;
1616
using NLog.Config;
17-
using NLog.Fluent;
1817
using LogLevel = Exceptionless.Logging.LogLevel;
1918

2019
// example of setting an attribute value in config.

samples/Exceptionless.SampleLambda/Function.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Threading.Tasks;
33
using Amazon.Lambda.Core;
4-
using Exceptionless;
54

65
// Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class.
76
[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.SystemTextJson.DefaultLambdaJsonSerializer))]

samples/Exceptionless.SampleLambdaAspNetCore/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System;
21
using Microsoft.AspNetCore.Hosting;
32
using Microsoft.Extensions.Hosting;
43

samples/Exceptionless.SampleLambdaAspNetCore/Startup.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System;
2-
using Exceptionless;
31
using Microsoft.AspNetCore.Builder;
42
using Microsoft.AspNetCore.Hosting;
53
using Microsoft.Extensions.Configuration;

samples/Exceptionless.SampleMvc/App_Start/BundleConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System.Web;
2-
using System.Web.Optimization;
1+
using System.Web.Optimization;
32

43
namespace Exceptionless.SampleMvc {
54
public class BundleConfig

samples/Exceptionless.SampleMvc/App_Start/FilterConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Web.Mvc;
1+
using System.Web.Mvc;
32

43
namespace Exceptionless.SampleMvc {
54
public class FilterConfig {

samples/Exceptionless.SampleMvc/App_Start/RouteConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Web.Mvc;
1+
using System.Web.Mvc;
32
using System.Web.Routing;
43

54
namespace Exceptionless.SampleMvc {

samples/Exceptionless.SampleMvc/App_Start/WebApiConfig.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Web.Http;
1+
using System.Web.Http;
32

43
namespace Exceptionless.SampleMvc.App_Start {
54
public static class WebApiConfig {

0 commit comments

Comments
 (0)