Browse Source

Update project.json to use an explicit alpha marker and add missing metadata

pull/80/head
Kévin Chalet 11 years ago
parent
commit
02da3ea34c
  1. 56
      external/NWebsec/project.json
  2. 116
      samples/Mvc.Client/project.json
  3. 122
      samples/Mvc.Server/project.json
  4. 70
      src/OpenIddict.Assets/project.json
  5. 74
      src/OpenIddict.Core/project.json
  6. 51
      src/OpenIddict.EF/project.json
  7. 45
      src/OpenIddict.Models/project.json
  8. 73
      src/OpenIddict.Mvc/project.json
  9. 51
      src/OpenIddict.Security/project.json
  10. 55
      src/OpenIddict/project.json

56
external/NWebsec/project.json

@ -1,35 +1,35 @@
{ {
"version": "1.0.0-internal-*", "version": "1.0.0-internal-*",
"title": "NWebsec.Middleware (ASP.NET 5)", "title": "NWebsec.Middleware (ASP.NET 5)",
"description": "NWebsec middleware for ASP.NET 5 applications. NWebsec helps you set important security headers and detect potentially dangerous redirects. See project website for documentation.", "description": "NWebsec middleware for ASP.NET 5 applications. NWebsec helps you set important security headers and detect potentially dangerous redirects. See project website for documentation.",
"releaseNotes": "This release includes core functions for the NWebsec security libaries.", "releaseNotes": "This release includes core functions for the NWebsec security libaries.",
"authors": [ "André N. Klingsheim" ], "authors": [ "André N. Klingsheim" ],
"owners": [ "André N. Klingsheim" ], "owners": [ "André N. Klingsheim" ],
"copyright": "Copyright © 2014 - 2015", "copyright": "Copyright © 2014 - 2015",
"tags": [ "NWebsec Security AspNet AppSec" ], "tags": [ "NWebsec Security AspNet AppSec" ],
"projectUrl": "https://docs.nwebsec.com/en/latest/", "projectUrl": "https://docs.nwebsec.com/en/latest/",
"licenseUrl": "https://github.com/NWebsec/NWebsec/blob/master/LICENSE", "licenseUrl": "https://github.com/NWebsec/NWebsec/blob/master/LICENSE",
"iconUrl": "https://klings.blob.core.windows.net/nwebsecicon/nwebsec_nuget.png", "iconUrl": "https://klings.blob.core.windows.net/nwebsecicon/nwebsec_nuget.png",
"shared": "**/**.cs", "shared": "**/**.cs",
"frameworks": { "frameworks": {
"net451": { }, "net451": { },
"netstandard1.3": { "netstandard1.3": {
"dependencies": { "dependencies": {
"Microsoft.CSharp": "4.0.1-*", "Microsoft.CSharp": "4.0.1-*",
"System.Runtime": "4.1.0-*" "System.Runtime": "4.1.0-*"
}, },
"imports": [ "imports": [
"dotnet5.4", "dotnet5.4",
"portable-net451+win8" "portable-net451+win8"
] ]
}
},
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*"
} }
},
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0-*"
}
} }

116
samples/Mvc.Client/project.json

@ -1,60 +1,60 @@
{ {
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*", "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "0.1.0-*", "Microsoft.AspNetCore.Authentication.OpenIdConnect": "0.1.0-*",
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*", "Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.HttpOverrides": "1.0.0-*", "Microsoft.AspNetCore.HttpOverrides": "1.0.0-*",
"Microsoft.AspNetCore.Hosting": "1.0.0-*", "Microsoft.AspNetCore.Hosting": "1.0.0-*",
"Microsoft.AspNetCore.Mvc": "1.0.0-*", "Microsoft.AspNetCore.Mvc": "1.0.0-*",
"Microsoft.AspNetCore.Mvc.Dnx": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Dnx": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*", "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Logging.Debug": "1.0.0-*", "Microsoft.Extensions.Logging.Debug": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*", "Microsoft.NETCore.Platforms": "1.0.1-*",
"System.ComponentModel": "4.0.1-*", "System.ComponentModel": "4.0.1-*",
"System.IO": "4.1.0-*", "System.IO": "4.1.0-*",
"System.Runtime": "4.1.0-*" "System.Runtime": "4.1.0-*"
}, },
"frameworks": { "frameworks": {
"net451": { }, "net451": { },
"netstandardapp1.5": { "netstandardapp1.5": {
"imports": [ "imports": [
"dnxcore50", "dnxcore50",
"portable-net451+win8" "portable-net451+win8"
] ]
} }
}, },
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
"commands": { "commands": {
"web": "Mvc.Client" "web": "Mvc.Client"
}, },
"content": [ "content": [
"wwwroot", "wwwroot",
"Views" "Views"
], ],
"exclude": [ "exclude": [
"wwwroot", "wwwroot",
"node_modules", "node_modules",
"bower_components" "bower_components"
], ],
"publishExclude": [ "publishExclude": [
"node_modules", "node_modules",
"bower_components", "bower_components",
"**.xproj", "**.xproj",
"**.user", "**.user",
"**.vspscc" "**.vspscc"
] ]
} }

