Skip to content

Commit 7f9135c

Browse files
Updates namespace (#984)
1 parent ab61526 commit 7f9135c

File tree

127 files changed

+223
-223
lines changed

Some content is hidden

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

127 files changed

+223
-223
lines changed

dev-proxy-abstractions/BaseProxyPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.Extensions.Configuration;
77
using Microsoft.Extensions.Logging;
88

9-
namespace Microsoft.DevProxy.Abstractions;
9+
namespace DevProxy.Abstractions;
1010

1111
public abstract class BaseProxyPlugin : IProxyPlugin
1212
{

dev-proxy-abstractions/BaseReportingPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Microsoft.Extensions.Configuration;
66
using Microsoft.Extensions.Logging;
77

8-
namespace Microsoft.DevProxy.Abstractions;
8+
namespace DevProxy.Abstractions;
99

1010
public abstract class BaseReportingPlugin(IPluginEvents pluginEvents, IProxyContext context, ILogger logger, ISet<UrlToWatch> urlsToWatch, IConfigurationSection? configSection = null) : BaseProxyPlugin(pluginEvents, context, logger, urlsToWatch, configSection)
1111
{

dev-proxy-abstractions/CommandLineExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.CommandLine;
66
using System.CommandLine.Parsing;
77

8-
namespace Microsoft.DevProxy.Abstractions;
8+
namespace DevProxy.Abstractions;
99

1010
public static class CommandLineExtensions
1111
{

dev-proxy-abstractions/FuncExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Titanium.Web.Proxy;
88
using Titanium.Web.Proxy.EventArguments;
99

10-
namespace Microsoft.DevProxy.Abstractions;
10+
namespace DevProxy.Abstractions;
1111

1212
public static class FuncExtensions
1313
{

dev-proxy-abstractions/GraphBatchRequestPayload.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
namespace Microsoft.DevProxy.Abstractions;
5+
namespace DevProxy.Abstractions;
66

77
public class GraphBatchRequestPayload
88
{

dev-proxy-abstractions/GraphBatchResponsePayload.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
namespace Microsoft.DevProxy.Abstractions;
5+
namespace DevProxy.Abstractions;
66

77
public class GraphBatchResponsePayload
88
{

dev-proxy-abstractions/ILoggerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Text.Json;
2-
using Microsoft.DevProxy.Abstractions;
2+
using DevProxy.Abstractions;
33

44
#pragma warning disable IDE0130
55
namespace Microsoft.Extensions.Logging;

dev-proxy-abstractions/IProxyConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using Microsoft.Extensions.Logging;
66

7-
namespace Microsoft.DevProxy.Abstractions;
7+
namespace DevProxy.Abstractions;
88

99
public interface IProxyConfiguration
1010
{

dev-proxy-abstractions/IProxyLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using Titanium.Web.Proxy.EventArguments;
66

7-
namespace Microsoft.DevProxy.Abstractions;
7+
namespace DevProxy.Abstractions;
88

99
public enum MessageType
1010
{

dev-proxy-abstractions/IProxyPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System.CommandLine;
66

7-
namespace Microsoft.DevProxy.Abstractions;
7+
namespace DevProxy.Abstractions;
88

99
public interface IProxyPlugin
1010
{

0 commit comments

Comments
 (0)