diff --git a/src/Microsoft.Azure.Relay.AspNetCore/Microsoft.Azure.Relay.AspNetCore.csproj b/src/Microsoft.Azure.Relay.AspNetCore/Microsoft.Azure.Relay.AspNetCore.csproj index 95adb2fb..94f0693c 100644 --- a/src/Microsoft.Azure.Relay.AspNetCore/Microsoft.Azure.Relay.AspNetCore.csproj +++ b/src/Microsoft.Azure.Relay.AspNetCore/Microsoft.Azure.Relay.AspNetCore.csproj @@ -3,12 +3,16 @@ ASP.NET Core HTTP server that uses Azure Relay. Microsoft + © Microsoft Corporation. All rights reserved. netstandard2.0;netstandard2.1 $(NoWarn);CS1591 true true - aspnetcore;weblistener;AzureRelay + https://github.com/Azure/azure-relay-aspnetserver/releases + aspnetcore;weblistener;AzureRelay;Azure;Relay;AspNet;Hybrid Connection;HybridConnection;ServiceBus;Service Bus Apache-2.0 + https://raw.githubusercontent.com/Azure/azure-relay-dotnet/master/relay.png + https://github.com/Azure/azure-relay-aspnetserver True diff --git a/test/Microsoft.Azure.Relay.AspNetCore.FunctionalTests/Utilities.cs b/test/Microsoft.Azure.Relay.AspNetCore.FunctionalTests/Utilities.cs index 437c7353..0629eae5 100644 --- a/test/Microsoft.Azure.Relay.AspNetCore.FunctionalTests/Utilities.cs +++ b/test/Microsoft.Azure.Relay.AspNetCore.FunctionalTests/Utilities.cs @@ -103,9 +103,8 @@ internal static MessagePump CreateServer(string url, string path, RequestDelegat internal static TokenProvider CreateTokenProvider() { var connectionString = Environment.GetEnvironmentVariable("RELAY_TEST_CONNECTIONSTRING_NOAUTH"); - - Assert.NotNull(connectionString); - Assert.False(string.IsNullOrEmpty(connectionString)); + Assert.False(string.IsNullOrEmpty(connectionString), "RELAY_TEST_CONNECTIONSTRING_NOAUTH must be set"); + var cb = new RelayConnectionStringBuilder(connectionString); if (!string.IsNullOrEmpty(cb.SharedAccessSignature)) { @@ -120,9 +119,8 @@ internal static TokenProvider CreateTokenProvider() internal static string GetRelayUrl() { var connectionString = Environment.GetEnvironmentVariable("RELAY_TEST_CONNECTIONSTRING_NOAUTH"); + Assert.False(string.IsNullOrEmpty(connectionString), "RELAY_TEST_CONNECTIONSTRING_NOAUTH must be set"); - Assert.NotNull(connectionString); - Assert.False(string.IsNullOrEmpty(connectionString)); var cb = new RelayConnectionStringBuilder(connectionString); Assert.NotNull(connectionString);