Skip to content

Commit 746aa5c

Browse files
authored
Rename Elasticsearch.Extensions.Logging => Elastic.Extensions.Logging (#300)
1 parent d86ce27 commit 746aa5c

31 files changed

+40
-48
lines changed

ecs-dotnet.sln

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "aspnetcore-with-serilog", "
6363
EndProject
6464
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elastic.CommonSchema.Benchmarks", "tools\Elastic.CommonSchema.Benchmarks\Elastic.CommonSchema.Benchmarks.csproj", "{EC19A9E1-79CC-46A8-94D7-EE66ED22D3BD}"
6565
EndProject
66-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elasticsearch.Extensions.Logging", "src\Elasticsearch.Extensions.Logging\Elasticsearch.Extensions.Logging.csproj", "{D88AAA7D-1AEE-4B4C-BE37-69BA85DA07DA}"
66+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elastic.Extensions.Logging", "src\Elastic.Extensions.Logging\Elastic.Extensions.Logging.csproj", "{D88AAA7D-1AEE-4B4C-BE37-69BA85DA07DA}"
6767
EndProject
68-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elasticsearch.Extensions.Logging.IntegrationTests", "tests-integration\Elasticsearch.Extensions.Logging.IntegrationTests\Elasticsearch.Extensions.Logging.IntegrationTests.csproj", "{0E7008E1-B215-4B9B-BC28-DC9D31415FB9}"
68+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elastic.Extensions.Logging.IntegrationTests", "tests-integration\Elastic.Extensions.Logging.IntegrationTests\Elastic.Extensions.Logging.IntegrationTests.csproj", "{0E7008E1-B215-4B9B-BC28-DC9D31415FB9}"
6969
EndProject
70-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elasticsearch.Extensions.Logging.Example", "examples\Elasticsearch.Extensions.Logging.Example\Elasticsearch.Extensions.Logging.Example.csproj", "{F319AD28-A0A4-4012-8480-E2A4CFA755C2}"
70+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elastic.Extensions.Logging.Example", "examples\Elastic.Extensions.Logging.Example\Elastic.Extensions.Logging.Example.csproj", "{F319AD28-A0A4-4012-8480-E2A4CFA755C2}"
7171
EndProject
7272
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "console-with-extensions-logging", "examples\console-with-extensions-logging\console-with-extensions-logging.csproj", "{D87AE73E-8112-444C-8F2F-CFBC4F738026}"
7373
EndProject
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<ProjectReference Include="..\..\src\Elasticsearch.Extensions.Logging\Elasticsearch.Extensions.Logging.csproj" />
17+
<ProjectReference Include="..\..\src\Elastic.Extensions.Logging\Elastic.Extensions.Logging.csproj" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

examples/Elasticsearch.Extensions.Logging.Example/HighVolumeWorkSimulation.cs renamed to examples/Elastic.Extensions.Logging.Example/HighVolumeWorkSimulation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.Extensions.Hosting;
44
using Microsoft.Extensions.Logging;
55

6-
namespace Elasticsearch.Extensions.Logging.Example
6+
namespace Elastic.Extensions.Logging.Example
77
{
88

99
/// <summary> Simulate work that logs in low volume with some time in between each log call </summary>

examples/Elasticsearch.Extensions.Logging.Example/Log.cs renamed to examples/Elastic.Extensions.Logging.Example/Log.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using Microsoft.Extensions.Logging;
33

4-
namespace Elasticsearch.Extensions.Logging.Example
4+
namespace Elastic.Extensions.Logging.Example
55
{
66
public class Log
77
{

examples/Elasticsearch.Extensions.Logging.Example/LowVolumeWorkSimulation.cs renamed to examples/Elastic.Extensions.Logging.Example/LowVolumeWorkSimulation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.Extensions.Hosting;
99
using Microsoft.Extensions.Logging;
1010

11-
namespace Elasticsearch.Extensions.Logging.Example
11+
namespace Elastic.Extensions.Logging.Example
1212
{
1313
/// <summary> Simulate work that logs in low volume with some time in between each log call </summary>
1414
public class LowVolumeWorkSimulation : BackgroundService

examples/Elasticsearch.Extensions.Logging.Example/Program.cs renamed to examples/Elastic.Extensions.Logging.Example/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
using Elastic.Channels;
44
using Elastic.Elasticsearch.Ephemeral;
55
using Elastic.Ingest.Elasticsearch;
6-
using Elasticsearch.Extensions.Logging.Options;
6+
using Elastic.Extensions.Logging.Options;
77
using Elasticsearch.Net;
88
using Microsoft.Extensions.Configuration;
99
using Microsoft.Extensions.DependencyInjection;
1010
using Microsoft.Extensions.Hosting;
1111
using Microsoft.Extensions.Logging;
1212
using Nest;
1313

14-
namespace Elasticsearch.Extensions.Logging.Example
14+
namespace Elastic.Extensions.Logging.Example
1515
{
1616
internal static class Program
1717
{
1818
// Configuration can be overriden from command line, e.g.
19-
// dotnet run --project ./examples/Elasticsearch.Extensions.Logging.Example/ --Logging:Elasticsearch:ShipTo:NodeUris:0 "http://ipv4.fiddler:9200"
19+
// dotnet run --project ./examples/Elastic.Extensions.Logging.Example/ --Logging:Elasticsearch:ShipTo:NodeUris:0 "http://ipv4.fiddler:9200"
2020

2121
public static IHostBuilder CreateHostBuilder(string[] args)
2222
{

examples/aspnetcore-with-extensions-logging/Program.cs

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

33
using Elastic.Clients.Elasticsearch;
44
using Elastic.Elasticsearch.Ephemeral;
5-
using Elasticsearch.Extensions.Logging;
5+
using Elastic.Extensions.Logging;
66

77
using var cluster = new EphemeralCluster("8.4.0");
88
var client = CreateClient(cluster);

examples/aspnetcore-with-extensions-logging/aspnetcore-with-extensions-logging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\..\src\Elasticsearch.Extensions.Logging\Elasticsearch.Extensions.Logging.csproj" />
16+
<ProjectReference Include="..\..\src\Elastic.Extensions.Logging\Elastic.Extensions.Logging.csproj" />
1717
</ItemGroup>
1818

1919
</Project>

examples/console-with-extensions-logging/Program.cs

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

88
/* 1. Add using */
9-
using Elasticsearch.Extensions.Logging;
9+
using Elastic.Extensions.Logging;
1010

1111
namespace ConsoleExample
1212
{

0 commit comments

Comments
 (0)