File tree Expand file tree Collapse file tree 3 files changed +17
-11
lines changed
samples/MusicStore/MusicStore.Web Expand file tree Collapse file tree 3 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 4
4
<VisualStudioVersion Condition =" '$(VisualStudioVersion)' == ''" >14.0</VisualStudioVersion >
5
5
<VSToolsPath Condition =" '$(VSToolsPath)' == ''" >$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath >
6
6
</PropertyGroup >
7
- <Import Project =" $(VSToolsPath)\DNX \Microsoft.DNX .Props" Condition =" '$(VSToolsPath)' != ''" />
7
+ <Import Project =" $(VSToolsPath)\DotNet \Microsoft.DotNet .Props" Condition =" '$(VSToolsPath)' != ''" />
8
8
<PropertyGroup Label =" Globals" >
9
9
<ProjectGuid >c1d5718b-935e-4465-99ae-04838deea708</ProjectGuid >
10
+ <RootNamespace >MusicStore</RootNamespace >
10
11
<BaseIntermediateOutputPath Condition =" '$(BaseIntermediateOutputPath)'=='' " >.\obj</BaseIntermediateOutputPath >
11
12
<OutputPath Condition =" '$(OutputPath)'=='' " >.\bin\</OutputPath >
12
13
</PropertyGroup >
13
- <PropertyGroup Label =" Configuration" >
14
- <RootNamespace >MusicStore</RootNamespace >
15
- </PropertyGroup >
16
14
<PropertyGroup >
17
15
<SchemaVersion >2.0</SchemaVersion >
18
- <DevelopmentServerPort >5001</DevelopmentServerPort >
19
16
</PropertyGroup >
20
- <Import Project =" $(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition =" '$(VSToolsPath)' != ''" />
17
+ <ItemGroup >
18
+ <DnxInvisibleContent Include =" bower.json" />
19
+ <DnxInvisibleContent Include =" .bowerrc" />
20
+ <DnxInvisibleContent Include =" package.json" />
21
+ <DnxInvisibleContent Include =" .npmrc" />
22
+ </ItemGroup >
23
+ <Import Project =" $(VSToolsPath)\DotNet.Web\Microsoft.DotNet.Web.targets" Condition =" '$(VSToolsPath)' != ''" />
21
24
</Project >
Original file line number Diff line number Diff line change 15
15
"Hosting:Environment" : " Development"
16
16
}
17
17
},
18
- "web" : {
19
- "commandName" : " web" ,
20
- "environmentVariables" : {
21
- "Hosting:Environment" : " Development"
22
- }
18
+ "MusicStore.Web" : {
19
+ "commandName" : " Project" ,
20
+ "launchBrowser" : true ,
21
+ "launchUrl" : " http://localhost:5000"
23
22
}
24
23
}
25
24
}
Original file line number Diff line number Diff line change
1
+ @using MusicStore
2
+ @using MusicStore .Models
3
+ @using Microsoft .Extensions .Options
4
+ @using Microsoft .AspNetCore .Identity
1
5
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
You can’t perform that action at this time.
0 commit comments