Changes for OptionsModel
This commit is contained in:
parent
c356d8e824
commit
043dbb2940
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using Microsoft.AspNet.Identity.Entity;
|
using Microsoft.AspNet.Identity.Entity;
|
||||||
using Microsoft.Data.Entity;
|
using Microsoft.Data.Entity;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
|
||||||
namespace MusicStore.Models
|
namespace MusicStore.Models
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Microsoft.Data.Entity;
|
using Microsoft.Data.Entity;
|
||||||
using Microsoft.Data.Entity.Metadata;
|
using Microsoft.Data.Entity.Metadata;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
|
||||||
namespace MusicStore.Models
|
namespace MusicStore.Models
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||||
using Microsoft.AspNet.Identity;
|
using Microsoft.AspNet.Identity;
|
||||||
using Microsoft.Data.Entity;
|
using Microsoft.Data.Entity;
|
||||||
using Microsoft.Data.Entity.SqlServer;
|
using Microsoft.Data.Entity.SqlServer;
|
||||||
using Microsoft.Framework.ConfigurationModel;
|
using Microsoft.Framework.OptionsModel;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.DependencyInjection;
|
||||||
|
|
||||||
namespace MusicStore.Models
|
namespace MusicStore.Models
|
||||||
|
|
|
||||||
|
|
@ -3499,7 +3499,6 @@
|
||||||
<Content Include="node_modules\grunt\node_modules\minimatch\test\caching.js" />
|
<Content Include="node_modules\grunt\node_modules\minimatch\test\caching.js" />
|
||||||
<Content Include="node_modules\grunt\node_modules\minimatch\test\defaults.js" />
|
<Content Include="node_modules\grunt\node_modules\minimatch\test\defaults.js" />
|
||||||
<Content Include="node_modules\grunt\node_modules\minimatch\test\extglob-ending-with-state-char.js" />
|
<Content Include="node_modules\grunt\node_modules\minimatch\test\extglob-ending-with-state-char.js" />
|
||||||
<Content Include="node_modules\grunt\node_modules\nopt\.npmignore" />
|
|
||||||
<Content Include="node_modules\grunt\node_modules\nopt\bin\nopt.js" />
|
<Content Include="node_modules\grunt\node_modules\nopt\bin\nopt.js" />
|
||||||
<Content Include="node_modules\grunt\node_modules\nopt\examples\my-program.js" />
|
<Content Include="node_modules\grunt\node_modules\nopt\examples\my-program.js" />
|
||||||
<Content Include="node_modules\grunt\node_modules\nopt\lib\nopt.js" />
|
<Content Include="node_modules\grunt\node_modules\nopt\lib\nopt.js" />
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using Microsoft.AspNet.Identity.Entity;
|
using Microsoft.AspNet.Identity.Entity;
|
||||||
using Microsoft.Data.Entity;
|
using Microsoft.Data.Entity;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
|
||||||
namespace MusicStore.Models
|
namespace MusicStore.Models
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using Microsoft.Data.Entity;
|
using Microsoft.Data.Entity;
|
||||||
using Microsoft.Data.Entity.Metadata;
|
using Microsoft.Data.Entity.Metadata;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
|
||||||
namespace MusicStore.Models
|
namespace MusicStore.Models
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ using Microsoft.AspNet.Identity;
|
||||||
using Microsoft.Data.Entity;
|
using Microsoft.Data.Entity;
|
||||||
using Microsoft.Data.Entity.SqlServer;
|
using Microsoft.Data.Entity.SqlServer;
|
||||||
using Microsoft.Framework.DependencyInjection;
|
using Microsoft.Framework.DependencyInjection;
|
||||||
|
using Microsoft.Framework.OptionsModel;
|
||||||
|
|
||||||
namespace MusicStore.Models
|
namespace MusicStore.Models
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,8 @@
|
||||||
"Microsoft.AspNet.Security.Cookies": "0.1-alpha-*",
|
"Microsoft.AspNet.Security.Cookies": "0.1-alpha-*",
|
||||||
"Microsoft.AspNet.StaticFiles": "0.1-alpha-*",
|
"Microsoft.AspNet.StaticFiles": "0.1-alpha-*",
|
||||||
"Microsoft.Data.Entity.SqlServer": "0.1-alpha-*",
|
"Microsoft.Data.Entity.SqlServer": "0.1-alpha-*",
|
||||||
"Microsoft.Framework.ConfigurationModel.Json": "0.1-alpha-*"
|
"Microsoft.Framework.ConfigurationModel.Json": "0.1-alpha-*",
|
||||||
|
"Microsoft.Framework.OptionsModel": "0.1-alpha-*"
|
||||||
},
|
},
|
||||||
"commands": {
|
"commands": {
|
||||||
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5002",
|
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5002",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue