diff --git a/Makefile b/Makefile index 61180ee6..58bec8a5 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ $(SUBDIRS): Yavsc.Abstract-deploy: $(MAKE) -C Yavsc.Abstract deploy-pkg VERSION=$(VERSION) -Yavsc.Abstract-deploy: Yavsc +Yavsc-deploy: Yavsc $(MAKE) -C Yavsc deploy-pkg VERSION=$(VERSION) Yavsc: Yavsc.Abstract-deploy diff --git a/Yavsc/Yavsc.nuspec b/Yavsc/Yavsc.nuspec index e693f703..ee5dd8a7 100644 --- a/Yavsc/Yavsc.nuspec +++ b/Yavsc/Yavsc.nuspec @@ -16,6 +16,9 @@ Blog, POS, Web API + + + diff --git a/Yavsc/project.json b/Yavsc/project.json index c58e6d82..065f1910 100755 --- a/Yavsc/project.json +++ b/Yavsc/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.5-rc12", + "version": "1.0.5-*", "authors": [ "Paul Schneider" ], diff --git a/cli/Program.cs b/cli/Program.cs index 34bcb94c..43454ec3 100644 --- a/cli/Program.cs +++ b/cli/Program.cs @@ -40,11 +40,6 @@ namespace cli .UseEnvironment("Development") .UseServer("cli") .UseStartup() - - .UseServices(services => { - Console.WriteLine($"> Using {services.Count} services:"); - foreach (var s in services) Console.WriteLine($"> * {s.ServiceType}"); - }) .Build(); var app = hostengnine.Start(); @@ -53,78 +48,3 @@ namespace cli } } } - -namespace cli -{ - public class Startup - { - public string ConnectionString - { - get { return DbHelpers.ConnectionString; } - private set { DbHelpers.ConnectionString = value; } - } - - public static SiteSettings SiteSetup { get; private set; } - public static SmtpSettings SmtpSettup { get; private set; } - public static IConfiguration Configuration { get; set; } - - public static string HostingFullName { get; private set; } - - ILogger logger; - public Startup(IHostingEnvironment env, IApplicationEnvironment appEnv) - { - var devtag = env.IsDevelopment()?"D":""; - var prodtag = env.IsProduction()?"P":""; - var stagetag = env.IsStaging()?"S":""; - - HostingFullName = $"{appEnv.RuntimeFramework.FullName} [{env.EnvironmentName}:{prodtag}{devtag}{stagetag}]"; - // Set up configuration sources. - - var builder = new ConfigurationBuilder() - .AddEnvironmentVariables() - .AddJsonFile("appsettings.json") - .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true); - Configuration = builder.Build(); - - } - - public void ConfigureServices (IServiceCollection services) - { - services.AddOptions(); - var siteSettingsconf = Configuration.GetSection("Site"); - services.Configure(siteSettingsconf); - var smtpSettingsconf = Configuration.GetSection("Smtp"); - services.Configure(smtpSettingsconf); - services.AddInstance(typeof(ILoggerFactory), new LoggerFactory()); - services.AddTransient(typeof(IEmailSender), typeof(MessageSender)); - services.AddTransient(typeof(RazorEngineHost), typeof(YaRazorEngineHost)); - - - services.AddEntityFramework().AddNpgsql().AddDbContext(); - - services.AddTransient((s) => new RazorTemplateEngine(s.GetService())); - var serviceProvider = services.BuildServiceProvider(); - - services.AddLogging(); - services.AddTransient(); - - services.AddLocalization(options => - { - options.ResourcesPath = "Resources"; - }); - } - - public void Configure (IApplicationBuilder app, IHostingEnvironment env, - IOptions siteSettings, ILoggerFactory loggerFactory) - { - loggerFactory.AddConsole(Configuration.GetSection("Logging")); - loggerFactory.AddDebug(); - logger = loggerFactory.CreateLogger(); - logger.LogInformation(env.EnvironmentName); - var cxstr = Configuration["Data:DefaultConnection:ConnectionString"]; - DbHelpers.ConnectionString = cxstr; - - } - - } -} diff --git a/cli/Services/EMailer.cs b/cli/Services/EMailer.cs index b351374e..ab375d82 100644 --- a/cli/Services/EMailer.cs +++ b/cli/Services/EMailer.cs @@ -25,146 +25,147 @@ using Microsoft.AspNet.Identity.EntityFramework; namespace cli.Services { - public class EMailer - { - RazorTemplateEngine razorEngine; - IStringLocalizer stringLocalizer; - ILogger logger; - ApplicationDbContext dbContext; - - const string DefaultBaseClassName = "ATemplate"; - const string DefaultBaseClass = nameof(UserOrientedTemplate); - const string DefaultNamespace = "CompiledRazorTemplates"; - - RazorEngineHost host; - public EMailer(ApplicationDbContext context, IStringLocalizer localizer, ILoggerFactory loggerFactory) + public class EMailer { - stringLocalizer = localizer; - - logger = loggerFactory.CreateLogger(); - - var language = new CSharpRazorCodeLanguage(); - - host = new RazorEngineHost(language) { - DefaultBaseClass = DefaultBaseClass, - DefaultClassName = DefaultBaseClassName, - DefaultNamespace = DefaultNamespace - }; - - - // Everyone needs the System namespace, right? - host.NamespaceImports.Add("System"); - host.NamespaceImports.Add("Yavsc.Templates"); - host.NamespaceImports.Add("Yavsc.Models"); - host.NamespaceImports.Add("Yavsc.Models.Identity"); - host.NamespaceImports.Add("Microsoft.AspNet.Identity.EntityFramework"); - host.InstrumentedSourceFilePath = "bin/output/approot/src/"; - host.StaticHelpers=true; - dbContext = context; - - this.razorEngine = new RazorTemplateEngine(host); - - - } - public void AllUserGen(long templateCode, string baseclassName = DefaultBaseClassName) - { - string className = "Generated"+baseclassName; + RazorTemplateEngine razorEngine; + IStringLocalizer stringLocalizer; + ILogger logger; + ApplicationDbContext dbContext; - string subtemp = stringLocalizer["MonthlySubjectTemplate"].Value; + const string DefaultBaseClassName = "ATemplate"; + const string DefaultBaseClass = nameof(UserOrientedTemplate); + const string DefaultNamespace = "CompiledRazorTemplates"; - logger.LogInformation($"Generating {subtemp}[{className}]"); - var templateInfo = dbContext.MailingTemplate.FirstOrDefault (t => t.Id == templateCode); + RazorEngineHost host; + public EMailer(ApplicationDbContext context, IStringLocalizer localizer, ILoggerFactory loggerFactory) + { + stringLocalizer = localizer; - logger.LogInformation ( $"Using code: {templateCode} and subject: {subtemp} " ); + logger = loggerFactory.CreateLogger(); - logger.LogInformation (templateInfo.Body); + var language = new CSharpRazorCodeLanguage(); - using (StringReader reader = new StringReader(templateInfo.Body)) { - - // Generate code for the template - var razorResult = - razorEngine.GenerateCode(reader,className,DefaultNamespace,"fakeFileName.cs"); + host = new RazorEngineHost(language) + { + DefaultBaseClass = DefaultBaseClass, + DefaultClassName = DefaultBaseClassName, + DefaultNamespace = DefaultNamespace + }; - logger.LogInformation("Razor exited "+(razorResult.Success?"Ok":"Ko")+"."); - logger.LogInformation(razorResult.GeneratedCode); - SyntaxTree syntaxTree = CSharpSyntaxTree.ParseText(razorResult.GeneratedCode); - + // Everyone needs the System namespace, right? + host.NamespaceImports.Add("System"); + host.NamespaceImports.Add("Yavsc.Templates"); + host.NamespaceImports.Add("Yavsc.Models"); + host.NamespaceImports.Add("Yavsc.Models.Identity"); + host.NamespaceImports.Add("Microsoft.AspNet.Identity.EntityFramework"); + host.InstrumentedSourceFilePath = "bin/output/approot/src/"; + host.StaticHelpers = true; + dbContext = context; - string assemblyName = Path.GetRandomFileName(); - MetadataReference[] references = new MetadataReference[] - { - MetadataReference.CreateFromFile(typeof(object).Assembly.Location), - MetadataReference.CreateFromFile(typeof(Enumerable).Assembly.Location), - MetadataReference.CreateFromFile(typeof(IdentityUser).Assembly.Location), - MetadataReference.CreateFromFile("bin/Debug/dnx451/cli.dll") , - MetadataReference.CreateFromFile( "../Yavsc/bin/Debug/dnx451/Yavsc.dll" ), - MetadataReference.CreateFromFile( "../Yavsc.Abstract/bin/Debug/dnx451/Yavsc.Abstract.dll" ) - }; -//Microsoft.CodeAnalysis.SourceReferenceResolver resolver = new CliSourceReferenceResolver() ; + this.razorEngine = new RazorTemplateEngine(host); + } + public string GenerateTemplateObject(string baseclassName = DefaultBaseClassName) + { + throw new NotImplementedException(); + } - var compilationOptions = new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary) -// .WithModuleName("Yavsc.Absctract").WithModuleName("Yavsc") - .WithAllowUnsafe(true).WithOptimizationLevel(OptimizationLevel.Release) - .WithOutputKind(OutputKind.DynamicallyLinkedLibrary).WithPlatform(Platform.AnyCpu); - - CSharpCompilation compilation = CSharpCompilation.Create( - assemblyName, - syntaxTrees: new[] { syntaxTree }, - references: references, - options: compilationOptions); + public void AllUserGen(long templateCode, string baseclassName = DefaultBaseClassName) + { + string className = "Generated" + baseclassName; + string subtemp = stringLocalizer["MonthlySubjectTemplate"].Value; - foreach (var mref in references) logger.LogInformation($"ctor used ref to {mref.Display}[{mref.Properties.Kind}]"); + logger.LogInformation($"Generating {subtemp}[{className}]"); + var templateInfo = dbContext.MailingTemplate.FirstOrDefault(t => t.Id == templateCode); - using (var ms = new MemoryStream()) + logger.LogInformation($"Using code: {templateCode} and subject: {subtemp} "); + + using (StringReader reader = new StringReader(templateInfo.Body)) { - EmitResult result = compilation.Emit(ms); - foreach (Diagnostic diagnostic in result.Diagnostics.Where(diagnostic => - diagnostic.Severity < DiagnosticSeverity.Error && !diagnostic.IsWarningAsError)) + + // Generate code for the template + var razorResult = razorEngine.GenerateCode(reader, className, DefaultNamespace, "fakeFileName.cs"); + + logger.LogInformation("Razor exited " + (razorResult.Success ? "Ok" : "Ko") + "."); + + SyntaxTree syntaxTree = CSharpSyntaxTree.ParseText(razorResult.GeneratedCode); + + string assemblyName = Path.GetRandomFileName(); + MetadataReference[] references = new MetadataReference[] + { + MetadataReference.CreateFromFile( typeof(object).Assembly.Location), + MetadataReference.CreateFromFile( typeof(Enumerable).Assembly.Location), + MetadataReference.CreateFromFile( typeof(IdentityUser).Assembly.Location), + MetadataReference.CreateFromFile( typeof(ApplicationUser).Assembly.Location), + MetadataReference.CreateFromFile( typeof(Template).Assembly.Location) + }; + + var compilationOptions = new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary) + .WithModuleName("Yavsc.Absctract").WithModuleName("Yavsc") + .WithAllowUnsafe(true).WithOptimizationLevel(OptimizationLevel.Release) + .WithOutputKind(OutputKind.DynamicallyLinkedLibrary).WithPlatform(Platform.AnyCpu); + + CSharpCompilation compilation = CSharpCompilation.Create( + assemblyName, + syntaxTrees: new[] { syntaxTree }, + references: references, + options: compilationOptions); + + + foreach (var mref in references) logger.LogInformation($"ctor used ref to {mref.Display}[{mref.Properties.Kind}]"); + + + using (var ms = new MemoryStream()) + { + EmitResult result = compilation.Emit(ms); + foreach (Diagnostic diagnostic in result.Diagnostics.Where(diagnostic => + diagnostic.Severity < DiagnosticSeverity.Error && !diagnostic.IsWarningAsError)) { logger.LogWarning("{0}: {1}", diagnostic.Id, diagnostic.GetMessage()); logger.LogWarning("{0}: {1}", diagnostic.Id, diagnostic.Location.GetLineSpan()); } - if (!result.Success) - { - IEnumerable failures = result.Diagnostics.Where(diagnostic => - diagnostic.IsWarningAsError || - diagnostic.Severity == DiagnosticSeverity.Error); - foreach (Diagnostic diagnostic in failures) + if (!result.Success) { - logger.LogCritical("{0}: {1}", diagnostic.Id, diagnostic.GetMessage()); - logger.LogCritical("{0}: {1}", diagnostic.Id, diagnostic.Location.GetLineSpan()); + logger.LogInformation(razorResult.GeneratedCode); + IEnumerable failures = result.Diagnostics.Where(diagnostic => + diagnostic.IsWarningAsError || + diagnostic.Severity == DiagnosticSeverity.Error); + foreach (Diagnostic diagnostic in failures) + { + logger.LogCritical("{0}: {1}", diagnostic.Id, diagnostic.GetMessage()); + logger.LogCritical("{0}: {1}", diagnostic.Id, diagnostic.Location.GetLineSpan()); + } + } + else + { + ms.Seek(0, SeekOrigin.Begin); + Assembly assembly = Assembly.Load(ms.ToArray()); + + Type type = assembly.GetType(DefaultNamespace + "." + className); + var generatedtemplate = (UserOrientedTemplate)Activator.CreateInstance(type); + foreach (var user in dbContext.ApplicationUser) + { + logger.LogInformation("Generation for " + user.UserName); + generatedtemplate.Init(); + generatedtemplate.User = user; + + logger.LogInformation(generatedtemplate.GeneratedText); + } + + /* ... type.InvokeMember("Write", + BindingFlags.Default | BindingFlags.InvokeMethod, + null, + model, + new object[] { "Hello World" }); */ + + } - } - else - { - ms.Seek(0, SeekOrigin.Begin); - Assembly assembly = Assembly.Load(ms.ToArray()); - - Type type = assembly.GetType(DefaultNamespace+"."+className); - var generatedtemplate = (UserOrientedTemplate) Activator.CreateInstance(type); - foreach (var user in dbContext.ApplicationUser) { - logger.LogInformation ("Generation for "+user.UserName); - generatedtemplate.Init(); - generatedtemplate.User = user; - - logger.LogInformation (generatedtemplate.GeneratedText); - } - - /* ... type.InvokeMember("Write", - BindingFlags.Default | BindingFlags.InvokeMethod, - null, - model, - new object[] { "Hello World" }); */ - - } } - } + } } - } } diff --git a/cli/Startup.cs b/cli/Startup.cs new file mode 100644 index 00000000..1f051d41 --- /dev/null +++ b/cli/Startup.cs @@ -0,0 +1,97 @@ +using System; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.OptionsModel; + +using System.Globalization; +using System.Reflection; +// using Microsoft.AspNet.Authorization; +using Microsoft.AspNet.Builder; +// using Microsoft.AspNet.Diagnostics; +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Identity; +using Microsoft.AspNet.Identity.EntityFramework; +using Microsoft.AspNet.Localization; +using Microsoft.AspNet.Mvc; +using Microsoft.AspNet.Mvc.Filters; +using Microsoft.AspNet.Mvc.Razor; +using Microsoft.Net.Http.Headers; +using Microsoft.AspNet.Razor; +using Microsoft.Extensions.DependencyInjection.Abstractions; +using Microsoft.Extensions.PlatformAbstractions; +using cli.Services; +using Yavsc; +using Yavsc.Models; +using Yavsc.Server.Helpers; +using Yavsc.Services; +using Yavsc.Templates; + +namespace cli +{ + public class Startup + { + public string ConnectionString + { + get { return DbHelpers.ConnectionString; } + private set { DbHelpers.ConnectionString = value; } + } + + public static SiteSettings SiteSetup { get; private set; } + public static SmtpSettings SmtpSettup { get; private set; } + public static IConfiguration Configuration { get; set; } + + public static string HostingFullName { get; private set; } + + ILogger logger; + public Startup(IHostingEnvironment env, IApplicationEnvironment appEnv) + { + var devtag = env.IsDevelopment()?"D":""; + var prodtag = env.IsProduction()?"P":""; + var stagetag = env.IsStaging()?"S":""; + + HostingFullName = $"{appEnv.RuntimeFramework.FullName} [{env.EnvironmentName}:{prodtag}{devtag}{stagetag}]"; + // Set up configuration sources. + + var builder = new ConfigurationBuilder() + .AddEnvironmentVariables() + .AddJsonFile("appsettings.json") + .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true); + Configuration = builder.Build(); + + } + + public void ConfigureServices (IServiceCollection services) + { + services.AddOptions(); + var siteSettingsconf = Configuration.GetSection("Site"); + services.Configure(siteSettingsconf); + var smtpSettingsconf = Configuration.GetSection("Smtp"); + services.Configure(smtpSettingsconf); + services.AddInstance(typeof(ILoggerFactory), new LoggerFactory()); + services.AddTransient(typeof(IEmailSender), typeof(MessageSender)); + services.AddTransient(typeof(RazorEngineHost), typeof(YaRazorEngineHost)); + services.AddEntityFramework().AddNpgsql().AddDbContext(); + services.AddTransient((s) => new RazorTemplateEngine(s.GetService())); + services.AddLogging(); + services.AddTransient(); + services.AddLocalization(options => + { + options.ResourcesPath = "Resources"; + }); + } + + public void Configure (IApplicationBuilder app, IHostingEnvironment env, + IOptions siteSettings, ILoggerFactory loggerFactory) + { + loggerFactory.AddConsole(Configuration.GetSection("Logging")); + loggerFactory.AddDebug(); + logger = loggerFactory.CreateLogger(); + logger.LogInformation(env.EnvironmentName); + var cxstr = Configuration["Data:DefaultConnection:ConnectionString"]; + DbHelpers.ConnectionString = cxstr; + + } + + } +} \ No newline at end of file diff --git a/cli/project.json b/cli/project.json index b56ad03f..947821c9 100644 --- a/cli/project.json +++ b/cli/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.0.5-*", "commands": { "run": "cli" }, @@ -38,12 +38,14 @@ "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final", "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1-*", "Microsoft.AspNet.Identity": "3.0.0-rc1-*", - "Yavsc": "1.0.5-rc13", "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final", - "Microsoft.CodeAnalysis": "1.0.0-rc1" + "Microsoft.CodeAnalysis": "1.0.0-rc1", + "EntityFramework7.Npgsql": "3.1.0-rc1-3", + "Yavsc.Abstract": { "version": "1.0.5-rc14", "target": "package" }, + "Yavsc": { "version": "1.0.5-rc14", "target": "package" } }, "frameworks": { "dnx451": {} } -} +} \ No newline at end of file diff --git a/cli/project.lock.json b/cli/project.lock.json index e49d2f8d..8d140b4a 100644 --- a/cli/project.lock.json +++ b/cli/project.lock.json @@ -3,44 +3,6 @@ "version": 2, "targets": { "DNX,Version=v4.5.1": { - "Antlr/3.4.1.9004": { - "type": "package", - "compile": { - "lib/Antlr3.Runtime.dll": {} - }, - "runtime": { - "lib/Antlr3.Runtime.dll": {} - } - }, - "BouncyCastle/1.8.1": { - "type": "package", - "compile": { - "lib/BouncyCastle.Crypto.dll": {} - }, - "runtime": { - "lib/BouncyCastle.Crypto.dll": {} - } - }, - "EntityFramework.Commands/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-rc1-final", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/EntityFramework.Commands.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework.Commands.dll": {} - } - }, "EntityFramework.Core/7.0.0-rc1-final": { "type": "package", "dependencies": { @@ -83,24 +45,6 @@ "lib/dnx451/EntityFramework.Core.dll": {} } }, - "EntityFramework.MicrosoftSqlServer/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/EntityFramework.MicrosoftSqlServer.dll": {} - }, - "runtime": { - "lib/net451/EntityFramework.MicrosoftSqlServer.dll": {} - } - }, "EntityFramework.Relational/7.0.0-rc1-final": { "type": "package", "dependencies": { @@ -122,28 +66,6 @@ "lib/net451/EntityFramework.Relational.dll": {} } }, - "EntityFramework.Relational.Design/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.ComponentModel.DataAnnotations", - "System.Core", - "System.IO", - "System.Text.Encoding", - "System.Threading.Tasks" - ], - "compile": { - "lib/dnx451/EntityFramework.Relational.Design.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework.Relational.Design.dll": {} - } - }, "EntityFramework7.Npgsql/3.1.0-rc1-3": { "type": "package", "dependencies": { @@ -171,44 +93,6 @@ "lib/dnx451/EntityFramework7.Npgsql.dll": {} } }, - "EntityFramework7.Npgsql.Design/3.1.0-rc1-5": { - "type": "package", - "dependencies": { - "EntityFramework.Core": "7.0.0-rc1-final", - "EntityFramework.Relational": "7.0.0-rc1-final", - "EntityFramework.Relational.Design": "7.0.0-rc1-final", - "EntityFramework7.Npgsql": "3.1.0-rc1-3", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", - "Npgsql": "3.1.0-alpha6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections", - "System.Core", - "System.Diagnostics.Contracts", - "System.Linq.Expressions", - "System.Reflection", - "System.Runtime" - ], - "compile": { - "lib/dnx451/EntityFramework7.Npgsql.Design.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework7.Npgsql.Design.dll": {} - } - }, - "Gapi.net45/1.0.0": { - "type": "package", - "compile": { - "lib/net451/gapi.dll": {} - }, - "runtime": { - "lib/net451/gapi.dll": {} - } - }, "Ix-Async/1.2.5": { "type": "package", "frameworkAssemblies": [ @@ -222,36 +106,6 @@ "lib/net45/System.Interactive.Async.dll": {} } }, - "jQuery/1.6.4": { - "type": "package" - }, - "MailKit/1.12.0": { - "type": "package", - "dependencies": { - "BouncyCastle": "1.8.1", - "MimeKit": "1.12.0" - }, - "frameworkAssemblies": [ - "System", - "System.Core", - "System.Data" - ], - "compile": { - "lib/net451/MailKit.dll": {} - }, - "runtime": { - "lib/net451/MailKit.dll": {} - } - }, - "MarkdownDeep-av.NET/1.5.6": { - "type": "package", - "compile": { - "lib/net451/MarkdownDeep.dll": {} - }, - "runtime": { - "lib/net451/MarkdownDeep.dll": {} - } - }, "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -319,84 +173,6 @@ "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} } }, - "Microsoft.AspNet.Authentication.Facebook/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll": {} - } - }, - "Microsoft.AspNet.Authentication.JwtBearer/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll": {} - } - }, - "Microsoft.AspNet.Authentication.OAuth/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll": {} - } - }, - "Microsoft.AspNet.Authentication.Twitter/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll": {} - } - }, "Microsoft.AspNet.Authorization/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -515,55 +291,6 @@ "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} } }, - "Microsoft.AspNet.DataProtection.SystemWeb/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Configuration", - "System.Core", - "System.Security", - "System.Web" - ], - "compile": { - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll": {} - } - }, - "Microsoft.AspNet.Diagnostics/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", - "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", - "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Diagnostics.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Diagnostics.dll": {} - } - }, "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -579,27 +306,6 @@ "lib/net451/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} } }, - "Microsoft.AspNet.Diagnostics.Entity/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Configuration", - "System.Core", - "System.Threading.Tasks" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll": {} - } - }, "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -842,25 +548,6 @@ "lib/net451/Microsoft.AspNet.Identity.EntityFramework.dll": {} } }, - "Microsoft.AspNet.IISPlatformHandler/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll": {} - } - }, "Microsoft.AspNet.JsonPatch/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -1116,12 +803,15 @@ "lib/net451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} } }, - "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-rc1-final": { + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.AspNet.Mvc.Razor": "6.0.0-rc1-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc1-final", - "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc1-final" + "Microsoft.AspNet.Antiforgery": "1.0.0-rc1-final", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-rc1-final", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -1130,51 +820,10 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} - } - }, - "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Antiforgery": "1.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Html.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} - } - }, - "Microsoft.AspNet.OWin/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Owin.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Owin.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} } }, "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-rc1-final": { @@ -1268,176 +917,6 @@ "lib/net451/Microsoft.AspNet.Routing.dll": {} } }, - "Microsoft.AspNet.Server.Kestrel/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "System.Numerics.Vectors": "4.1.1-beta-23516" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} - } - }, - "Microsoft.AspNet.Server.WebListener/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", - "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", - "Microsoft.Net.Http.Server": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} - } - }, - "Microsoft.AspNet.Session/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Session.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Session.dll": {} - } - }, - "Microsoft.AspNet.SignalR.Core/2.2.1": { - "type": "package", - "dependencies": { - "Microsoft.Owin": "2.1.0", - "Microsoft.Owin.Security": "2.1.0", - "Newtonsoft.Json": "6.0.4", - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.AspNet.SignalR.Core.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.AspNet.SignalR.Core.dll": {} - } - }, - "Microsoft.AspNet.SignalR.JS/2.2.1": { - "type": "package", - "dependencies": { - "jQuery": "1.6.4" - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.AspNet.Tooling.Razor/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll": {} - } - }, - "Microsoft.AspNet.Web.Optimization/1.1.3": { - "type": "package", - "dependencies": { - "Microsoft.Web.Infrastructure": "1.0.0", - "WebGrease": "1.5.2" - }, - "compile": { - "lib/net40/System.Web.Optimization.dll": {} - }, - "runtime": { - "lib/net40/System.Web.Optimization.dll": {} - } - }, - "Microsoft.AspNet.WebSockets.Protocol/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll": {} - } - }, - "Microsoft.AspNet.WebSockets.Server/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll": {} - } - }, "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -1572,9 +1051,6 @@ "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {} } }, - "Microsoft.DiaSymReader.Native/1.5.0": { - "type": "package" - }, "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -1759,27 +1235,6 @@ "lib/dnx451/Microsoft.Extensions.CodeGeneration.Templating.dll": {} } }, - "Microsoft.Extensions.CodeGenerators.Mvc/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll": {} - } - }, "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -1979,21 +1434,6 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} - } - }, "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -2273,24 +1713,6 @@ "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} } }, - "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { - "type": "package", - "dependencies": { - "Microsoft.Framework.Configuration": "1.0.0-beta8" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} - } - }, "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { "type": "package", "dependencies": { @@ -2397,7 +1819,7 @@ "lib/dnx451/Microsoft.Framework.Runtime.Interfaces.dll": {} } }, - "Microsoft.IdentityModel.Logging/1.0.0-rc1-211161024": { + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", @@ -2406,36 +1828,23 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.IdentityModel.Logging.dll": {} + "lib/net451/Microsoft.Net.Http.Headers.dll": {} }, "runtime": { - "lib/net451/Microsoft.IdentityModel.Logging.dll": {} + "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Microsoft.IdentityModel.Protocols/2.0.0-rc1-211161024": { + "Newtonsoft.Json/6.0.6": { "type": "package", - "dependencies": { - "System.IdentityModel.Tokens.Jwt": "5.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], "compile": { - "lib/net451/Microsoft.IdentityModel.Protocols.dll": {} + "lib/net45/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/net451/Microsoft.IdentityModel.Protocols.dll": {} + "lib/net45/Newtonsoft.Json.dll": {} } }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0-rc1-211161024": { + "Npgsql/3.1.0-alpha6": { "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "2.0.0-rc1-211161024" - }, "frameworkAssemblies": [ "Microsoft.CSharp", "mscorlib", @@ -2443,199 +1852,22 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + "lib/net45/Npgsql.dll": {} }, "runtime": { - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + "lib/net45/Npgsql.dll": {} } }, - "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "Remotion.Linq/2.0.1": { "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], "compile": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} + "lib/net45/Remotion.Linq.dll": {} }, "runtime": { - "lib/net451/Microsoft.Net.Http.Headers.dll": {} + "lib/net45/Remotion.Linq.dll": {} } }, - "Microsoft.Net.Http.Server/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", - "Microsoft.Net.WebSockets": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Server.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Server.dll": {} - } - }, - "Microsoft.Net.WebSockets/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.WebSockets.dll": {} - } - }, - "Microsoft.Owin/2.1.0": { - "type": "package", - "dependencies": { - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.Owin.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.Owin.dll": {} - } - }, - "Microsoft.Owin.Security/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Owin": "2.1.0", - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.Owin.Security.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.Owin.Security.dll": {} - } - }, - "Microsoft.Web.Infrastructure/1.0.0": { - "type": "package", - "compile": { - "lib/net40/Microsoft.Web.Infrastructure.dll": {} - }, - "runtime": { - "lib/net40/Microsoft.Web.Infrastructure.dll": {} - } - }, - "MimeKit/1.12.0": { - "type": "package", - "dependencies": { - "BouncyCastle": "1.8.1" - }, - "frameworkAssemblies": [ - "System", - "System.Core", - "System.Data", - "System.Security" - ], - "compile": { - "lib/net451/MimeKit.dll": {} - }, - "runtime": { - "lib/net451/MimeKit.dll": {} - } - }, - "Newtonsoft.Json/9.0.1": { - "type": "package", - "compile": { - "lib/net45/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/net45/Newtonsoft.Json.dll": {} - } - }, - "Npgsql/3.1.0-alpha6": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net45/Npgsql.dll": {} - }, - "runtime": { - "lib/net45/Npgsql.dll": {} - } - }, - "OAuth.AspNet.AuthServer/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1", - "Newtonsoft.Json": "9.0.1", - "OAuth.AspNet.Token": null - } - }, - "OAuth.AspNet.Token/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Authentication.JwtBearer": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Newtonsoft.Json": "9.0.1" - } - }, - "Owin/1.0.0": { - "type": "package", - "compile": { - "lib/net40/Owin.dll": {} - }, - "runtime": { - "lib/net40/Owin.dll": {} - } - }, - "PayPalCoreSDK/1.7.1": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "7.0.1" - }, - "compile": { - "lib/net451/PayPalCoreSDK.dll": {} - }, - "runtime": { - "lib/net451/PayPalCoreSDK.dll": {} - } - }, - "PayPalMerchant-net451/2.7.109": { - "type": "package", - "dependencies": { - "PayPalCoreSDK": "1.7.1" - }, - "compile": { - "lib/net451/PayPalMerchantSDK.dll": {} - }, - "runtime": { - "lib/net451/PayPalMerchantSDK.dll": {} - } - }, - "Remotion.Linq/2.0.1": { - "type": "package", - "compile": { - "lib/net45/Remotion.Linq.dll": {} - }, - "runtime": { - "lib/net45/Remotion.Linq.dll": {} - } - }, - "System.Collections/4.0.0": { + "System.Collections/4.0.0": { "type": "package", "compile": { "ref/net45/_._": {} @@ -2704,44 +1936,6 @@ "lib/net45/_._": {} } }, - "System.IdentityModel.Tokens/5.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "1.0.0-rc1-211161024", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Xml" - ], - "compile": { - "lib/net451/System.IdentityModel.Tokens.dll": {} - }, - "runtime": { - "lib/net451/System.IdentityModel.Tokens.dll": {} - } - }, - "System.IdentityModel.Tokens.Jwt/5.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "System.IdentityModel.Tokens": "5.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/System.IdentityModel.Tokens.Jwt.dll": {} - }, - "runtime": { - "lib/net451/System.IdentityModel.Tokens.Jwt.dll": {} - } - }, "System.IO/4.0.0": { "type": "package", "compile": { @@ -2751,15 +1945,6 @@ "lib/net45/_._": {} } }, - "System.Json/4.0.20126.16343": { - "type": "package", - "compile": { - "lib/net40/System.Json.dll": {} - }, - "runtime": { - "lib/net40/System.Json.dll": {} - } - }, "System.Linq/4.0.0": { "type": "package", "compile": { @@ -2769,15 +1954,6 @@ "lib/net45/_._": {} } }, - "System.Numerics.Vectors/4.1.1-beta-23516": { - "type": "package", - "compile": { - "lib/portable-net45+win8/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Numerics.Vectors.dll": {} - } - }, "System.Reflection/4.0.0": { "type": "package", "compile": { @@ -2893,145 +2069,29 @@ "lib/net45/_._": {} } }, - "WebGrease/1.5.2": { + "Yavsc/1.0.5-rc14": { "type": "package", "dependencies": { - "Antlr": "3.4.1.9004", - "Newtonsoft.Json": "5.0.4" - }, - "compile": { - "lib/WebGrease.dll": {} - }, - "runtime": { - "lib/WebGrease.dll": {} - } - }, - "Yavsc/1.0.5-rc12": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "EntityFramework.Commands": "7.0.0-rc1-final", - "EntityFramework.Core": "7.0.0-rc1-final", - "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final", - "EntityFramework.Relational": "7.0.0-rc1-final", - "EntityFramework7.Npgsql": "3.1.0-rc1-3", - "EntityFramework7.Npgsql.Design": "3.1.0-rc1-5", - "Gapi.net45": "1.0.0", - "MailKit": "1.12.0", - "MarkdownDeep-av.NET": "1.5.6", - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Facebook": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.JwtBearer": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Twitter": "1.0.0-rc1-final", - "Microsoft.AspNet.Authorization": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection.SystemWeb": "1.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics.Entity": "7.0.0-rc1-final", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1", - "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1", - "Microsoft.AspNet.Localization": "1.0.0-rc1-final", - "Microsoft.AspNet.Mvc": "6.0.0-rc1", - "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1", - "Microsoft.AspNet.OWin": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final", - "Microsoft.AspNet.Session": "1.0.0-rc1-final", - "Microsoft.AspNet.SignalR.Core": "2.2.1", - "Microsoft.AspNet.SignalR.JS": "2.2.1", - "Microsoft.AspNet.StaticFiles": "1.0.0-rc1", - "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1", - "Microsoft.AspNet.Web.Optimization": "1.1.3", - "Microsoft.AspNet.WebSockets.Server": "1.0.0-rc1", - "Microsoft.DiaSymReader.Native": "1.5.0", - "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGenerators.Mvc": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-rc1-final", - "Microsoft.Extensions.Localization": "1.0.0-rc1-final", - "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.TraceSource": "1.0.0-rc1-final", - "Microsoft.Extensions.Options": "0.0.1-alpha", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", - "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", - "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", - "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", - "Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta4", - "OAuth.AspNet.AuthServer": null, - "OAuth.AspNet.Token": null, - "PayPalMerchant-net451": "2.7.109", - "System.Json": "4.0.20126.16343", - "Yavsc.Abstract": null - }, - "frameworkAssemblies": [ - "System", - "System.Drawing", - "System.Net", - "System.Xml" - ] - }, - "Yavsc.Abstract/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Newtonsoft.Json": "9.0.1" + "Yavsc.Abstract": "1.0.5-rc14" }, - "frameworkAssemblies": [ - "System.ComponentModel.DataAnnotations" - ] - } - }, - "DNX,Version=v4.5.1/debian.9-x86": { - "Antlr/3.4.1.9004": { - "type": "package", "compile": { - "lib/Antlr3.Runtime.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll": {} }, "runtime": { - "lib/Antlr3.Runtime.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll": {} } }, - "BouncyCastle/1.8.1": { + "Yavsc.Abstract/1.0.5-rc14": { "type": "package", "compile": { - "lib/BouncyCastle.Crypto.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll": {} }, "runtime": { - "lib/BouncyCastle.Crypto.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll": {} } - }, - "EntityFramework.Commands/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-rc1-final", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/EntityFramework.Commands.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework.Commands.dll": {} - } - }, + } + }, + "DNX,Version=v4.5.1/debian.9-x86": { "EntityFramework.Core/7.0.0-rc1-final": { "type": "package", "dependencies": { @@ -3074,24 +2134,6 @@ "lib/dnx451/EntityFramework.Core.dll": {} } }, - "EntityFramework.MicrosoftSqlServer/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/EntityFramework.MicrosoftSqlServer.dll": {} - }, - "runtime": { - "lib/net451/EntityFramework.MicrosoftSqlServer.dll": {} - } - }, "EntityFramework.Relational/7.0.0-rc1-final": { "type": "package", "dependencies": { @@ -3113,28 +2155,6 @@ "lib/net451/EntityFramework.Relational.dll": {} } }, - "EntityFramework.Relational.Design/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.ComponentModel.DataAnnotations", - "System.Core", - "System.IO", - "System.Text.Encoding", - "System.Threading.Tasks" - ], - "compile": { - "lib/dnx451/EntityFramework.Relational.Design.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework.Relational.Design.dll": {} - } - }, "EntityFramework7.Npgsql/3.1.0-rc1-3": { "type": "package", "dependencies": { @@ -3162,44 +2182,6 @@ "lib/dnx451/EntityFramework7.Npgsql.dll": {} } }, - "EntityFramework7.Npgsql.Design/3.1.0-rc1-5": { - "type": "package", - "dependencies": { - "EntityFramework.Core": "7.0.0-rc1-final", - "EntityFramework.Relational": "7.0.0-rc1-final", - "EntityFramework.Relational.Design": "7.0.0-rc1-final", - "EntityFramework7.Npgsql": "3.1.0-rc1-3", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", - "Npgsql": "3.1.0-alpha6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections", - "System.Core", - "System.Diagnostics.Contracts", - "System.Linq.Expressions", - "System.Reflection", - "System.Runtime" - ], - "compile": { - "lib/dnx451/EntityFramework7.Npgsql.Design.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework7.Npgsql.Design.dll": {} - } - }, - "Gapi.net45/1.0.0": { - "type": "package", - "compile": { - "lib/net451/gapi.dll": {} - }, - "runtime": { - "lib/net451/gapi.dll": {} - } - }, "Ix-Async/1.2.5": { "type": "package", "frameworkAssemblies": [ @@ -3213,36 +2195,6 @@ "lib/net45/System.Interactive.Async.dll": {} } }, - "jQuery/1.6.4": { - "type": "package" - }, - "MailKit/1.12.0": { - "type": "package", - "dependencies": { - "BouncyCastle": "1.8.1", - "MimeKit": "1.12.0" - }, - "frameworkAssemblies": [ - "System", - "System.Core", - "System.Data" - ], - "compile": { - "lib/net451/MailKit.dll": {} - }, - "runtime": { - "lib/net451/MailKit.dll": {} - } - }, - "MarkdownDeep-av.NET/1.5.6": { - "type": "package", - "compile": { - "lib/net451/MarkdownDeep.dll": {} - }, - "runtime": { - "lib/net451/MarkdownDeep.dll": {} - } - }, "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -3304,88 +2256,10 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} - } - }, - "Microsoft.AspNet.Authentication.Facebook/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll": {} - } - }, - "Microsoft.AspNet.Authentication.JwtBearer/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll": {} - } - }, - "Microsoft.AspNet.Authentication.OAuth/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll": {} - } - }, - "Microsoft.AspNet.Authentication.Twitter/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll": {} + "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll": {} + "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} } }, "Microsoft.AspNet.Authorization/1.0.0-rc1-final": { @@ -3506,55 +2380,6 @@ "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} } }, - "Microsoft.AspNet.DataProtection.SystemWeb/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Configuration", - "System.Core", - "System.Security", - "System.Web" - ], - "compile": { - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll": {} - } - }, - "Microsoft.AspNet.Diagnostics/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", - "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", - "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Diagnostics.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Diagnostics.dll": {} - } - }, "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -3570,27 +2395,6 @@ "lib/net451/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} } }, - "Microsoft.AspNet.Diagnostics.Entity/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Configuration", - "System.Core", - "System.Threading.Tasks" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll": {} - } - }, "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -3833,25 +2637,6 @@ "lib/net451/Microsoft.AspNet.Identity.EntityFramework.dll": {} } }, - "Microsoft.AspNet.IISPlatformHandler/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll": {} - } - }, "Microsoft.AspNet.JsonPatch/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -4083,208 +2868,16 @@ "lib/net451/Microsoft.AspNet.Mvc.Razor.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.Razor.dll": {} - } - }, - "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", - "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc1-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} - } - }, - "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Mvc.Razor": "6.0.0-rc1-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc1-final", - "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} - } - }, - "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Antiforgery": "1.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Html.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} - } - }, - "Microsoft.AspNet.OWin/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Owin.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Owin.dll": {} - } - }, - "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} - } - }, - "Microsoft.AspNet.Razor/4.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Razor.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Razor.dll": {} - } - }, - "Microsoft.AspNet.Razor.Runtime/4.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Html.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Razor": "4.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Xml", - "System.Xml.Linq" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Razor.Runtime.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Razor.Runtime.dll": {} - } - }, - "Microsoft.AspNet.Razor.Runtime.Precompilation/4.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", - "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} - } - }, - "Microsoft.AspNet.Routing/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Routing.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Routing.dll": {} - } - }, - "Microsoft.AspNet.Server.Kestrel/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "System.Numerics.Vectors": "4.1.1-beta-23516" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.Razor.dll": {} } }, - "Microsoft.AspNet.Server.WebListener/1.0.0-rc1-final": { + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", - "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", - "Microsoft.Net.Http.Server": "1.0.0-rc1-final" + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", + "Microsoft.Extensions.Caching.Memory": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -4293,19 +2886,21 @@ "System.Core" ], "compile": { - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} }, "runtime": { - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} } }, - "Microsoft.AspNet.Session/1.0.0-rc1-final": { + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" + "Microsoft.AspNet.Antiforgery": "1.0.0-rc1-final", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Mvc.Core": "6.0.0-rc1-final", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-rc1-final", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -4314,42 +2909,29 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.Session.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Session.dll": {} + "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} } }, - "Microsoft.AspNet.SignalR.Core/2.2.1": { + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-rc1-final": { "type": "package", - "dependencies": { - "Microsoft.Owin": "2.1.0", - "Microsoft.Owin.Security": "2.1.0", - "Newtonsoft.Json": "6.0.4", - "Owin": "1.0.0" - }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], "compile": { - "lib/net45/Microsoft.AspNet.SignalR.Core.dll": {} + "lib/net451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} }, "runtime": { - "lib/net45/Microsoft.AspNet.SignalR.Core.dll": {} - } - }, - "Microsoft.AspNet.SignalR.JS/2.2.1": { - "type": "package", - "dependencies": { - "jQuery": "1.6.4" + "lib/net451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} } }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc1-final": { + "Microsoft.AspNet.Razor/4.0.0-rc1-final": { "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final" - }, "frameworkAssemblies": [ "Microsoft.CSharp", "mscorlib", @@ -4357,64 +2939,59 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + "lib/net451/Microsoft.AspNet.Razor.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} + "lib/net451/Microsoft.AspNet.Razor.dll": {} } }, - "Microsoft.AspNet.Tooling.Razor/1.0.0-rc1-final": { + "Microsoft.AspNet.Razor.Runtime/4.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" + "Microsoft.AspNet.Html.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Razor": "4.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", "mscorlib", "System", - "System.Core" + "System.Core", + "System.Xml", + "System.Xml.Linq" ], "compile": { - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll": {} + "lib/net451/Microsoft.AspNet.Razor.Runtime.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll": {} + "lib/net451/Microsoft.AspNet.Razor.Runtime.dll": {} } }, - "Microsoft.AspNet.Web.Optimization/1.1.3": { + "Microsoft.AspNet.Razor.Runtime.Precompilation/4.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.Web.Infrastructure": "1.0.0", - "WebGrease": "1.5.2" - }, - "compile": { - "lib/net40/System.Web.Optimization.dll": {} + "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-rc1-final" }, - "runtime": { - "lib/net40/System.Web.Optimization.dll": {} - } - }, - "Microsoft.AspNet.WebSockets.Protocol/1.0.0-rc1-final": { - "type": "package", "frameworkAssemblies": [ "Microsoft.CSharp", "mscorlib", "System", - "System.Core" + "System.Core", + "System.Runtime" ], "compile": { - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll": {} + "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll": {} + "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} } }, - "Microsoft.AspNet.WebSockets.Server/1.0.0-rc1-final": { + "Microsoft.AspNet.Routing/1.0.0-rc1-final": { "type": "package", "dependencies": { "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final" + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -4423,10 +3000,10 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll": {} + "lib/net451/Microsoft.AspNet.Routing.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll": {} + "lib/net451/Microsoft.AspNet.Routing.dll": {} } }, "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { @@ -4563,9 +3140,6 @@ "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {} } }, - "Microsoft.DiaSymReader.Native/1.5.0": { - "type": "package" - }, "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -4750,27 +3324,6 @@ "lib/dnx451/Microsoft.Extensions.CodeGeneration.Templating.dll": {} } }, - "Microsoft.Extensions.CodeGenerators.Mvc/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll": {} - } - }, "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -4970,21 +3523,6 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} - } - }, "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -5264,24 +3802,6 @@ "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} } }, - "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { - "type": "package", - "dependencies": { - "Microsoft.Framework.Configuration": "1.0.0-beta8" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} - } - }, "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { "type": "package", "dependencies": { @@ -5388,58 +3908,6 @@ "lib/dnx451/Microsoft.Framework.Runtime.Interfaces.dll": {} } }, - "Microsoft.IdentityModel.Logging/1.0.0-rc1-211161024": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.IdentityModel.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.IdentityModel.Logging.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols/2.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "System.IdentityModel.Tokens.Jwt": "5.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.IdentityModel.Protocols.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.IdentityModel.Protocols.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "2.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} - } - }, "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -5455,94 +3923,7 @@ "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Microsoft.Net.Http.Server/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", - "Microsoft.Net.WebSockets": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Server.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Server.dll": {} - } - }, - "Microsoft.Net.WebSockets/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.WebSockets.dll": {} - } - }, - "Microsoft.Owin/2.1.0": { - "type": "package", - "dependencies": { - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.Owin.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.Owin.dll": {} - } - }, - "Microsoft.Owin.Security/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Owin": "2.1.0", - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.Owin.Security.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.Owin.Security.dll": {} - } - }, - "Microsoft.Web.Infrastructure/1.0.0": { - "type": "package", - "compile": { - "lib/net40/Microsoft.Web.Infrastructure.dll": {} - }, - "runtime": { - "lib/net40/Microsoft.Web.Infrastructure.dll": {} - } - }, - "MimeKit/1.12.0": { - "type": "package", - "dependencies": { - "BouncyCastle": "1.8.1" - }, - "frameworkAssemblies": [ - "System", - "System.Core", - "System.Data", - "System.Security" - ], - "compile": { - "lib/net451/MimeKit.dll": {} - }, - "runtime": { - "lib/net451/MimeKit.dll": {} - } - }, - "Newtonsoft.Json/9.0.1": { + "Newtonsoft.Json/6.0.6": { "type": "package", "compile": { "lib/net45/Newtonsoft.Json.dll": {} @@ -5566,57 +3947,6 @@ "lib/net45/Npgsql.dll": {} } }, - "OAuth.AspNet.AuthServer/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1", - "Newtonsoft.Json": "9.0.1", - "OAuth.AspNet.Token": null - } - }, - "OAuth.AspNet.Token/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Authentication.JwtBearer": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Newtonsoft.Json": "9.0.1" - } - }, - "Owin/1.0.0": { - "type": "package", - "compile": { - "lib/net40/Owin.dll": {} - }, - "runtime": { - "lib/net40/Owin.dll": {} - } - }, - "PayPalCoreSDK/1.7.1": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "7.0.1" - }, - "compile": { - "lib/net451/PayPalCoreSDK.dll": {} - }, - "runtime": { - "lib/net451/PayPalCoreSDK.dll": {} - } - }, - "PayPalMerchant-net451/2.7.109": { - "type": "package", - "dependencies": { - "PayPalCoreSDK": "1.7.1" - }, - "compile": { - "lib/net451/PayPalMerchantSDK.dll": {} - }, - "runtime": { - "lib/net451/PayPalMerchantSDK.dll": {} - } - }, "Remotion.Linq/2.0.1": { "type": "package", "compile": { @@ -5695,44 +4025,6 @@ "lib/net45/_._": {} } }, - "System.IdentityModel.Tokens/5.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "1.0.0-rc1-211161024", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Xml" - ], - "compile": { - "lib/net451/System.IdentityModel.Tokens.dll": {} - }, - "runtime": { - "lib/net451/System.IdentityModel.Tokens.dll": {} - } - }, - "System.IdentityModel.Tokens.Jwt/5.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "System.IdentityModel.Tokens": "5.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/System.IdentityModel.Tokens.Jwt.dll": {} - }, - "runtime": { - "lib/net451/System.IdentityModel.Tokens.Jwt.dll": {} - } - }, "System.IO/4.0.0": { "type": "package", "compile": { @@ -5742,15 +4034,6 @@ "lib/net45/_._": {} } }, - "System.Json/4.0.20126.16343": { - "type": "package", - "compile": { - "lib/net40/System.Json.dll": {} - }, - "runtime": { - "lib/net40/System.Json.dll": {} - } - }, "System.Linq/4.0.0": { "type": "package", "compile": { @@ -5760,15 +4043,6 @@ "lib/net45/_._": {} } }, - "System.Numerics.Vectors/4.1.1-beta-23516": { - "type": "package", - "compile": { - "lib/portable-net45+win8/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Numerics.Vectors.dll": {} - } - }, "System.Reflection/4.0.0": { "type": "package", "compile": { @@ -5884,145 +4158,29 @@ "lib/net45/_._": {} } }, - "WebGrease/1.5.2": { + "Yavsc/1.0.5-rc14": { "type": "package", "dependencies": { - "Antlr": "3.4.1.9004", - "Newtonsoft.Json": "5.0.4" - }, - "compile": { - "lib/WebGrease.dll": {} - }, - "runtime": { - "lib/WebGrease.dll": {} - } - }, - "Yavsc/1.0.5-rc12": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "EntityFramework.Commands": "7.0.0-rc1-final", - "EntityFramework.Core": "7.0.0-rc1-final", - "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final", - "EntityFramework.Relational": "7.0.0-rc1-final", - "EntityFramework7.Npgsql": "3.1.0-rc1-3", - "EntityFramework7.Npgsql.Design": "3.1.0-rc1-5", - "Gapi.net45": "1.0.0", - "MailKit": "1.12.0", - "MarkdownDeep-av.NET": "1.5.6", - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Facebook": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.JwtBearer": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Twitter": "1.0.0-rc1-final", - "Microsoft.AspNet.Authorization": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection.SystemWeb": "1.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics.Entity": "7.0.0-rc1-final", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1", - "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1", - "Microsoft.AspNet.Localization": "1.0.0-rc1-final", - "Microsoft.AspNet.Mvc": "6.0.0-rc1", - "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1", - "Microsoft.AspNet.OWin": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final", - "Microsoft.AspNet.Session": "1.0.0-rc1-final", - "Microsoft.AspNet.SignalR.Core": "2.2.1", - "Microsoft.AspNet.SignalR.JS": "2.2.1", - "Microsoft.AspNet.StaticFiles": "1.0.0-rc1", - "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1", - "Microsoft.AspNet.Web.Optimization": "1.1.3", - "Microsoft.AspNet.WebSockets.Server": "1.0.0-rc1", - "Microsoft.DiaSymReader.Native": "1.5.0", - "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGenerators.Mvc": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-rc1-final", - "Microsoft.Extensions.Localization": "1.0.0-rc1-final", - "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.TraceSource": "1.0.0-rc1-final", - "Microsoft.Extensions.Options": "0.0.1-alpha", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", - "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", - "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", - "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", - "Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta4", - "OAuth.AspNet.AuthServer": null, - "OAuth.AspNet.Token": null, - "PayPalMerchant-net451": "2.7.109", - "System.Json": "4.0.20126.16343", - "Yavsc.Abstract": null - }, - "frameworkAssemblies": [ - "System", - "System.Drawing", - "System.Net", - "System.Xml" - ] - }, - "Yavsc.Abstract/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Newtonsoft.Json": "9.0.1" - }, - "frameworkAssemblies": [ - "System.ComponentModel.DataAnnotations" - ] - } - }, - "DNX,Version=v4.5.1/debian.9-x64": { - "Antlr/3.4.1.9004": { - "type": "package", - "compile": { - "lib/Antlr3.Runtime.dll": {} + "Yavsc.Abstract": "1.0.5-rc14" }, - "runtime": { - "lib/Antlr3.Runtime.dll": {} - } - }, - "BouncyCastle/1.8.1": { - "type": "package", "compile": { - "lib/BouncyCastle.Crypto.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll": {} }, "runtime": { - "lib/BouncyCastle.Crypto.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll": {} } }, - "EntityFramework.Commands/7.0.0-rc1-final": { + "Yavsc.Abstract/1.0.5-rc14": { "type": "package", - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-rc1-final", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], "compile": { - "lib/dnx451/EntityFramework.Commands.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll": {} }, "runtime": { - "lib/dnx451/EntityFramework.Commands.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll": {} } - }, + } + }, + "DNX,Version=v4.5.1/debian.9-x64": { "EntityFramework.Core/7.0.0-rc1-final": { "type": "package", "dependencies": { @@ -6065,24 +4223,6 @@ "lib/dnx451/EntityFramework.Core.dll": {} } }, - "EntityFramework.MicrosoftSqlServer/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/EntityFramework.MicrosoftSqlServer.dll": {} - }, - "runtime": { - "lib/net451/EntityFramework.MicrosoftSqlServer.dll": {} - } - }, "EntityFramework.Relational/7.0.0-rc1-final": { "type": "package", "dependencies": { @@ -6104,28 +4244,6 @@ "lib/net451/EntityFramework.Relational.dll": {} } }, - "EntityFramework.Relational.Design/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.ComponentModel.DataAnnotations", - "System.Core", - "System.IO", - "System.Text.Encoding", - "System.Threading.Tasks" - ], - "compile": { - "lib/dnx451/EntityFramework.Relational.Design.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework.Relational.Design.dll": {} - } - }, "EntityFramework7.Npgsql/3.1.0-rc1-3": { "type": "package", "dependencies": { @@ -6153,44 +4271,6 @@ "lib/dnx451/EntityFramework7.Npgsql.dll": {} } }, - "EntityFramework7.Npgsql.Design/3.1.0-rc1-5": { - "type": "package", - "dependencies": { - "EntityFramework.Core": "7.0.0-rc1-final", - "EntityFramework.Relational": "7.0.0-rc1-final", - "EntityFramework.Relational.Design": "7.0.0-rc1-final", - "EntityFramework7.Npgsql": "3.1.0-rc1-3", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", - "Npgsql": "3.1.0-alpha6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Collections", - "System.Core", - "System.Diagnostics.Contracts", - "System.Linq.Expressions", - "System.Reflection", - "System.Runtime" - ], - "compile": { - "lib/dnx451/EntityFramework7.Npgsql.Design.dll": {} - }, - "runtime": { - "lib/dnx451/EntityFramework7.Npgsql.Design.dll": {} - } - }, - "Gapi.net45/1.0.0": { - "type": "package", - "compile": { - "lib/net451/gapi.dll": {} - }, - "runtime": { - "lib/net451/gapi.dll": {} - } - }, "Ix-Async/1.2.5": { "type": "package", "frameworkAssemblies": [ @@ -6204,36 +4284,6 @@ "lib/net45/System.Interactive.Async.dll": {} } }, - "jQuery/1.6.4": { - "type": "package" - }, - "MailKit/1.12.0": { - "type": "package", - "dependencies": { - "BouncyCastle": "1.8.1", - "MimeKit": "1.12.0" - }, - "frameworkAssemblies": [ - "System", - "System.Core", - "System.Data" - ], - "compile": { - "lib/net451/MailKit.dll": {} - }, - "runtime": { - "lib/net451/MailKit.dll": {} - } - }, - "MarkdownDeep-av.NET/1.5.6": { - "type": "package", - "compile": { - "lib/net451/MarkdownDeep.dll": {} - }, - "runtime": { - "lib/net451/MarkdownDeep.dll": {} - } - }, "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -6260,91 +4310,12 @@ "Microsoft.AspNet.Authentication/1.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.AspNet.Http": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.dll": {} - } - }, - "Microsoft.AspNet.Authentication.Cookies/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} - } - }, - "Microsoft.AspNet.Authentication.Facebook/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll": {} - } - }, - "Microsoft.AspNet.Authentication.JwtBearer/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll": {} - } - }, - "Microsoft.AspNet.Authentication.OAuth/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" + "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -6354,29 +4325,30 @@ "System.Net.Http" ], "compile": { - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll": {} + "lib/net451/Microsoft.AspNet.Authentication.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll": {} + "lib/net451/Microsoft.AspNet.Authentication.dll": {} } }, - "Microsoft.AspNet.Authentication.Twitter/1.0.0-rc1-final": { + "Microsoft.AspNet.Authentication.Cookies/1.0.0-rc1-final": { "type": "package", "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-rc1-final" + "Microsoft.AspNet.Authentication": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6" }, "frameworkAssemblies": [ "Microsoft.CSharp", "mscorlib", "System", - "System.Core", - "System.Net.Http" + "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll": {} + "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll": {} + "lib/net451/Microsoft.AspNet.Authentication.Cookies.dll": {} } }, "Microsoft.AspNet.Authorization/1.0.0-rc1-final": { @@ -6497,55 +4469,6 @@ "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} } }, - "Microsoft.AspNet.DataProtection.SystemWeb/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Configuration", - "System.Core", - "System.Security", - "System.Web" - ], - "compile": { - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll": {} - } - }, - "Microsoft.AspNet.Diagnostics/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", - "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", - "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Runtime" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Diagnostics.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Diagnostics.dll": {} - } - }, "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -6561,27 +4484,6 @@ "lib/net451/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} } }, - "Microsoft.AspNet.Diagnostics.Entity/7.0.0-rc1-final": { - "type": "package", - "dependencies": { - "EntityFramework.Relational": "7.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Configuration", - "System.Core", - "System.Threading.Tasks" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll": {} - } - }, "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -6824,25 +4726,6 @@ "lib/net451/Microsoft.AspNet.Identity.EntityFramework.dll": {} } }, - "Microsoft.AspNet.IISPlatformHandler/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll": {} - } - }, "Microsoft.AspNet.JsonPatch/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -7098,26 +4981,6 @@ "lib/net451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} } }, - "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Mvc.Razor": "6.0.0-rc1-final", - "Microsoft.Extensions.Caching.Memory": "1.0.0-rc1-final", - "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} - } - }, "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-rc1-final": { "type": "package", "dependencies": { @@ -7141,24 +5004,6 @@ "lib/net451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} } }, - "Microsoft.AspNet.OWin/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Owin.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Owin.dll": {} - } - }, "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -7227,185 +5072,15 @@ "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} - } - }, - "Microsoft.AspNet.Routing/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Routing.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Routing.dll": {} - } - }, - "Microsoft.AspNet.Server.Kestrel/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "System.Numerics.Vectors": "4.1.1-beta-23516" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} - } - }, - "Microsoft.AspNet.Server.WebListener/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", - "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", - "Microsoft.Net.Http.Server": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} - } - }, - "Microsoft.AspNet.Session/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Session.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Session.dll": {} - } - }, - "Microsoft.AspNet.SignalR.Core/2.2.1": { - "type": "package", - "dependencies": { - "Microsoft.Owin": "2.1.0", - "Microsoft.Owin.Security": "2.1.0", - "Newtonsoft.Json": "6.0.4", - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.AspNet.SignalR.Core.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.AspNet.SignalR.Core.dll": {} - } - }, - "Microsoft.AspNet.SignalR.JS/2.2.1": { - "type": "package", - "dependencies": { - "jQuery": "1.6.4" - } - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.StaticFiles.dll": {} - } - }, - "Microsoft.AspNet.Tooling.Razor/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.AspNet.Razor.Runtime": "4.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll": {} - } - }, - "Microsoft.AspNet.Web.Optimization/1.1.3": { - "type": "package", - "dependencies": { - "Microsoft.Web.Infrastructure": "1.0.0", - "WebGrease": "1.5.2" - }, - "compile": { - "lib/net40/System.Web.Optimization.dll": {} - }, - "runtime": { - "lib/net40/System.Web.Optimization.dll": {} - } - }, - "Microsoft.AspNet.WebSockets.Protocol/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll": {} + "lib/net451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} } }, - "Microsoft.AspNet.WebSockets.Server/1.0.0-rc1-final": { + "Microsoft.AspNet.Routing/1.0.0-rc1-final": { "type": "package", "dependencies": { "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-rc1-final" + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.OptionsModel": "1.0.0-rc1-final" }, "frameworkAssemblies": [ "Microsoft.CSharp", @@ -7414,10 +5089,10 @@ "System.Core" ], "compile": { - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll": {} + "lib/net451/Microsoft.AspNet.Routing.dll": {} }, "runtime": { - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll": {} + "lib/net451/Microsoft.AspNet.Routing.dll": {} } }, "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { @@ -7554,9 +5229,6 @@ "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {} } }, - "Microsoft.DiaSymReader.Native/1.5.0": { - "type": "package" - }, "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -7741,27 +5413,6 @@ "lib/dnx451/Microsoft.Extensions.CodeGeneration.Templating.dll": {} } }, - "Microsoft.Extensions.CodeGenerators.Mvc/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-rc1-final", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll": {} - } - }, "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -7961,21 +5612,6 @@ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} } }, - "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} - } - }, "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -8255,24 +5891,6 @@ "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} } }, - "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { - "type": "package", - "dependencies": { - "Microsoft.Framework.Configuration": "1.0.0-beta8" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} - }, - "runtime": { - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} - } - }, "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { "type": "package", "dependencies": { @@ -8379,58 +5997,6 @@ "lib/dnx451/Microsoft.Framework.Runtime.Interfaces.dll": {} } }, - "Microsoft.IdentityModel.Logging/1.0.0-rc1-211161024": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.IdentityModel.Logging.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.IdentityModel.Logging.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols/2.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "System.IdentityModel.Tokens.Jwt": "5.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Net.Http" - ], - "compile": { - "lib/net451/Microsoft.IdentityModel.Protocols.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.IdentityModel.Protocols.dll": {} - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "2.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} - } - }, "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { "type": "package", "frameworkAssemblies": [ @@ -8446,94 +6012,7 @@ "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Microsoft.Net.Http.Server/1.0.0-rc1-final": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", - "Microsoft.Net.WebSockets": "1.0.0-rc1-final" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.Http.Server.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.Http.Server.dll": {} - } - }, - "Microsoft.Net.WebSockets/1.0.0-rc1-final": { - "type": "package", - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/Microsoft.Net.WebSockets.dll": {} - }, - "runtime": { - "lib/net451/Microsoft.Net.WebSockets.dll": {} - } - }, - "Microsoft.Owin/2.1.0": { - "type": "package", - "dependencies": { - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.Owin.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.Owin.dll": {} - } - }, - "Microsoft.Owin.Security/2.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Owin": "2.1.0", - "Owin": "1.0.0" - }, - "compile": { - "lib/net45/Microsoft.Owin.Security.dll": {} - }, - "runtime": { - "lib/net45/Microsoft.Owin.Security.dll": {} - } - }, - "Microsoft.Web.Infrastructure/1.0.0": { - "type": "package", - "compile": { - "lib/net40/Microsoft.Web.Infrastructure.dll": {} - }, - "runtime": { - "lib/net40/Microsoft.Web.Infrastructure.dll": {} - } - }, - "MimeKit/1.12.0": { - "type": "package", - "dependencies": { - "BouncyCastle": "1.8.1" - }, - "frameworkAssemblies": [ - "System", - "System.Core", - "System.Data", - "System.Security" - ], - "compile": { - "lib/net451/MimeKit.dll": {} - }, - "runtime": { - "lib/net451/MimeKit.dll": {} - } - }, - "Newtonsoft.Json/9.0.1": { + "Newtonsoft.Json/6.0.6": { "type": "package", "compile": { "lib/net45/Newtonsoft.Json.dll": {} @@ -8557,57 +6036,6 @@ "lib/net45/Npgsql.dll": {} } }, - "OAuth.AspNet.AuthServer/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1", - "Newtonsoft.Json": "9.0.1", - "OAuth.AspNet.Token": null - } - }, - "OAuth.AspNet.Token/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Microsoft.AspNet.Authentication.JwtBearer": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Newtonsoft.Json": "9.0.1" - } - }, - "Owin/1.0.0": { - "type": "package", - "compile": { - "lib/net40/Owin.dll": {} - }, - "runtime": { - "lib/net40/Owin.dll": {} - } - }, - "PayPalCoreSDK/1.7.1": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "7.0.1" - }, - "compile": { - "lib/net451/PayPalCoreSDK.dll": {} - }, - "runtime": { - "lib/net451/PayPalCoreSDK.dll": {} - } - }, - "PayPalMerchant-net451/2.7.109": { - "type": "package", - "dependencies": { - "PayPalCoreSDK": "1.7.1" - }, - "compile": { - "lib/net451/PayPalMerchantSDK.dll": {} - }, - "runtime": { - "lib/net451/PayPalMerchantSDK.dll": {} - } - }, "Remotion.Linq/2.0.1": { "type": "package", "compile": { @@ -8686,44 +6114,6 @@ "lib/net45/_._": {} } }, - "System.IdentityModel.Tokens/5.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "1.0.0-rc1-211161024", - "Newtonsoft.Json": "6.0.6" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core", - "System.Xml" - ], - "compile": { - "lib/net451/System.IdentityModel.Tokens.dll": {} - }, - "runtime": { - "lib/net451/System.IdentityModel.Tokens.dll": {} - } - }, - "System.IdentityModel.Tokens.Jwt/5.0.0-rc1-211161024": { - "type": "package", - "dependencies": { - "System.IdentityModel.Tokens": "5.0.0-rc1-211161024" - }, - "frameworkAssemblies": [ - "Microsoft.CSharp", - "mscorlib", - "System", - "System.Core" - ], - "compile": { - "lib/net451/System.IdentityModel.Tokens.Jwt.dll": {} - }, - "runtime": { - "lib/net451/System.IdentityModel.Tokens.Jwt.dll": {} - } - }, "System.IO/4.0.0": { "type": "package", "compile": { @@ -8733,15 +6123,6 @@ "lib/net45/_._": {} } }, - "System.Json/4.0.20126.16343": { - "type": "package", - "compile": { - "lib/net40/System.Json.dll": {} - }, - "runtime": { - "lib/net40/System.Json.dll": {} - } - }, "System.Linq/4.0.0": { "type": "package", "compile": { @@ -8751,15 +6132,6 @@ "lib/net45/_._": {} } }, - "System.Numerics.Vectors/4.1.1-beta-23516": { - "type": "package", - "compile": { - "lib/portable-net45+win8/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/portable-net45+win8/System.Numerics.Vectors.dll": {} - } - }, "System.Reflection/4.0.0": { "type": "package", "compile": { @@ -8875,173 +6247,30 @@ "lib/net45/_._": {} } }, - "WebGrease/1.5.2": { + "Yavsc/1.0.5-rc14": { "type": "package", "dependencies": { - "Antlr": "3.4.1.9004", - "Newtonsoft.Json": "5.0.4" + "Yavsc.Abstract": "1.0.5-rc14" }, "compile": { - "lib/WebGrease.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll": {} }, "runtime": { - "lib/WebGrease.dll": {} + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll": {} } }, - "Yavsc/1.0.5-rc12": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "EntityFramework.Commands": "7.0.0-rc1-final", - "EntityFramework.Core": "7.0.0-rc1-final", - "EntityFramework.MicrosoftSqlServer": "7.0.0-rc1-final", - "EntityFramework.Relational": "7.0.0-rc1-final", - "EntityFramework7.Npgsql": "3.1.0-rc1-3", - "EntityFramework7.Npgsql.Design": "3.1.0-rc1-5", - "Gapi.net45": "1.0.0", - "MailKit": "1.12.0", - "MarkdownDeep-av.NET": "1.5.6", - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Facebook": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.JwtBearer": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-rc1-final", - "Microsoft.AspNet.Authentication.Twitter": "1.0.0-rc1-final", - "Microsoft.AspNet.Authorization": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection": "1.0.0-rc1-final", - "Microsoft.AspNet.DataProtection.SystemWeb": "1.0.0-rc1-final", - "Microsoft.AspNet.Diagnostics.Entity": "7.0.0-rc1-final", - "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", - "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", - "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-rc1", - "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1", - "Microsoft.AspNet.Localization": "1.0.0-rc1-final", - "Microsoft.AspNet.Mvc": "6.0.0-rc1", - "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-rc1-final", - "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1", - "Microsoft.AspNet.OWin": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", - "Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final", - "Microsoft.AspNet.Session": "1.0.0-rc1-final", - "Microsoft.AspNet.SignalR.Core": "2.2.1", - "Microsoft.AspNet.SignalR.JS": "2.2.1", - "Microsoft.AspNet.StaticFiles": "1.0.0-rc1", - "Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1", - "Microsoft.AspNet.Web.Optimization": "1.1.3", - "Microsoft.AspNet.WebSockets.Server": "1.0.0-rc1", - "Microsoft.DiaSymReader.Native": "1.5.0", - "Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", - "Microsoft.Extensions.CodeGenerators.Mvc": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", - "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc1-final", - "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-rc1-final", - "Microsoft.Extensions.Localization": "1.0.0-rc1-final", - "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final", - "Microsoft.Extensions.Logging.TraceSource": "1.0.0-rc1-final", - "Microsoft.Extensions.Options": "0.0.1-alpha", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders": "1.0.0-rc1-final", - "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", - "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", - "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", - "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", - "Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta4", - "OAuth.AspNet.AuthServer": null, - "OAuth.AspNet.Token": null, - "PayPalMerchant-net451": "2.7.109", - "System.Json": "4.0.20126.16343", - "Yavsc.Abstract": null - }, - "frameworkAssemblies": [ - "System", - "System.Drawing", - "System.Net", - "System.Xml" - ] - }, - "Yavsc.Abstract/1.0.5": { - "type": "project", - "framework": "DNX,Version=v4.5.1", - "dependencies": { - "Newtonsoft.Json": "9.0.1" - }, - "frameworkAssemblies": [ - "System.ComponentModel.DataAnnotations" - ] + "Yavsc.Abstract/1.0.5-rc14": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll": {} + } } } }, "libraries": { - "OAuth.AspNet.AuthServer/1.0.5": { - "type": "project", - "path": "../OAuth.AspNet.AuthServer/project.json" - }, - "OAuth.AspNet.Token/1.0.5": { - "type": "project", - "path": "../OAuth.AspNet.Token/project.json" - }, - "Yavsc/1.0.5-rc12": { - "type": "project", - "path": "../Yavsc/project.json" - }, - "Yavsc.Abstract/1.0.5": { - "type": "project", - "path": "../Yavsc.Abstract/project.json" - }, - "Antlr/3.4.1.9004": { - "type": "package", - "sha512": "c1S+HBE+KYA5EBxtn25LEK02hHPH/tDQ6RviUTTCJpZIPoputtn8ArsQJy9lVJWZOnw37ufByO2Fmf1M8wpr8Q==", - "files": [ - "Antlr.3.4.1.9004.nupkg", - "Antlr.3.4.1.9004.nupkg.sha512", - "Antlr.nuspec", - "lib/Antlr3.Runtime.dll", - "lib/Antlr3.Runtime.pdb" - ] - }, - "BouncyCastle/1.8.1": { - "type": "package", - "sha512": "nH+P67LavO5EcxjKdBxFfRdfdFhivS3Xp3+0br1KcpCI8DM6ksCWy6YYZjk7XFV+VsHGtkUovwIZ/vmCp42geA==", - "files": [ - "BouncyCastle.1.8.1.nupkg", - "BouncyCastle.1.8.1.nupkg.sha512", - "BouncyCastle.nuspec", - "lib/BouncyCastle.Crypto.dll", - "Readme.txt" - ] - }, - "EntityFramework.Commands/7.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "+wa2VWX3/vDkOpeCeIotMevqpIISimGqeYNTGYRLRhv+8HzsCLeymLzmmYpjav6zYQVvuJiJodapQvijAIfRrA==", - "files": [ - "app/ef", - "app/ef.cmd", - "app/project.json", - "build/netcore50/EntityFramework.Commands.props", - "EntityFramework.Commands.7.0.0-rc1-final.nupkg", - "EntityFramework.Commands.7.0.0-rc1-final.nupkg.sha512", - "EntityFramework.Commands.nuspec", - "lib/dnx451/EntityFramework.Commands.dll", - "lib/dnx451/EntityFramework.Commands.xml", - "lib/dnxcore50/EntityFramework.Commands.dll", - "lib/dnxcore50/EntityFramework.Commands.xml", - "lib/net451/EntityFramework.Commands.dll", - "lib/net451/EntityFramework.Commands.xml", - "lib/netcore50/_._", - "tools/about_EntityFramework.help.txt", - "tools/EntityFramework.psd1", - "tools/EntityFramework.psm1", - "tools/init.ps1", - "tools/install.ps1", - "tools/OperationHandlers.cs" - ] - }, "EntityFramework.Core/7.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9060,22 +6289,6 @@ "lib/netcore50/EntityFramework.Core.xml" ] }, - "EntityFramework.MicrosoftSqlServer/7.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "FMB2MgT5aXMF7qGMwf5AGcmpNFoT4s1w0QJ5h+L8W4gyMxWpYamGp9hms7rOSAWY44ZDl5ZMpxiTfu3nY3Nqeg==", - "files": [ - "EntityFramework.MicrosoftSqlServer.7.0.0-rc1-final.nupkg", - "EntityFramework.MicrosoftSqlServer.7.0.0-rc1-final.nupkg.sha512", - "EntityFramework.MicrosoftSqlServer.nuspec", - "lib/dotnet5.4/EntityFramework.MicrosoftSqlServer.dll", - "lib/dotnet5.4/EntityFramework.MicrosoftSqlServer.xml", - "lib/net451/EntityFramework.MicrosoftSqlServer.dll", - "lib/net451/EntityFramework.MicrosoftSqlServer.xml", - "lib/netcore50/EntityFramework.MicrosoftSqlServer.dll", - "lib/netcore50/EntityFramework.MicrosoftSqlServer.xml" - ] - }, "EntityFramework.Relational/7.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9092,24 +6305,6 @@ "lib/netcore50/EntityFramework.Relational.xml" ] }, - "EntityFramework.Relational.Design/7.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "sXAqOxpHmbqOELC21vAzKlsjqgNCrk3jEjyJxjGnn1+j4hazxiqgSBTl8ZofqYzLO6ias9WfeXJy8HcXOl7waw==", - "files": [ - "build/netcore50/EntityFramework.Relational.Design.props", - "EntityFramework.Relational.Design.7.0.0-rc1-final.nupkg", - "EntityFramework.Relational.Design.7.0.0-rc1-final.nupkg.sha512", - "EntityFramework.Relational.Design.nuspec", - "lib/dnx451/EntityFramework.Relational.Design.dll", - "lib/dnx451/EntityFramework.Relational.Design.xml", - "lib/dnxcore50/EntityFramework.Relational.Design.dll", - "lib/dnxcore50/EntityFramework.Relational.Design.xml", - "lib/net451/EntityFramework.Relational.Design.dll", - "lib/net451/EntityFramework.Relational.Design.xml", - "lib/netcore50/_._" - ] - }, "EntityFramework7.Npgsql/3.1.0-rc1-3": { "type": "package", "sha512": "VW/pz4Luixgc9UuAXPP9vzPIrrw9sHD4ozd2HUzeI3Sd4RdCgSFQT+B3HhPw/+JGKcdAnIQ4D5/Llk43fH07hw==", @@ -9125,33 +6320,6 @@ "lib/net451/EntityFramework7.Npgsql.xml" ] }, - "EntityFramework7.Npgsql.Design/3.1.0-rc1-5": { - "type": "package", - "sha512": "h7bsey+w3HBqhZQGbk6XeEMxXNCt+1hVg1Ju4QzZHUGSzWT6/ZduaPs3UjNQhpvcTRE7GYa99gYraKdNH3jEOg==", - "files": [ - "EntityFramework7.Npgsql.Design.3.1.0-rc1-5.nupkg", - "EntityFramework7.Npgsql.Design.3.1.0-rc1-5.nupkg.sha512", - "EntityFramework7.Npgsql.Design.nuspec", - "lib/dnx451/EntityFramework7.Npgsql.Design.dll", - "lib/dnx451/EntityFramework7.Npgsql.Design.xml", - "lib/dnxcore50/EntityFramework7.Npgsql.Design.dll", - "lib/dnxcore50/EntityFramework7.Npgsql.Design.xml", - "lib/net451/EntityFramework7.Npgsql.Design.dll", - "lib/net451/EntityFramework7.Npgsql.Design.xml" - ] - }, - "Gapi.net45/1.0.0": { - "type": "package", - "sha512": "ZA31xhTPss1akMMgT3PvDNkqI46t9dvkxgyKVnjXKP9OFSNSSxvSomev5Srvq1tXyadCP0cFBM1GkS0qLwTtUg==", - "files": [ - "Gapi.net45.1.0.0.nupkg", - "Gapi.net45.1.0.0.nupkg.sha512", - "Gapi.net45.nuspec", - "lib/dnxcore50/gapi.dll", - "lib/net451/gapi.dll", - "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/gapi.dll" - ] - }, "Ix-Async/1.2.5": { "type": "package", "sha512": "8EXO8q7cpDUH9G2q+UOPOO/6uZ9aN7mx/4xjFIfkp+qLWVJiYuglkRhjY8Ggs2CucXzHR8GHnovJKB5yQoYaJg==", @@ -9167,58 +6335,6 @@ "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" ] }, - "jQuery/1.6.4": { - "type": "package", - "sha512": "8RzoZQFeFYL/cINRXksLWyl8D5TKctZ/2G8hrlOLLM5OgFNI9h3t3l5tB+BBbsBUxaPUageVe0p9ruU5jrFeow==", - "files": [ - "Content/Scripts/jquery-1.6.4.js", - "Content/Scripts/jquery-1.6.4.min.js", - "Content/Scripts/jquery-1.6.4-vsdoc.js", - "jQuery.1.6.4.nupkg", - "jQuery.1.6.4.nupkg.sha512", - "jQuery.nuspec", - "Tools/install.ps1", - "Tools/jquery-1.6.4-vsdoc-para.js", - "Tools/uninstall.ps1" - ] - }, - "MailKit/1.12.0": { - "type": "package", - "sha512": "6h6PkKAuMSaTEjXMVSgBqqMrhcRgtBfFwJwA0qxqpQ32IvtG4v2vphB3IBRa3UjX4g1GaWRC+tHwivXGlZ0CtA==", - "files": [ - "lib/MonoAndroid10/MailKit.dll", - "lib/MonoAndroid10/MailKit.xml", - "lib/net40/MailKit.dll", - "lib/net40/MailKit.xml", - "lib/net45/MailKit.dll", - "lib/net45/MailKit.xml", - "lib/net451/MailKit.dll", - "lib/net451/MailKit.xml", - "lib/netstandard1.3/MailKit.dll", - "lib/netstandard1.3/MailKit.xml", - "lib/win81/MailKit.dll", - "lib/win81/MailKit.xml", - "lib/wpa81/MailKit.dll", - "lib/wpa81/MailKit.xml", - "lib/Xamarin.iOS10/MailKit.dll", - "lib/Xamarin.iOS10/MailKit.xml", - "MailKit.1.12.0.nupkg", - "MailKit.1.12.0.nupkg.sha512", - "MailKit.nuspec" - ] - }, - "MarkdownDeep-av.NET/1.5.6": { - "type": "package", - "sha512": "/nK/Hzru+vAmNGX5tZtEkKxCqjUS8a/u1vZaQ4pEmlvm6C9IIJ5rWIJephDWVwbzi6eKdEeduU+xmPfLNXrQwQ==", - "files": [ - "lib/dnxcore50/MarkdownDeep.dll", - "lib/MonoAndroid10/MarkdownDeep.dll", - "lib/net451/MarkdownDeep.dll", - "MarkdownDeep-av.NET.1.5.6.nupkg", - "MarkdownDeep-av.NET.1.5.6.nupkg.sha512", - "MarkdownDeep-av.NET.nuspec" - ] - }, "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9261,62 +6377,6 @@ "Microsoft.AspNet.Authentication.Cookies.nuspec" ] }, - "Microsoft.AspNet.Authentication.Facebook/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "jnxn+FmMl5hteVj/9E38XLQq3ksJwTretsLJKY7qiIIpDQJqhsEPzCbop+vSalnYMMoHaFOdixWmizIQrmlOfQ==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Authentication.Facebook.dll", - "lib/dotnet5.4/Microsoft.AspNet.Authentication.Facebook.xml", - "lib/net451/Microsoft.AspNet.Authentication.Facebook.dll", - "lib/net451/Microsoft.AspNet.Authentication.Facebook.xml", - "Microsoft.AspNet.Authentication.Facebook.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Authentication.Facebook.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Authentication.Facebook.nuspec" - ] - }, - "Microsoft.AspNet.Authentication.JwtBearer/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "pkgJ9xKl2RY5j6alvpnLWNGpnM7qpFpcdQSSxjOFI0yWDYxkqagwghdisC/lVgRiSDzh3tm1asjpMbt+6+sNOg==", - "files": [ - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.dll", - "lib/dnx451/Microsoft.AspNet.Authentication.JwtBearer.xml", - "lib/dnxcore50/Microsoft.AspNet.Authentication.JwtBearer.dll", - "lib/dnxcore50/Microsoft.AspNet.Authentication.JwtBearer.xml", - "Microsoft.AspNet.Authentication.JwtBearer.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Authentication.JwtBearer.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Authentication.JwtBearer.nuspec" - ] - }, - "Microsoft.AspNet.Authentication.OAuth/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "3h2Mz/ObM1pQRDDkkK4roI1Y6n6XlTQGsLxbeMQ6aGJZCYYnZhCrp6UN4CWktd3xBrLUdaRYMH1r94+0wjCqAg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Authentication.OAuth.dll", - "lib/dotnet5.4/Microsoft.AspNet.Authentication.OAuth.xml", - "lib/net451/Microsoft.AspNet.Authentication.OAuth.dll", - "lib/net451/Microsoft.AspNet.Authentication.OAuth.xml", - "Microsoft.AspNet.Authentication.OAuth.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Authentication.OAuth.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Authentication.OAuth.nuspec" - ] - }, - "Microsoft.AspNet.Authentication.Twitter/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "kp0mcXaj0Vx+XY5Fwr/rDZBqs9yjzcwS6+KY3Dtk7UnmAuzVJ1Ld7/gLKkXXFzDyIh++lWfckRFQtVvV4kuydA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Authentication.Twitter.dll", - "lib/dotnet5.4/Microsoft.AspNet.Authentication.Twitter.xml", - "lib/net451/Microsoft.AspNet.Authentication.Twitter.dll", - "lib/net451/Microsoft.AspNet.Authentication.Twitter.xml", - "Microsoft.AspNet.Authentication.Twitter.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Authentication.Twitter.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Authentication.Twitter.nuspec" - ] - }, "Microsoft.AspNet.Authorization/1.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9401,33 +6461,6 @@ "Microsoft.AspNet.DataProtection.Abstractions.nuspec" ] }, - "Microsoft.AspNet.DataProtection.SystemWeb/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "SMCq4lwr8Vf9rMJ0HSdXux5dWILKGzmN0XuL6Uu2+aqofSeFlDhlTRg/QyiThYeFzREllLZ+iw/0P3GAhhgB0w==", - "files": [ - "content/net451/web.config.transform", - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.dll", - "lib/net451/Microsoft.AspNet.DataProtection.SystemWeb.xml", - "Microsoft.AspNet.DataProtection.SystemWeb.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.DataProtection.SystemWeb.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.DataProtection.SystemWeb.nuspec" - ] - }, - "Microsoft.AspNet.Diagnostics/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "PlLhXpe74DUMEanyFNvo+A96zD465usPOxu2iAqREnfcpagNJY4dn6uQxDE04BY6XcqPaYAYcrZYyKRfn/pTIg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Diagnostics.dll", - "lib/dotnet5.4/Microsoft.AspNet.Diagnostics.xml", - "lib/net451/Microsoft.AspNet.Diagnostics.dll", - "lib/net451/Microsoft.AspNet.Diagnostics.xml", - "Microsoft.AspNet.Diagnostics.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Diagnostics.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Diagnostics.nuspec" - ] - }, "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9442,20 +6475,6 @@ "Microsoft.AspNet.Diagnostics.Abstractions.nuspec" ] }, - "Microsoft.AspNet.Diagnostics.Entity/7.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "hlOWYlYXpVSEM4wcTzNwZKvJWGUgkZQjOG12FkJFIEMyd8qT8jS20kp92kT2XeU8SBxb1kUAnTBdtOr5VRI+hQ==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Diagnostics.Entity.dll", - "lib/dotnet5.4/Microsoft.AspNet.Diagnostics.Entity.xml", - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.dll", - "lib/net451/Microsoft.AspNet.Diagnostics.Entity.xml", - "Microsoft.AspNet.Diagnostics.Entity.7.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Diagnostics.Entity.7.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Diagnostics.Entity.nuspec" - ] - }, "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { "type": "package", "sha512": "Tv6YJk78cH+gFipRNjeMpzzUg3t4BQiS0xYVlv/8gVNl4sI6ytAMYYfIbx8pCacIRH5Nx/Tw9GVn28eyw+JZfA==", @@ -9610,19 +6629,6 @@ "Microsoft.AspNet.Identity.EntityFramework.nuspec" ] }, - "Microsoft.AspNet.IISPlatformHandler/1.0.0-rc1-final": { - "type": "package", - "sha512": "scDY0KQZnOvQTYDd6InIFhn4QnF5UxLtV7VoQXOlpsaEUQ0c6jDVoHvL4ylUy5zcKJkjRDUy/B7Q8TDk05kl2w==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.IISPlatformHandler.dll", - "lib/dotnet5.4/Microsoft.AspNet.IISPlatformHandler.xml", - "lib/net451/Microsoft.AspNet.IISPlatformHandler.dll", - "lib/net451/Microsoft.AspNet.IISPlatformHandler.xml", - "Microsoft.AspNet.IISPlatformHandler.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.IISPlatformHandler.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.IISPlatformHandler.nuspec" - ] - }, "Microsoft.AspNet.JsonPatch/1.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9791,20 +6797,6 @@ "Microsoft.AspNet.Mvc.Razor.Host.nuspec" ] }, - "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "zcoDzmKSMdOVUQHQZJQStArNqc5ERTxosB3GiK/MbC0HFhJ4vmh/vwI0rxnXO6X25+gYnr/2PAiY9fHvGkN58A==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Mvc.TagHelpers.dll", - "lib/dotnet5.4/Microsoft.AspNet.Mvc.TagHelpers.xml", - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.dll", - "lib/net451/Microsoft.AspNet.Mvc.TagHelpers.xml", - "Microsoft.AspNet.Mvc.TagHelpers.6.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Mvc.TagHelpers.6.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Mvc.TagHelpers.nuspec" - ] - }, "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9819,20 +6811,6 @@ "Microsoft.AspNet.Mvc.ViewFeatures.nuspec" ] }, - "Microsoft.AspNet.OWin/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "6lkzV/uEYORT1GQDddWVjsm/zRtEZHnIcWmBR4H6tqjsv1q2rWFmDy8rEckPvxUVn1iNTWKpn6s4UJglbdTgtg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Owin.dll", - "lib/dotnet5.4/Microsoft.AspNet.Owin.xml", - "lib/net451/Microsoft.AspNet.Owin.dll", - "lib/net451/Microsoft.AspNet.Owin.xml", - "Microsoft.AspNet.OWin.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.OWin.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.OWin.nuspec" - ] - }, "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -9903,154 +6881,6 @@ "Microsoft.AspNet.Routing.nuspec" ] }, - "Microsoft.AspNet.Server.Kestrel/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "4fuGqW9K2PaxLwQsyRZaoO2Eu+GT5nv8WeYWpD8EqHLzY9GVEW25jy1iW2+1Tf5BwQJLN2e9QxY2K7OPlM9iRg==", - "files": [ - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll", - "lib/dnx451/Microsoft.AspNet.Server.Kestrel.xml", - "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll", - "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.xml", - "lib/dotnet5.4/Microsoft.AspNet.Server.Kestrel.dll", - "lib/dotnet5.4/Microsoft.AspNet.Server.Kestrel.xml", - "lib/net451/Microsoft.AspNet.Server.Kestrel.dll", - "lib/net451/Microsoft.AspNet.Server.Kestrel.xml", - "Microsoft.AspNet.Server.Kestrel.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Server.Kestrel.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Server.Kestrel.nuspec", - "runtimes/osx/native/libuv.dylib", - "runtimes/win10-arm/native/libuv.dll", - "runtimes/win7-x64/native/libuv.dll", - "runtimes/win7-x86/native/libuv.dll", - "thirdpartynotices.txt" - ] - }, - "Microsoft.AspNet.Server.WebListener/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "U1S48H06oKFHVth/1xUtylpa0E4tBDYtxpzfELeZ1aNW3fdOqcd20dlh6bapOP78R+axSY1DI/FR8dGGgn+84Q==", - "files": [ - "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll", - "lib/dnx451/Microsoft.AspNet.Server.WebListener.xml", - "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll", - "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.xml", - "lib/dotnet5.4/Microsoft.AspNet.Server.WebListener.dll", - "lib/dotnet5.4/Microsoft.AspNet.Server.WebListener.xml", - "lib/net451/Microsoft.AspNet.Server.WebListener.dll", - "lib/net451/Microsoft.AspNet.Server.WebListener.xml", - "Microsoft.AspNet.Server.WebListener.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Server.WebListener.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Server.WebListener.nuspec" - ] - }, - "Microsoft.AspNet.Session/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "nMImkPMx/z4YL/bCBaTywQZD28sg6IvWMRckzY4hMZuhhRWr4z3HHYgORCaKbJQH3nJkfL6rb+TpmWobN9gKpw==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.Session.dll", - "lib/dotnet5.4/Microsoft.AspNet.Session.xml", - "lib/net451/Microsoft.AspNet.Session.dll", - "lib/net451/Microsoft.AspNet.Session.xml", - "Microsoft.AspNet.Session.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Session.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Session.nuspec" - ] - }, - "Microsoft.AspNet.SignalR.Core/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "EUZlRTmUZ3di6hxCiyyhnUld/8AKTOuX1DAGhNLv+ocTfmnOJyS42AEzgxdIk1jRAlEpUEuoicVBBI07A2FU2g==", - "files": [ - "lib/net45/Microsoft.AspNet.SignalR.Core.dll", - "lib/net45/Microsoft.AspNet.SignalR.Core.xml", - "Microsoft.AspNet.SignalR.Core.2.2.1.nupkg", - "Microsoft.AspNet.SignalR.Core.2.2.1.nupkg.sha512", - "Microsoft.AspNet.SignalR.Core.nuspec" - ] - }, - "Microsoft.AspNet.SignalR.JS/2.2.1": { - "type": "package", - "sha512": "IKzTOfXjhN7kaGX47BATuTqP/mjVCDb9ivAVvBBrJoaomLT0Puj4f7fnHepByRkT7IGpm6hLbPO3afws5rlFdw==", - "files": [ - "content/Scripts/jquery.signalR-2.2.1.js", - "content/Scripts/jquery.signalR-2.2.1.min.js", - "Microsoft.AspNet.SignalR.JS.2.2.1.nupkg", - "Microsoft.AspNet.SignalR.JS.2.2.1.nupkg.sha512", - "Microsoft.AspNet.SignalR.JS.nuspec" - ] - }, - "Microsoft.AspNet.StaticFiles/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "JKFrKL6iwGzG+DO9vwP8fEbz3gHA9K6SoCE/Th/oIwxDEENNF2TAYjjAag5c0iJcaK3+X8+s2RkA/zZ+vWHOTg==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.dll", - "lib/dotnet5.4/Microsoft.AspNet.StaticFiles.xml", - "lib/net451/Microsoft.AspNet.StaticFiles.dll", - "lib/net451/Microsoft.AspNet.StaticFiles.xml", - "Microsoft.AspNet.StaticFiles.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.StaticFiles.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.StaticFiles.nuspec" - ] - }, - "Microsoft.AspNet.Tooling.Razor/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "ZWDxJ4sqrZyrtmlRKeBYrxguRNBnTGV2LNgyZrSyVQ8DcQjPkSqFwu18BeER+j6Od2mgV5aOCdCLDN0QnjYI7Q==", - "files": [ - "app/project.json", - "app/razor-tooling", - "app/razor-tooling.cmd", - "lib/dotnet5.4/Microsoft.AspNet.Tooling.Razor.dll", - "lib/dotnet5.4/Microsoft.AspNet.Tooling.Razor.xml", - "lib/net451/Microsoft.AspNet.Tooling.Razor.dll", - "lib/net451/Microsoft.AspNet.Tooling.Razor.xml", - "Microsoft.AspNet.Tooling.Razor.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.Tooling.Razor.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.Tooling.Razor.nuspec" - ] - }, - "Microsoft.AspNet.Web.Optimization/1.1.3": { - "type": "package", - "sha512": "TWKKpTWEdB8jXp2Vl2TXNKW30GBQg6nnh0y8iZWmGY5c1XY4f649vfDslNHsCsvk9JZxc1Rkm/UGDdfq4gjWRQ==", - "files": [ - "lib/net40/System.Web.Optimization.dll", - "lib/net40/system.web.optimization.xml", - "Microsoft.AspNet.Web.Optimization.1.1.3.nupkg", - "Microsoft.AspNet.Web.Optimization.1.1.3.nupkg.sha512", - "Microsoft.AspNet.Web.Optimization.nuspec" - ] - }, - "Microsoft.AspNet.WebSockets.Protocol/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "dc/e2uVh/J9dQ9DuXh0hlTSS5lID2Kr+O+EFgf9NgrvP1sFS8EWDGHoUv9RS/owVfFtd956bnRjMX2jD/5NBPA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.WebSockets.Protocol.dll", - "lib/dotnet5.4/Microsoft.AspNet.WebSockets.Protocol.xml", - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.dll", - "lib/net451/Microsoft.AspNet.WebSockets.Protocol.xml", - "Microsoft.AspNet.WebSockets.Protocol.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.WebSockets.Protocol.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.WebSockets.Protocol.nuspec" - ] - }, - "Microsoft.AspNet.WebSockets.Server/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "hVPS2eewqM8S5cpFK62+d10WCaPBQb9pnP3ahEYP/wMlycv0nAmsQ5sMeaI06zI12cZTAXWnwf3aUgN7/2yuFA==", - "files": [ - "lib/dotnet5.4/Microsoft.AspNet.WebSockets.Server.dll", - "lib/dotnet5.4/Microsoft.AspNet.WebSockets.Server.xml", - "lib/net451/Microsoft.AspNet.WebSockets.Server.dll", - "lib/net451/Microsoft.AspNet.WebSockets.Server.xml", - "Microsoft.AspNet.WebSockets.Server.1.0.0-rc1-final.nupkg", - "Microsoft.AspNet.WebSockets.Server.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.AspNet.WebSockets.Server.nuspec" - ] - }, "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { "type": "package", "sha512": "0D80xroAEiWlB9X5eR/JUya1H2saIYnt4d7bPru5RRf5L/66X+9WWhf3hFkLUF3W13K6g6K9Is9dCTaEfFFKTA==", @@ -10202,22 +7032,6 @@ "Microsoft.Composition.nuspec" ] }, - "Microsoft.DiaSymReader.Native/1.5.0": { - "type": "package", - "sha512": "Zs1Cm0z1G9QLkKZ/k9O2/z47fN84ZbhWCrdBYv0ArC2lU4H1pOTkjah6RgCm/ZnS8ZdOMFC+We6shG6SCRaXeg==", - "files": [ - "build/Microsoft.DiaSymReader.Native.props", - "Microsoft.DiaSymReader.Native.1.5.0.nupkg", - "Microsoft.DiaSymReader.Native.1.5.0.nupkg.sha512", - "Microsoft.DiaSymReader.Native.nuspec", - "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll", - "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll", - "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll", - "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll", - "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll", - "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll" - ] - }, "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { "type": "package", "sha512": "kg3kR7H12Bs46TiuF7YT8A3SNXehhBcwsArIMQIH2ecXGkg5MPWDl2OR6bnQu6k0OMu9QUiv1oiwC9yU7rHWfw==", @@ -10347,51 +7161,6 @@ "Microsoft.Extensions.CodeGeneration.Templating.nuspec" ] }, - "Microsoft.Extensions.CodeGenerators.Mvc/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "rkec5T1UW17vRb6rPWEDOq4WHj7+mu8IKWuea9I05YKDACo/EBgDhqp4aoZrOsNzoEH6k+NlL0FRa3o5s9vglA==", - "files": [ - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.dll", - "lib/dnx451/Microsoft.Extensions.CodeGenerators.Mvc.xml", - "lib/dnxcore50/Microsoft.Extensions.CodeGenerators.Mvc.dll", - "lib/dnxcore50/Microsoft.Extensions.CodeGenerators.Mvc.xml", - "Microsoft.Extensions.CodeGenerators.Mvc.1.0.0-rc1-final.nupkg", - "Microsoft.Extensions.CodeGenerators.Mvc.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.Extensions.CodeGenerators.Mvc.nuspec", - "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", - "Templates/ControllerGenerator/EmptyController.cshtml", - "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", - "Templates/MvcLayout/_Layout.cshtml", - "Templates/MvcLayout/Error.cshtml", - "Templates/Startup/ReadMe.cshtml", - "Templates/Startup/Startup.cshtml", - "Templates/StaticFiles/Content/bootstrap.css", - "Templates/StaticFiles/Content/bootstrap.min.css", - "Templates/StaticFiles/Content/Scripts/_references.js", - "Templates/StaticFiles/Content/Scripts/bootstrap.js", - "Templates/StaticFiles/Content/Scripts/bootstrap.min.js", - "Templates/StaticFiles/Content/Scripts/jquery.validate.js", - "Templates/StaticFiles/Content/Scripts/jquery.validate.min.js", - "Templates/StaticFiles/Content/Scripts/jquery.validate.unobtrusive.js", - "Templates/StaticFiles/Content/Scripts/jquery.validate.unobtrusive.min.js", - "Templates/StaticFiles/Content/Scripts/jquery.validate-vsdoc.js", - "Templates/StaticFiles/Content/Scripts/jquery-1.10.2.intellisense.js", - "Templates/StaticFiles/Content/Scripts/jquery-1.10.2.js", - "Templates/StaticFiles/Content/Scripts/jquery-1.10.2.min.js", - "Templates/StaticFiles/Content/Scripts/jquery-1.10.2.min.map", - "Templates/StaticFiles/Content/Scripts/modernizr-2.6.2.js", - "Templates/StaticFiles/Content/Scripts/respond.js", - "Templates/StaticFiles/Content/Scripts/respond.min.js", - "Templates/StaticFiles/Content/Site.css", - "Templates/ViewGenerator/Create.cshtml", - "Templates/ViewGenerator/Delete.cshtml", - "Templates/ViewGenerator/Details.cshtml", - "Templates/ViewGenerator/Edit.cshtml", - "Templates/ViewGenerator/List.cshtml", - "THIRDPARTYNOTICE ASP.NET_Preview.rtf" - ] - }, "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { "type": "package", "sha512": "2ayWzqMVGWjr8o8bOSnIsyQbi9sLz9Ya8+YM+9tM/ivSnLHuN7TNHNfJv4jTyRZvoOafdh5Ivlc/OdmsZPXlQQ==", @@ -10558,20 +7327,6 @@ "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" ] }, - "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "7N9IPDU0T1uQBj6hobeGNqiEd+Cuu6RHJ0RcwkUvzTsLq8Vf2Sc72+HEAICTw1CTRXHgW49Zr47PvO0QPxI/5g==", - "files": [ - "lib/dotnet5.4/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/dotnet5.4/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml", - "Microsoft.Extensions.FileSystemGlobbing.1.0.0-rc1-final.nupkg", - "Microsoft.Extensions.FileSystemGlobbing.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.Extensions.FileSystemGlobbing.nuspec" - ] - }, "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc1-final": { "type": "package", "serviceable": true, @@ -10818,24 +7573,6 @@ "Microsoft.Framework.Configuration.Abstractions.nuspec" ] }, - "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { - "type": "package", - "serviceable": true, - "sha512": "6BWMPvDuy6nTe32z2JWsoiLljVhWagWkDhcN9EbvN4/ihGbnCWzKPIUCJ3a/1s9k/ZsWp4VZtxeuSaZ+60qQbQ==", - "files": [ - "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", - "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", - "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll", - "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.xml", - "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", - "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", - "lib/net45/Microsoft.Framework.Configuration.Binder.dll", - "lib/net45/Microsoft.Framework.Configuration.Binder.xml", - "Microsoft.Framework.Configuration.Binder.1.0.0-beta8.nupkg", - "Microsoft.Framework.Configuration.Binder.1.0.0-beta8.nupkg.sha512", - "Microsoft.Framework.Configuration.Binder.nuspec" - ] - }, "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { "type": "package", "serviceable": true, @@ -10936,48 +7673,6 @@ "Microsoft.Framework.Runtime.Interfaces.nuspec" ] }, - "Microsoft.IdentityModel.Logging/1.0.0-rc1-211161024": { - "type": "package", - "serviceable": true, - "sha512": "creXwpCysjVpRx+IsZSf8mxCT9lZ/VY1T6wR6zFFulPXV1UZysVURmLd/IgJg/p9pAtcrU5yIbRC9Az3j73+nA==", - "files": [ - "lib/dotnet5.4/Microsoft.IdentityModel.Logging.dll", - "lib/dotnet5.4/Microsoft.IdentityModel.Logging.xml", - "lib/net451/Microsoft.IdentityModel.Logging.dll", - "lib/net451/Microsoft.IdentityModel.Logging.xml", - "Microsoft.IdentityModel.Logging.1.0.0-rc1-211161024.nupkg", - "Microsoft.IdentityModel.Logging.1.0.0-rc1-211161024.nupkg.sha512", - "Microsoft.IdentityModel.Logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols/2.0.0-rc1-211161024": { - "type": "package", - "serviceable": true, - "sha512": "1/I4nkZCKjNg9jIASv2sNIi8RvdsYLi/efbylZEw+zvtBgNfNEvdCeAsIVyX3A4pR0yQwtIdz+kTYRTs2diSEQ==", - "files": [ - "lib/dotnet5.4/Microsoft.IdentityModel.Protocols.dll", - "lib/dotnet5.4/Microsoft.IdentityModel.Protocols.xml", - "lib/net451/Microsoft.IdentityModel.Protocols.dll", - "lib/net451/Microsoft.IdentityModel.Protocols.xml", - "Microsoft.IdentityModel.Protocols.2.0.0-rc1-211161024.nupkg", - "Microsoft.IdentityModel.Protocols.2.0.0-rc1-211161024.nupkg.sha512", - "Microsoft.IdentityModel.Protocols.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0-rc1-211161024": { - "type": "package", - "serviceable": true, - "sha512": "4xW6TBJ4ys3p+KtHwzddq8pkdxFoUtRlHYcHECK9YtZxkp4omLA9NUGrHRZ57RGN31vPdSzX3u1ujiA2Bqpo+A==", - "files": [ - "lib/dotnet5.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/dotnet5.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "Microsoft.IdentityModel.Protocols.OpenIdConnect.2.0.0-rc1-211161024.nupkg", - "Microsoft.IdentityModel.Protocols.OpenIdConnect.2.0.0-rc1-211161024.nupkg.sha512", - "Microsoft.IdentityModel.Protocols.OpenIdConnect.nuspec" - ] - }, "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { "type": "package", "sha512": "Y10hkmHQZLieW3J6J+vTiq86vifmJ7Vc2zrwNR349oAaUGjTHL0ws6rqHn0JDIcawBna4AE3OBNsL9vuZuE8bw==", @@ -10990,104 +7685,9 @@ "microsoft.net.http.headers.nuspec" ] }, - "Microsoft.Net.Http.Server/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "XQMZUf0SbVzjTX0vyiVr0LP3Cygy1wCPDZmDla9Yeqc07HvSZ02Sg4qTSKiNV2h85yY3Dka+MNmL3XoYmnsEAA==", - "files": [ - "lib/dotnet5.4/Microsoft.Net.Http.Server.dll", - "lib/dotnet5.4/Microsoft.Net.Http.Server.xml", - "lib/net451/Microsoft.Net.Http.Server.dll", - "lib/net451/Microsoft.Net.Http.Server.xml", - "Microsoft.Net.Http.Server.1.0.0-rc1-final.nupkg", - "Microsoft.Net.Http.Server.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.Net.Http.Server.nuspec" - ] - }, - "Microsoft.Net.WebSockets/1.0.0-rc1-final": { - "type": "package", - "serviceable": true, - "sha512": "DIzmA7s2sNBEq+Wz5cCPFAYKx1WGiLE7iCVrA7Lvhxf/+EzPWeaKlCYvjSHTPNViZsX/eUI5vsiDmqK/5tZjQA==", - "files": [ - "lib/dotnet5.4/Microsoft.Net.WebSockets.dll", - "lib/dotnet5.4/Microsoft.Net.WebSockets.xml", - "lib/net451/Microsoft.Net.WebSockets.dll", - "lib/net451/Microsoft.Net.WebSockets.xml", - "Microsoft.Net.WebSockets.1.0.0-rc1-final.nupkg", - "Microsoft.Net.WebSockets.1.0.0-rc1-final.nupkg.sha512", - "Microsoft.Net.WebSockets.nuspec" - ] - }, - "Microsoft.Owin/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "lk0kK64mlmcmtWX8YOYkZsnZKDoGEzMZhe8e1bcP+FFcgD4f2QfKwvu5Z8Bh8WS0VO7Rgk+DJ0hwW0k+S/UGMg==", - "files": [ - "lib/net40/Microsoft.Owin.dll", - "lib/net40/Microsoft.Owin.XML", - "lib/net45/Microsoft.Owin.dll", - "lib/net45/Microsoft.Owin.XML", - "Microsoft.Owin.2.1.0.nupkg", - "Microsoft.Owin.2.1.0.nupkg.sha512", - "Microsoft.Owin.nuspec" - ] - }, - "Microsoft.Owin.Security/2.1.0": { - "type": "package", - "serviceable": true, - "sha512": "4n1V0p+O6W1L0xHUM8Cjp2Y+MmmUkiCZv6PvRNIDCJD9zlerBJa2HECo9lUiWC+KuasQJ3QxB1FmipNBxdXXIQ==", - "files": [ - "lib/net45/Microsoft.Owin.Security.dll", - "lib/net45/Microsoft.Owin.Security.XML", - "Microsoft.Owin.Security.2.1.0.nupkg", - "Microsoft.Owin.Security.2.1.0.nupkg.sha512", - "Microsoft.Owin.Security.nuspec" - ] - }, - "Microsoft.Web.Infrastructure/1.0.0": { - "type": "package", - "sha512": "FNmvLn5m2LTU/Rs2KWVo0SIIh9Ek+U0ojex7xeDaSHw/zgEP77A8vY5cVWgUtBGS8MJfDGNn8rpXJWEIQaPwTg==", - "files": [ - "lib/net40/Microsoft.Web.Infrastructure.dll", - "Microsoft.Web.Infrastructure.1.0.0.nupkg", - "Microsoft.Web.Infrastructure.1.0.0.nupkg.sha512", - "Microsoft.Web.Infrastructure.nuspec" - ] - }, - "MimeKit/1.12.0": { + "Newtonsoft.Json/6.0.6": { "type": "package", - "sha512": "RxmmVI5vLiI7q54i5CK3WESv6e/sVI3sEJB2/PXdIbKWfHOkQywGoRkqiSqDRz+m5fU7D1H0RVkjTshONo0ZzA==", - "files": [ - "lib/MonoAndroid10/BouncyCastle.dll", - "lib/MonoAndroid10/MimeKit.dll", - "lib/MonoAndroid10/MimeKit.xml", - "lib/net35/MimeKit.dll", - "lib/net35/MimeKit.xml", - "lib/net40/MimeKit.dll", - "lib/net40/MimeKit.xml", - "lib/net45/MimeKit.dll", - "lib/net45/MimeKit.xml", - "lib/net451/MimeKit.dll", - "lib/net451/MimeKit.xml", - "lib/netstandard1.3/MimeKit.dll", - "lib/netstandard1.3/MimeKit.xml", - "lib/portable-net45+win+wp80+MonoAndroid10+Xamarin.iOS10+MonoTouch10/MimeKit.dll", - "lib/portable-net45+win+wp80+MonoAndroid10+Xamarin.iOS10+MonoTouch10/MimeKit.xml", - "lib/portable-net45+win+wp80+MonoAndroid10+Xamarin.iOS10+MonoTouch10/Portable.Text.Encoding.dll", - "lib/wpa81/MimeKit.dll", - "lib/wpa81/MimeKit.xml", - "lib/wpa81/Portable.Text.Encoding.dll", - "lib/Xamarin.iOS10/BouncyCastle.dll", - "lib/Xamarin.iOS10/MimeKit.dll", - "lib/Xamarin.iOS10/MimeKit.xml", - "MimeKit.1.12.0.nupkg", - "MimeKit.1.12.0.nupkg.sha512", - "MimeKit.nuspec" - ] - }, - "Newtonsoft.Json/9.0.1": { - "type": "package", - "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", "files": [ "lib/net20/Newtonsoft.Json.dll", "lib/net20/Newtonsoft.Json.xml", @@ -11097,14 +7697,14 @@ "lib/net40/Newtonsoft.Json.xml", "lib/net45/Newtonsoft.Json.dll", "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", - "Newtonsoft.Json.9.0.1.nupkg", - "Newtonsoft.Json.9.0.1.nupkg.sha512", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", "Newtonsoft.Json.nuspec", "tools/install.ps1" ] @@ -11129,40 +7729,6 @@ "Npgsql.nuspec" ] }, - "Owin/1.0.0": { - "type": "package", - "sha512": "OseTFniKmyp76mEzOBwIKGBRS5eMoYNkMKaMXOpxx9jv88+b6mh1rSaw43vjBOItNhaLFG3d0a20PfHyibH5sw==", - "files": [ - "lib/net40/Owin.dll", - "Owin.1.0.0.nupkg", - "Owin.1.0.0.nupkg.sha512", - "Owin.nuspec" - ] - }, - "PayPalCoreSDK/1.7.1": { - "type": "package", - "sha512": "hGOLo3X2vgOpOWJI91+vlBgr/Dchk3xZAF0bdIpKiAwjlRKMjzSC4zuT1eGwmQ8uVL1IaGBZwNGklyRHDniYlQ==", - "files": [ - "lib/net20/PayPalCoreSDK.dll", - "lib/net35/PayPalCoreSDK.dll", - "lib/net40/PayPalCoreSDK.dll", - "lib/net45/PayPalCoreSDK.dll", - "lib/net451/PayPalCoreSDK.dll", - "PayPalCoreSDK.1.7.1.nupkg", - "PayPalCoreSDK.1.7.1.nupkg.sha512", - "PayPalCoreSDK.nuspec" - ] - }, - "PayPalMerchant-net451/2.7.109": { - "type": "package", - "sha512": "T4GeSn/Odvx8VVyZ6e5emsR1bULftOwYnKGRrv6QotKR9UlIGkrybtuuBiB7tTGfkV/zUohFVimAS3gDPEtNvg==", - "files": [ - "lib/net451/PayPalMerchantSDK.dll", - "PayPalMerchant-net451.2.7.109.nupkg", - "PayPalMerchant-net451.2.7.109.nupkg.sha512", - "PayPalMerchant-net451.nuspec" - ] - }, "Remotion.Linq/2.0.1": { "type": "package", "sha512": "SIO6HDH6CU9GC2IZGBrc6q5X5vRhfatXrg9cVavCEG9W6v5e88b+vXjmLGQEorch4sYEIImRr+ODyUMyrmrqAg==", @@ -11395,34 +7961,6 @@ "System.Globalization.nuspec" ] }, - "System.IdentityModel.Tokens/5.0.0-rc1-211161024": { - "type": "package", - "serviceable": true, - "sha512": "UbFu6NIPI8pDL/lZlajUQ06OQNJvkpUWYBDIZr+HaqiXseE0Jja1kXTFg2gxKpjuruRinR7e7+/qnAAE3/BPcw==", - "files": [ - "lib/dotnet5.4/System.IdentityModel.Tokens.dll", - "lib/dotnet5.4/System.IdentityModel.Tokens.xml", - "lib/net451/System.IdentityModel.Tokens.dll", - "lib/net451/System.IdentityModel.Tokens.xml", - "System.IdentityModel.Tokens.5.0.0-rc1-211161024.nupkg", - "System.IdentityModel.Tokens.5.0.0-rc1-211161024.nupkg.sha512", - "System.IdentityModel.Tokens.nuspec" - ] - }, - "System.IdentityModel.Tokens.Jwt/5.0.0-rc1-211161024": { - "type": "package", - "serviceable": true, - "sha512": "A/mqsC0pFbFnsZ6OR17PPkNz4OEu0Xt8wK83FNDLvsoWMhvKS2DDFnn9dqzUxKDLEIZUXwWWCJQJritmvXsf1g==", - "files": [ - "lib/dotnet5.4/System.IdentityModel.Tokens.Jwt.dll", - "lib/dotnet5.4/System.IdentityModel.Tokens.Jwt.xml", - "lib/net451/System.IdentityModel.Tokens.Jwt.dll", - "lib/net451/System.IdentityModel.Tokens.Jwt.xml", - "System.IdentityModel.Tokens.Jwt.5.0.0-rc1-211161024.nupkg", - "System.IdentityModel.Tokens.Jwt.5.0.0-rc1-211161024.nupkg.sha512", - "System.IdentityModel.Tokens.Jwt.nuspec" - ] - }, "System.IO/4.0.0": { "type": "package", "sha512": "MoCHQ0u5n0OMwUS8OX4Gl48qKiQziSW5cXvt82d+MmAcsLq9OL90+ihnu/aJ1h6OOYcBswrZAEuApfZha9w2lg==", @@ -11471,17 +8009,6 @@ "System.IO.nuspec" ] }, - "System.Json/4.0.20126.16343": { - "type": "package", - "sha512": "iFfVzUyuvd5YcTw8NcP62mJ0F+JQ2dDLRArxYk+t6JKdb00mW/uaU3JyO1OuXC3RUsB6ITRYN4FCnxff89Hn4g==", - "files": [ - "lib/net40/System.Json.dll", - "lib/net40/System.Json.xml", - "System.Json.4.0.20126.16343.nupkg", - "System.Json.4.0.20126.16343.nupkg.sha512", - "System.Json.nuspec" - ] - }, "System.Linq/4.0.0": { "type": "package", "serviceable": true, @@ -11515,31 +8042,6 @@ "System.Linq.nuspec" ] }, - "System.Numerics.Vectors/4.1.1-beta-23516": { - "type": "package", - "serviceable": true, - "sha512": "FCYCEjc3BXBTpVZTxMqf2m/sGYyDzLwICy5lNKgZzT8WfshJhsTGjJuETwsh1Cwi6bksw9YiTB6yeeWBBJDnTA==", - "files": [ - "lib/dotnet5.4/System.Numerics.Vectors.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/portable-net45+win8/System.Numerics.Vectors.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet5.4/System.Numerics.Vectors.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/net46/System.Numerics.Vectors.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "System.Numerics.Vectors.4.1.1-beta-23516.nupkg", - "System.Numerics.Vectors.4.1.1-beta-23516.nupkg.sha512", - "System.Numerics.Vectors.nuspec" - ] - }, "System.Reflection/4.0.0": { "type": "package", "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", @@ -11988,17 +8490,24 @@ "system.threading.nuspec" ] }, - "WebGrease/1.5.2": { + "Yavsc/1.0.5-rc14": { "type": "package", - "sha512": "VoyDSOOugLx3q5IyOgEcjeYZQOqV9VWZQT57UtN4szlYhAmOcEjVfKWXbtRqBuX43pgyL9E7nMSIPoryC8Cu1Q==", + "sha512": "qh7XoqBfHICTJuu7nwwOh9Wu7D8vntKvbpKPyiV9F61cXxssRBU0mlhmAfWfVmMeDOadTJMePXP43RDDjSxWpA==", "files": [ - "lib/WebGrease.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "tools/WG.exe", - "WebGrease.1.5.2.nupkg", - "WebGrease.1.5.2.nupkg.sha512", - "WebGrease.nuspec" + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.dll", + "Yavsc.1.0.5-rc14.nupkg", + "Yavsc.1.0.5-rc14.nupkg.sha512", + "Yavsc.nuspec" + ] + }, + "Yavsc.Abstract/1.0.5-rc14": { + "type": "package", + "sha512": "89rsGd4JcnNZkiEQEZU1hYj4YqxrPsDgePE+7U9XZJf28lmhCyFU86bOQHJiAoTow3q4dbVP/Wp2lDxNpMKuLA==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/Yavsc.Abstract.dll", + "Yavsc.Abstract.1.0.5-rc14.nupkg", + "Yavsc.Abstract.1.0.5-rc14.nupkg.sha512", + "Yavsc.Abstract.nuspec" ] } }, @@ -12024,10 +8533,12 @@ "Microsoft.Extensions.Logging.Console >= 1.0.0-rc1-final", "Microsoft.AspNet.Identity.EntityFramework >= 3.0.0-rc1-*", "Microsoft.AspNet.Identity >= 3.0.0-rc1-*", - "Yavsc >= 1.0.5-rc13", "Microsoft.Extensions.DependencyInjection.Abstractions >= 1.0.0-rc1-final", "Microsoft.Extensions.Logging.Debug >= 1.0.0-rc1-final", - "Microsoft.CodeAnalysis >= 1.0.0-rc1" + "Microsoft.CodeAnalysis >= 1.0.0-rc1", + "EntityFramework7.Npgsql >= 3.1.0-rc1-3", + "Yavsc.Abstract >= 1.0.5-rc14", + "Yavsc >= 1.0.5-rc14" ], "DNX,Version=v4.5.1": [] } diff --git a/rc-num.txt b/rc-num.txt index b1bd38b6..8351c193 100644 --- a/rc-num.txt +++ b/rc-num.txt @@ -1 +1 @@ -13 +14