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

Rename Azure.AppServicesDiagnostics to AzureAppServices #498

Merged
merged 1 commit into from
Oct 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Logging.sln
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.Loggin
EndProject
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}"
EndProject
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}"
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}"
EndProject
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}"
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}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
using Microsoft.Extensions.Logging.AzureAppServices.Internal;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics
namespace Microsoft.Extensions.Logging.AzureAppServices
{
/// <summary>
/// Settings for <see cref="AzureAppServicesDiagnosticsLoggerProvider"/>.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics;
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
using Microsoft.Extensions.Logging.AzureAppServices;
using Microsoft.Extensions.Logging.AzureAppServices.Internal;

namespace Microsoft.Extensions.Logging
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Microsoft.Extensions.Logging.Abstractions;
using Serilog;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Logger provider for Azure WebApp.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Serilog.Core;
using Serilog.Formatting.Display;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// The implemenation of logger provider that creates instances of <see cref="Serilog.Core.Logger"/>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using Serilog.Formatting;
using Serilog.Sinks.PeriodicBatching;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// The <see cref="ILogEventSink"/> implemenation that stores messages by appending them to Azure Blob in batches.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

// TODO: Might want to consider using https://github.com/jezzsantos/Serilog.Sinks.Async
// instead of this, once that supports netstandard
namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// A background sink for Serilog.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <inheritdoc />
public class BlobAppendReferenceWrapper : ICloudAppendBlob
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Serilog.Formatting.Display;
using Serilog.Sinks.RollingFile;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// The logger provider that creates instances of <see cref="Serilog.Core.Logger"/>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.IO;
using System.Threading.Tasks;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Represents an append blob, a type of blob where blocks of data are always committed to the end of the blob.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Represents an Azure WebApp context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Represents the default implementation of <see cref="IWebAppContext"/>.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Represents the configuration of the logger from Azure WebApp.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Used to create instances of <see cref="WebAppLogConfiguration"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.IO;
using Microsoft.Extensions.Configuration;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// Represents the default implementation of the <see cref="IWebAppLogConfigurationReader"/>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Serilog.Core;
using Serilog.Events;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal
namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
/// <summary>
/// The <see cref="LoggingLevelSwitch"/> implementation that runs callback
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
using Microsoft.Extensions.Logging.AzureAppServices.Internal;
using Microsoft.WindowsAzure.Storage;
using Moq;
using Serilog.Events;
using Serilog.Formatting.Display;
using Serilog.Parsing;
using Xunit;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
public class AzureBlobSinkTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
using Microsoft.Extensions.Logging.AzureAppServices.Internal;
using Serilog;
using Xunit;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
public class BackgroundSinkTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
using System;
using System.IO;
using System.Threading;
using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
using Microsoft.Extensions.Logging.AzureAppServices.Internal;
using Moq;
using Newtonsoft.Json;
using Xunit;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
public class LogConfigurationReaderTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>b4a43221-de95-47bb-a2d4-2dc761fc9419</ProjectGuid>
<RootNamespace>Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test</RootNamespace>
<RootNamespace>Microsoft.Extensions.Logging.AzureAppServices.Test</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
internal static class RetryHelper
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Internal;
using Microsoft.Extensions.Logging.AzureAppServices.Internal;
using Moq;
using Serilog;
using Serilog.Core;
using Serilog.Events;
using Xunit;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
public class SerilogLoggerProviderTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
// The format of this file is defined by the Azure Portal. Do not change
internal class SettingsFileContent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Serilog.Core;
using Serilog.Events;

namespace Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics.Test
namespace Microsoft.Extensions.Logging.AzureAppServices.Test
{
internal class TestSink : ILogEventSink
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.Extensions.Logging.Azure.AppServicesDiagnostics": "1.0.0-*",
"Microsoft.Extensions.Logging.AzureAppServices": "1.0.0-*",
"Microsoft.Extensions.Logging.TraceSource": "1.1.0-*",
"Moq": "4.6.36-*",
"xunit": "2.2.0-*"
Expand Down