mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 09:15:27 +08:00 
			
		
		
		
	Updated packages and fixed build errors and tests..now need to update nuspec
This commit is contained in:
		@@ -19,11 +19,11 @@ namespace Ocelot.Authentication.Handler.Creator
 | 
			
		||||
            builder.UseIdentityServerAuthentication(new IdentityServerAuthenticationOptions
 | 
			
		||||
            {
 | 
			
		||||
                Authority = authOptions.ProviderRootUrl,
 | 
			
		||||
                ScopeName = authOptions.ScopeName,
 | 
			
		||||
                ApiName = authOptions.ScopeName,
 | 
			
		||||
                RequireHttpsMetadata = authOptions.RequireHttps,
 | 
			
		||||
                AdditionalScopes = authOptions.AdditionalScopes,
 | 
			
		||||
                AllowedScopes = authOptions.AdditionalScopes,
 | 
			
		||||
                SupportedTokens = SupportedTokens.Both,
 | 
			
		||||
                ScopeSecret = authOptions.ScopeSecret
 | 
			
		||||
                ApiSecret = authOptions.ScopeSecret
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            var authenticationNext = builder.Build();
 | 
			
		||||
 
 | 
			
		||||
@@ -1,42 +1,41 @@
 | 
			
		||||
{
 | 
			
		||||
    "version": "1.0.0-*",
 | 
			
		||||
  "version": "1.0.0-*",
 | 
			
		||||
 | 
			
		||||
    "dependencies": {
 | 
			
		||||
        "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Configuration.Json": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Logging": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Logging.Console": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Logging.Debug": "1.0.0",
 | 
			
		||||
        "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Http": "1.0.0",
 | 
			
		||||
        "System.Text.RegularExpressions": "4.1.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.Google": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.Facebook": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.Twitter": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0",
 | 
			
		||||
        "Microsoft.AspNetCore.Authentication": "1.0.0",
 | 
			
		||||
        "IdentityServer4.AccessTokenValidation": "1.0.1-rc2",
 | 
			
		||||
        "Microsoft.AspNetCore.Mvc": "1.0.1",
 | 
			
		||||
        "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
 | 
			
		||||
        "Microsoft.NETCore.App": {
 | 
			
		||||
            "version": "1.0.1",
 | 
			
		||||
            "type": "platform"
 | 
			
		||||
        },
 | 
			
		||||
        "CacheManager.Core": "0.9.1",
 | 
			
		||||
        "CacheManager.Microsoft.Extensions.Configuration": "0.9.1",
 | 
			
		||||
        "CacheManager.Microsoft.Extensions.Logging": "0.9.1"
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    "frameworks": {
 | 
			
		||||
        "netcoreapp1.4": {
 | 
			
		||||
            "imports": [
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Configuration.Json": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Logging": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Logging.Console": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Logging.Debug": "1.1.0",
 | 
			
		||||
    "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Http": "1.1.0",
 | 
			
		||||
    "System.Text.RegularExpressions": "4.3.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.Google": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Authentication": "1.1.0",
 | 
			
		||||
    "IdentityServer4.AccessTokenValidation": "1.0.2",
 | 
			
		||||
    "Microsoft.AspNetCore.Mvc": "1.1.0",
 | 
			
		||||
    "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
 | 
			
		||||
    "Microsoft.NETCore.App": "1.1.0",
 | 
			
		||||
    "CacheManager.Core": "0.9.2",
 | 
			
		||||
    "CacheManager.Microsoft.Extensions.Configuration": "0.9.2",
 | 
			
		||||
    "CacheManager.Microsoft.Extensions.Logging": "0.9.2"
 | 
			
		||||
  },
 | 
			
		||||
  "runtimes": {
 | 
			
		||||
    "win10-x64": {}
 | 
			
		||||
  },
 | 
			
		||||
  "frameworks": {
 | 
			
		||||
    "netcoreapp1.4": {
 | 
			
		||||
      "imports": [
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user