Add the .NetFramework "marker" to the DomainNeutral test app (#1988)

* Add the .NetFramework "marker" to the DomainNeutral test app

"git mv" DomainNeutral to a .NetFramework

Follow up rename on the sln file

Reflect rename on the program namespace

Rename DomainNeutral test application

* Update app name on actual test
This commit is contained in:
Paulo Janotti 2023-01-13 13:45:16 -08:00 committed by GitHub
parent a684cd66ba
commit 6a686f463c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestApplication.Logs", "tes
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestLibrary.InstrumentationTarget", "test\test-applications\integrations\dependency-libs\TestLibrary.InstrumentationTarget\TestLibrary.InstrumentationTarget.csproj", "{1DC12784-CD32-400D-AE13-A637BFA66B1B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestApplication.DomainNeutral", "test\test-applications\integrations\TestApplication.DomainNeutral\TestApplication.DomainNeutral.csproj", "{28879377-2043-4370-A8DB-B04464B6E552}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestApplication.DomainNeutral.NetFramework", "test\test-applications\integrations\TestApplication.DomainNeutral.NetFramework\TestApplication.DomainNeutral.NetFramework.csproj", "{28879377-2043-4370-A8DB-B04464B6E552}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestApplication.MassTransit", "test\test-applications\integrations\TestApplication.MassTransit\TestApplication.MassTransit.csproj", "{06664166-35D6-484D-9171-DCB99D1D310A}"
EndProject

View File

@ -27,7 +27,7 @@ namespace IntegrationTests;
public class DomainNeutralTests : TestHelper
{
public DomainNeutralTests(ITestOutputHelper output)
: base("DomainNeutral", output)
: base("DomainNeutral.NetFramework", output)
{
}

View File

@ -16,7 +16,7 @@
using System.Reflection;
namespace TestApplication.DomainNeutral;
namespace TestApplication.DomainNeutral.NetFramework;
using TestLibrary.InstrumentationTarget;