Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ env:
}}
jobs:
build:
runs-on: ubuntu-latest
runs-on: windows-latest
env:
NEL_MESH_CLIENT_ACCEPTANCE_MESHCONFIGURATION__MAILBOXID: ${{ secrets.NEL_MESH_CLIENT_ACCEPTANCE_MESHCONFIGURATION__MAILBOXID }}
NEL_MESH_CLIENT_ACCEPTANCE_MESHCONFIGURATION__PASSWORD: ${{ secrets.NEL_MESH_CLIENT_ACCEPTANCE_MESHCONFIGURATION__PASSWORD }}
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -374,3 +374,6 @@ local.appsettings.json
/NEL.MESH.Tests.Acceptance/local.appsettings.integration.json
/NEL.MESH.Tests.Integration/local.appsettings.integration.json
/NEL.MESH.Tests.Integration/local.appsettings.acceptance.json
/NEL.MESH.Tests.Acceptance/appsettings.Development.json
/NEL.MESH.Tests.Integration/appsettings.Development.json
/NEL.MESH.Tests.Integration.Witness/appsettings.Development.json
2 changes: 1 addition & 1 deletion NEL.MESH.Tests.Acceptance/ConfigurationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public ConfigurationTests()
{
var configurationBuilder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("local.appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables("NEL_MESH_CLIENT_ACCEPTANCE_");

this.configuration = configurationBuilder.Build();
Expand Down
2 changes: 1 addition & 1 deletion NEL.MESH.Tests.Acceptance/MeshClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public MeshClientTests()
{
var configurationBuilder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("local.appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables("NEL_MESH_CLIENT_ACCEPTANCE_");

IConfiguration configuration = configurationBuilder.Build();
Expand Down
3 changes: 3 additions & 0 deletions NEL.MESH.Tests.Acceptance/NEL.MESH.Tests.Acceptance.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
</ItemGroup>

<ItemGroup>
<None Update="appsettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
2 changes: 1 addition & 1 deletion NEL.MESH.Tests.Integration.Witness/100.MeshClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public MeshClientTests(ITestOutputHelper output)

var configurationBuilder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("local.appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables("NEL_MESH_CLIENT_INTEGRATION_");

IConfiguration configuration = configurationBuilder.Build();
Expand Down
2 changes: 1 addition & 1 deletion NEL.MESH.Tests.Integration.Witness/ConfigurationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public ConfigurationTests()
{
var configurationBuilder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("local.appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables("NEL_MESH_CLIENT_INTEGRATION_");

this.configuration = configurationBuilder.Build();
Expand Down
2 changes: 1 addition & 1 deletion NEL.MESH.Tests.Integration/ConfigurationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public ConfigurationTests()
{
var configurationBuilder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("local.appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables("NEL_MESH_CLIENT_INTEGRATION_");

this.configuration = configurationBuilder.Build();
Expand Down
2 changes: 1 addition & 1 deletion NEL.MESH.Tests.Integration/MeshClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public MeshClientTests()
{
var configurationBuilder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("local.appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables("NEL_MESH_CLIENT_INTEGRATION_");

IConfiguration configuration = configurationBuilder.Build();
Expand Down
3 changes: 3 additions & 0 deletions NEL.MESH.Tests.Integration/NEL.MESH.Tests.Integration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
</ItemGroup>

<ItemGroup>
<None Update="appsettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
Loading
Loading