122
samples/Mvc.Server/project.json

@ -1,63 +1,63 @@
{ {
"dependencies": { "dependencies": {
"AspNet.Security.OAuth.Introspection": "1.0.0-*", "AspNet.Security.OAuth.Introspection": "1.0.0-*",
"AspNet.Security.OAuth.Validation": "1.0.0-*", "AspNet.Security.OAuth.Validation": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Google": "1.0.0-*", "Microsoft.AspNetCore.Authentication.Google": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*", "Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*",
"Microsoft.AspNetCore.Diagnostics": "1.0.0-*", "Microsoft.AspNetCore.Diagnostics": "1.0.0-*",
"Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*", "Microsoft.AspNetCore.IISPlatformHandler": "1.0.0-*",
"Microsoft.AspNetCore.HttpOverrides": "1.0.0-*", "Microsoft.AspNetCore.HttpOverrides": "1.0.0-*",
"Microsoft.AspNetCore.Mvc.Dnx": "1.0.0-*", "Microsoft.AspNetCore.Mvc.Dnx": "1.0.0-*",
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*", "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*", "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.0-*", "Microsoft.EntityFrameworkCore.SqlServer": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*", "Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Logging.Debug": "1.0.0-*", "Microsoft.Extensions.Logging.Debug": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-*", "Microsoft.NETCore.Platforms": "1.0.1-*",
"OpenIddict": "1.0.0-*", "OpenIddict": "1.0.0-*",
"System.ComponentModel": "4.0.1-*", "System.ComponentModel": "4.0.1-*",
"System.IO": "4.1.0-*", "System.IO": "4.1.0-*",
"System.Runtime": "4.1.0-*" "System.Runtime": "4.1.0-*"
}, },
"frameworks": { "frameworks": {
"net451": { }, "net451": { },
"netstandardapp1.5": { "netstandardapp1.5": {
"imports": [ "imports": [
"dnxcore50", "dnxcore50",
"portable-net451+win8" "portable-net451+win8"
] ]
} }
}, },
"compilationOptions": { "compilationOptions": {
"emitEntryPoint": true, "emitEntryPoint": true,
"preserveCompilationContext": true "preserveCompilationContext": true
}, },
"commands": { "commands": {
"web": "Mvc.Server" "web": "Mvc.Server"
}, },
"content": [ "content": [
"wwwroot", "wwwroot",
"Views" "Views"
], ],
"exclude": [ "exclude": [
"wwwroot", "wwwroot",
"node_modules", "node_modules",
"bower_components" "bower_components"
], ],
"publishExclude": [ "publishExclude": [
"node_modules", "node_modules",
"bower_components", "bower_components",
"**.xproj", "**.xproj",
"**.user", "**.user",
"**.vspscc" "**.vspscc"
] ]
} }

70
src/OpenIddict.Assets/project.json

