diff --git a/src/Ocelot.Provider.Rafty/FilePeersProvider.cs b/src/Ocelot.Provider.Rafty/FilePeersProvider.cs index 15f42df..1f9300b 100644 --- a/src/Ocelot.Provider.Rafty/FilePeersProvider.cs +++ b/src/Ocelot.Provider.Rafty/FilePeersProvider.cs @@ -8,6 +8,7 @@ using Microsoft.Extensions.Options; using Middleware; using System.Collections.Generic; + using Administration; public class FilePeersProvider : IPeersProvider { diff --git a/src/Ocelot.Provider.Rafty/HttpPeer.cs b/src/Ocelot.Provider.Rafty/HttpPeer.cs index b46a856..1139729 100644 --- a/src/Ocelot.Provider.Rafty/HttpPeer.cs +++ b/src/Ocelot.Provider.Rafty/HttpPeer.cs @@ -11,6 +11,7 @@ using Newtonsoft.Json; using System; using System.Collections.Generic; + using Administration; public class HttpPeer : IPeer { diff --git a/src/Ocelot.Provider.Rafty/Ocelot.Provider.Rafty.csproj b/src/Ocelot.Provider.Rafty/Ocelot.Provider.Rafty.csproj index f82a18e..d51fcec 100644 --- a/src/Ocelot.Provider.Rafty/Ocelot.Provider.Rafty.csproj +++ b/src/Ocelot.Provider.Rafty/Ocelot.Provider.Rafty.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 2.0.0 @@ -26,8 +26,9 @@ True - - + + + all diff --git a/test/Ocelot.Provider.Rafty.AcceptanceTests/Ocelot.Provider.Rafty.AcceptanceTests.csproj b/test/Ocelot.Provider.Rafty.AcceptanceTests/Ocelot.Provider.Rafty.AcceptanceTests.csproj index f71de7e..f013b2f 100644 --- a/test/Ocelot.Provider.Rafty.AcceptanceTests/Ocelot.Provider.Rafty.AcceptanceTests.csproj +++ b/test/Ocelot.Provider.Rafty.AcceptanceTests/Ocelot.Provider.Rafty.AcceptanceTests.csproj @@ -33,7 +33,7 @@ - + all diff --git a/test/Ocelot.Provider.Rafty.Benchmarks/Ocelot.Provider.Rafty.Benchmarks.csproj b/test/Ocelot.Provider.Rafty.Benchmarks/Ocelot.Provider.Rafty.Benchmarks.csproj index eebfc52..a484a78 100644 --- a/test/Ocelot.Provider.Rafty.Benchmarks/Ocelot.Provider.Rafty.Benchmarks.csproj +++ b/test/Ocelot.Provider.Rafty.Benchmarks/Ocelot.Provider.Rafty.Benchmarks.csproj @@ -15,7 +15,7 @@ - + all diff --git a/test/Ocelot.Provider.Rafty.IntegrationTests/Ocelot.Provider.Rafty.IntegrationTests.csproj b/test/Ocelot.Provider.Rafty.IntegrationTests/Ocelot.Provider.Rafty.IntegrationTests.csproj index 2e12aa0..ed8c762 100644 --- a/test/Ocelot.Provider.Rafty.IntegrationTests/Ocelot.Provider.Rafty.IntegrationTests.csproj +++ b/test/Ocelot.Provider.Rafty.IntegrationTests/Ocelot.Provider.Rafty.IntegrationTests.csproj @@ -16,12 +16,13 @@ + - + all diff --git a/test/Ocelot.Provider.Rafty.IntegrationTests/RaftTests.cs b/test/Ocelot.Provider.Rafty.IntegrationTests/RaftTests.cs index 180bcc5..674cc32 100644 --- a/test/Ocelot.Provider.Rafty.IntegrationTests/RaftTests.cs +++ b/test/Ocelot.Provider.Rafty.IntegrationTests/RaftTests.cs @@ -8,6 +8,7 @@ using System.Net.Http.Headers; using System.Threading; using System.Threading.Tasks; + using Administration; using Configuration.File; using DependencyInjection; using global::Rafty.Infrastructure; diff --git a/test/Ocelot.Provider.Rafty.ManualTest/Ocelot.Provider.Rafty.ManualTest.csproj b/test/Ocelot.Provider.Rafty.ManualTest/Ocelot.Provider.Rafty.ManualTest.csproj index 4b161a1..77aeac2 100644 --- a/test/Ocelot.Provider.Rafty.ManualTest/Ocelot.Provider.Rafty.ManualTest.csproj +++ b/test/Ocelot.Provider.Rafty.ManualTest/Ocelot.Provider.Rafty.ManualTest.csproj @@ -25,6 +25,7 @@ + @@ -34,7 +35,7 @@ - + @@ -44,4 +45,4 @@ - \ No newline at end of file + diff --git a/test/Ocelot.Provider.Rafty.ManualTest/Program.cs b/test/Ocelot.Provider.Rafty.ManualTest/Program.cs index b277f99..bfa16a6 100644 --- a/test/Ocelot.Provider.Rafty.ManualTest/Program.cs +++ b/test/Ocelot.Provider.Rafty.ManualTest/Program.cs @@ -1,6 +1,7 @@ namespace Ocelot.Provider.Rafty.ManualTest { using System.IO; + using Administration; using DependencyInjection; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; diff --git a/test/Ocelot.Provider.Rafty.UnitTests/Ocelot.Provider.Rafty.UnitTests.csproj b/test/Ocelot.Provider.Rafty.UnitTests/Ocelot.Provider.Rafty.UnitTests.csproj index f1a9356..30cec9d 100644 --- a/test/Ocelot.Provider.Rafty.UnitTests/Ocelot.Provider.Rafty.UnitTests.csproj +++ b/test/Ocelot.Provider.Rafty.UnitTests/Ocelot.Provider.Rafty.UnitTests.csproj @@ -36,12 +36,13 @@ + - + all diff --git a/test/Ocelot.Provider.Rafty.UnitTests/OcelotAdministrationBuilderExtensionsTests.cs b/test/Ocelot.Provider.Rafty.UnitTests/OcelotAdministrationBuilderExtensionsTests.cs index 6cfca61..1d8935a 100644 --- a/test/Ocelot.Provider.Rafty.UnitTests/OcelotAdministrationBuilderExtensionsTests.cs +++ b/test/Ocelot.Provider.Rafty.UnitTests/OcelotAdministrationBuilderExtensionsTests.cs @@ -1,15 +1,16 @@ -namespace Ocelot.Provider.Rafty.UnitTests.Properties +namespace Ocelot.Provider.Rafty.UnitTests { + using System; + using System.Collections.Generic; + using Administration; using DependencyInjection; + using Microsoft.AspNetCore.Hosting; + using Microsoft.AspNetCore.Hosting.Internal; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Shouldly; using TestStack.BDDfy; using Xunit; - using Microsoft.AspNetCore.Hosting; - using Microsoft.AspNetCore.Hosting.Internal; - using System; - using System.Collections.Generic; public class OcelotAdministrationBuilderExtensionsTests {