Added wwwroot folder to WelcomePageSample

This commit is contained in:
Kiran Challa 2015-08-10 13:12:15 -07:00
parent 12e78455d4
commit 5ffac92a1d
3 changed files with 13 additions and 10 deletions

View File

@ -12,6 +12,7 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
<DevelopmentServerPort>36451</DevelopmentServerPort>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> <Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project> </Project>

View File

@ -1,4 +1,5 @@
{ {
"webroot": "wwwroot",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Diagnostics": "", "Microsoft.AspNet.Diagnostics": "",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*", "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
@ -7,6 +8,6 @@
"commands": { "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5001" }, "commands": { "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5001" },
"frameworks": { "frameworks": {
"dnx451": { }, "dnx451": { },
"dnxcore50": {} "dnxcore50": { }
} }
} }

View File

@ -0,0 +1 @@
Sample demonstrating WelcomePage middleware.