Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 61ff52f

Browse files
authored
Rename Azure.AppServicesDiagnostics to AzureAppServices (#498)
1 parent 93175c4 commit 61ff52f

29 files changed

+33
-33
lines changed

Logging.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Loggin
3434
EndProject
3535
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Logging.EventSource.Test", "test\Microsoft.Extensions.Logging.EventSource.Test\Microsoft.Extensions.Logging.EventSource.Test.xproj", "{F3B898C3-D441-4207-A92B-420D6E73CA5D}"
3636
EndProject
37-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics", "src\Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics\Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.xproj", "{854133D5-6252-4A0A-B682-BDBB83B62AE6}"
37+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Logging.AzureAppServices", "src\Microsoft.Extensions.Logging.AzureAppServices\Microsoft.Extensions.Logging.AzureAppServices.xproj", "{854133D5-6252-4A0A-B682-BDBB83B62AE6}"
3838
EndProject
39-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test", "test\Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test\Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test.xproj", "{B4A43221-DE95-47BB-A2D4-2DC761FC9419}"
39+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Logging.AzureAppServices.Test", "test\Microsoft.Extensions.Logging.AzureAppServices.Test\Microsoft.Extensions.Logging.AzureAppServices.Test.xproj", "{B4A43221-DE95-47BB-A2D4-2DC761FC9419}"
4040
EndProject
4141
Global
4242
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
5+
using Microsoft.Extensions.Logging.AzureAppServices.Internal;
66

7-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics
7+
namespace Microsoft.Extensions.Logging.AzureAppServices
88
{
99
/// <summary>
1010
/// Settings for <see cref="AzureAppServicesDiagnosticsLoggerProvider"/>.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics;
5-
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
4+
using Microsoft.Extensions.Logging.AzureAppServices;
5+
using Microsoft.Extensions.Logging.AzureAppServices.Internal;
66

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

8-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
8+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
99
{
1010
/// <summary>
1111
/// Logger provider for Azure WebApp.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Serilog.Core;
88
using Serilog.Formatting.Display;
99

10-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
10+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
1111
{
1212
/// <summary>
1313
/// The implemenation of logger provider that creates instances of <see cref="Serilog.Core.Logger"/>.

src/Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics/Internal/AzureBlobSink.cs renamed to src/Microsoft.Extensions.Logging.AzureAppServices/Internal/AzureBlobSink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Serilog.Formatting;
1313
using Serilog.Sinks.PeriodicBatching;
1414

15-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
15+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
1616
{
1717
/// <summary>
1818
/// The <see cref="ILogEventSink"/> implemenation that stores messages by appending them to Azure Blob in batches.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
// TODO: Might want to consider using https://github.com/jezzsantos/Serilog.Sinks.Async
1111
// instead of this, once that supports netstandard
12-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
12+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
1313
{
1414
/// <summary>
1515
/// A background sink for Serilog.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.WindowsAzure.Storage;
77
using Microsoft.WindowsAzure.Storage.Blob;
88

9-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
9+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
1010
{
1111
/// <inheritdoc />
1212
public class BlobAppendReferenceWrapper : ICloudAppendBlob
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Serilog.Formatting.Display;
99
using Serilog.Sinks.RollingFile;
1010

11-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
11+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
1212
{
1313
/// <summary>
1414
/// The logger provider that creates instances of <see cref="Serilog.Core.Logger"/>.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.IO;
55
using System.Threading.Tasks;
66

7-
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
7+
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
88
{
99
/// <summary>
1010
/// Represents an append blob, a type of blob where blocks of data are always committed to the end of the blob.

0 commit comments

Comments
 (0)