Skip to content

Commit 2c0d959

Browse files
committed
project rename
1 parent b73bb94 commit 2c0d959

17 files changed

+21
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Test.Hosting
1+
# TestHost.Abstracts
22

33
Unit test host builder

Test.Hosting.slnx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<File Path="README.md" />
55
<File Path="src/Directory.Build.props" />
66
</Folder>
7-
<Project Path="src/Test.Hosting/Test.Hosting.csproj" Id="3ff17fc0-2a44-40c7-8c00-f4466367e7ec" />
8-
<Project Path="test/Test.Hosting.Tests/Test.Hosting.Tests.csproj" Id="b34938e1-de35-4c89-8cd2-5820e15cd9b9" />
7+
<Project Path="src/Test.Hosting/TestHost.Abstracts.csproj" Id="3ff17fc0-2a44-40c7-8c00-f4466367e7ec" />
8+
<Project Path="test/Test.Hosting.Tests/TestHost.Abstracts.Tests.csproj" Id="b34938e1-de35-4c89-8cd2-5820e15cd9b9" />
99
</Solution>

src/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<NeutralLanguage>en-US</NeutralLanguage>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
99
<PackageTags>test;host</PackageTags>
10-
<PackageProjectUrl>https://github.com/loresoft/Test.Hosting</PackageProjectUrl>
10+
<PackageProjectUrl>https://github.com/loresoft/TestHost.Abstracts</PackageProjectUrl>
1111
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1212
<PackageIcon>logo.png</PackageIcon>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<RepositoryType>git</RepositoryType>
15-
<RepositoryUrl>https://github.com/loresoft/Test.Hosting</RepositoryUrl>
15+
<RepositoryUrl>https://github.com/loresoft/TestHost.Abstracts</RepositoryUrl>
1616
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1717
</PropertyGroup>
1818

src/Test.Hosting/ITestHostApplication.cs

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

22
using Microsoft.Extensions.Hosting;
33

4-
namespace Test.Hosting;
4+
namespace TestHost.Abstracts;
55

66
/// <summary>
77
/// An interface for a test host application.

src/Test.Hosting/Logging/MemoryLogEntry.cs

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

33
using Microsoft.Extensions.Logging;
44

5-
namespace Test.Hosting.Logging;
5+
namespace TestHost.Abstracts.Logging;
66

77
public class MemoryLogEntry
88
{

src/Test.Hosting/Logging/MemoryLogger.cs

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

33
using Microsoft.Extensions.Logging;
44

5-
namespace Test.Hosting.Logging;
5+
namespace TestHost.Abstracts.Logging;
66

77
/// <summary>
88
/// A memory logger

src/Test.Hosting/Logging/MemoryLoggerExtensions.cs

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

5-
namespace Test.Hosting.Logging;
5+
namespace TestHost.Abstracts.Logging;
66

77
/// <summary>
88
/// Extension methods for the <see cref="ILoggerFactory"/> class.

src/Test.Hosting/Logging/MemoryLoggerProvider.cs

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

6-
namespace Test.Hosting.Logging;
6+
namespace TestHost.Abstracts.Logging;
77

88
/// <summary>
99
/// A memory logging provider

src/Test.Hosting/Logging/MemoryLoggerSettings.cs

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

3-
namespace Test.Hosting.Logging;
3+
namespace TestHost.Abstracts.Logging;
44

55
/// <summary>
66
/// Memory logger settings
File renamed without changes.

0 commit comments

Comments
 (0)