@ -1,37 +1,49 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "Contains the default assets used by OpenIddict.", "description": "Contains the default assets used by OpenIddict.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"resource": [ "fonts/*", "scripts/*", "stylesheets/*" ], "projectUrl": "https://github.com/openiddict/openiddict-core",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"dependencies": { "repository": {
"JetBrains.Annotations": "10.1.2-eap", "type": "git",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "url": "git://github.com/openiddict/openiddict-core"
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*", },
"OpenIddict.Core": "1.0.0-*"
"tags": [
"aspnetcore",
"authentication",
"jwt",
"openidconnect",
"openiddict",
"security"
],
"resource": [ "fonts/*", "scripts/*", "stylesheets/*" ],
"dependencies": {
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*",
"OpenIddict.Core": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.Reflection": { "type": "build", "version": "4.0.0.0" },
"System.Runtime": { "type": "build", "version": "4.0.10.0" }
}
}, },
"frameworks": { "netstandard1.3": {
"net451": { "imports": [
"frameworkAssemblies": { "dotnet5.4",
"System.Reflection": { "portable-net451+win8"
"type": "build", ]
"version": "4.0.0.0"
},
"System.Runtime": {
"type": "build",
"version": "4.0.10.0"
}
}
},
"netstandard1.3": {
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
}
} }
}
} }

74
src/OpenIddict.Core/project.json

@ -1,38 +1,50 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "Core components of OpenIddict.", "description": "Core components of OpenIddict.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"dependencies": { "projectUrl": "https://github.com/openiddict/openiddict-core",
"AspNet.Security.OpenIdConnect.Server": "1.0.0-*", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"CryptoHelper": "1.0.0-rc2-build03",
"JetBrains.Annotations": "10.1.2-eap", "repository": {
"Microsoft.AspNetCore.Cors": "1.0.0-*", "type": "git",
"Microsoft.AspNetCore.Identity": "1.0.0-*", "url": "git://github.com/openiddict/openiddict-core"
"Microsoft.Extensions.Configuration": "1.0.0-*", },
"Microsoft.Extensions.Caching.Memory": "1.0.0-*"
},
"frameworks": { "tags": [
"net451": { "aspnetcore",
"frameworkAssemblies": { "authentication",
"System.ComponentModel": { "jwt",
"type": "build", "openidconnect",
"version": "4.0.0.0" "openiddict",
}, "security"
],
"System.Runtime": { "dependencies": {
"type": "build", "AspNet.Security.OpenIdConnect.Server": "1.0.0-*",
"version": "4.0.10.0" "CryptoHelper": "1.0.0-rc2-build03",
} "JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
} "Microsoft.AspNetCore.Cors": "1.0.0-*",
}, "Microsoft.AspNetCore.Identity": "1.0.0-*",
"Microsoft.Extensions.Configuration": "1.0.0-*",
"Microsoft.Extensions.Caching.Memory": "1.0.0-*"
},
"frameworks": {
"net451": {
"frameworkAssemblies": {
"System.ComponentModel": { "type": "build", "version": "4.0.0.0" },
"System.Runtime": { "type": "build", "version": "4.0.10.0" }
}
},
"netstandard1.3": { "netstandard1.3": {
"imports": [ "imports": [
"dotnet5.4", "dotnet5.4",
"portable-net451+win8" "portable-net451+win8"
] ]
}
} }
}
} }

51
src/OpenIddict.EF/project.json

@ -1,23 +1,42 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "Entity Framework adapter for OpenIddict.", "description": "Entity Framework adapter for OpenIddict.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"dependencies": { "projectUrl": "https://github.com/openiddict/openiddict-core",
"JetBrains.Annotations": "10.1.2-eap", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-*",
"OpenIddict.Core": "1.0.0-*",
"OpenIddict.Models": "1.0.0-*"
},
"frameworks": { "repository": {
"net451": { }, "type": "git",
"url": "git://github.com/openiddict/openiddict-core"
},
"netstandard1.3": { "tags": [
"imports": [ "aspnetcore",
"dotnet5.4", "authentication",
"portable-net451+win8" "jwt",
] "openidconnect",
} "openiddict",
"security"
],
"dependencies": {
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
"Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0-*",
"OpenIddict.Core": "1.0.0-*",
"OpenIddict.Models": "1.0.0-*"
},
"frameworks": {
"net451": { },
"netstandard1.3": {
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
} }
}
} }

45
src/OpenIddict.Models/project.json

@ -1,20 +1,39 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "Contains the default models used by OpenIddict.", "description": "Contains the default models used by OpenIddict.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"frameworks": { "projectUrl": "https://github.com/openiddict/openiddict-core",
"net451": { }, "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"netstandard1.3": { "repository": {
"dependencies": { "type": "git",
"System.Runtime": "4.1.0-*" "url": "git://github.com/openiddict/openiddict-core"
}, },
"imports": [ "tags": [
"dotnet5.4", "aspnetcore",
"portable-net451+win8" "authentication",
] "jwt",
} "openidconnect",
"openiddict",
"security"
],
"frameworks": {
"net451": { },
"netstandard1.3": {
"dependencies": {
"System.Runtime": "4.1.0-*"
},
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
} }
}
} }

73
src/OpenIddict.Mvc/project.json

@ -1,36 +1,55 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "MVC 6 module for OpenIddict.", "description": "ASP.NET Core MVC module for OpenIddict.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"resource": "Views/**", "projectUrl": "https://github.com/openiddict/openiddict-core",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"dependencies": { "repository": {
"AspNet.Hosting.Extensions": "1.0.0-*", "type": "git",
"JetBrains.Annotations": "10.1.2-eap", "url": "git://github.com/openiddict/openiddict-core"
"Microsoft.AspNetCore.Mvc": "1.0.0-*", },
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Composite": "1.0.0-*",
"OpenIddict.Core": "1.0.0-*",
"System.Reflection": "4.1.0-*" "tags": [
}, "aspnetcore",
"authentication",
"jwt",
"openidconnect",
"openiddict",
"security"
],
"resource": "Views/**",
"dependencies": {
"AspNet.Hosting.Extensions": "1.0.0-*",
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Composite": "1.0.0-*",
"OpenIddict.Core": "1.0.0-*",
"frameworks": { "System.Reflection": "4.1.0-*"
"net451": { },
"frameworkAssemblies": {
"System.Reflection": { "frameworks": {
"type": "build", "net451": {
"version": "4.0.0.0" "frameworkAssemblies": {
} "System.Reflection": {
} "type": "build",
}, "version": "4.0.0.0"
"netstandard1.5": {
"imports": [
"dotnet5.6",
"portable-net451+win8"
]
} }
}
},
"netstandard1.5": {
"imports": [
"dotnet5.6",
"portable-net451+win8"
]
} }
}
} }

51
src/OpenIddict.Security/project.json

@ -1,26 +1,41 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "Security headers module for OpenIddict.", "description": "Security headers module for OpenIddict.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"dependencies": { "projectUrl": "https://github.com/openiddict/openiddict-core",
"JetBrains.Annotations": "10.1.2-eap", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"OpenIddict.Core": "1.0.0-*",
"NWebsec": { "repository": {
"type": "build", "type": "git",
"version": "1.0.0-internal-*" "url": "git://github.com/openiddict/openiddict-core"
} },
},
"frameworks": { "tags": [
"net451": { }, "aspnetcore",
"authentication",
"jwt",
"openidconnect",
"openiddict",
"security"
],
"netstandard1.3": { "dependencies": {
"imports": [ "NWebsec": { "type": "build", "version": "1.0.0-internal-*" },
"dotnet5.4", "JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
"portable-net451+win8" "OpenIddict.Core": "1.0.0-*"
] },
}
"frameworks": {
"net451": { },
"netstandard1.3": {
"imports": [
"dotnet5.4",
"portable-net451+win8"
]
} }
}
} }

55
src/OpenIddict/project.json

@ -1,24 +1,43 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-alpha2-*",
"description": "Easy-to-use OpenID Connect server for ASP.NET 5.", "description": "Easy-to-use OpenID Connect server for ASP.NET Core.",
"authors": [ "Kévin Chalet" ],
"owners": [ "Kévin Chalet" ],
"dependencies": { "projectUrl": "https://github.com/openiddict/openiddict-core",
"JetBrains.Annotations": "10.1.2-eap", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.html",
"OpenIddict.Assets": "1.0.0-*",
"OpenIddict.EF": "1.0.0-*",
"OpenIddict.Mvc": "1.0.0-*",
"OpenIddict.Security": "1.0.0-*"
},
"frameworks": { "repository": {
"net451": { }, "type": "git",
"url": "git://github.com/openiddict/openiddict-core"
},
"netstandard1.5": { "tags": [
"imports": [ "aspnetcore",
"dotnet5.6", "authentication",
"portable-net451+win8" "jwt",
] "openidconnect",
} "openiddict",
"security"
],
"dependencies": {
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
"OpenIddict.Assets": "1.0.0-*",
"OpenIddict.EF": "1.0.0-*",
"OpenIddict.Mvc": "1.0.0-*",
"OpenIddict.Security": "1.0.0-*"
},
"frameworks": {
"net451": { },
"netstandard1.5": {
"imports": [
"dotnet5.6",
"portable-net451+win8"
]
} }
}
} }
Loading…
Cancel
Save