Execute html in asp.net Core Web Applications (.Net framework)

0

Good afternoon I'm working with angular 1, asp.net Core Web Applications (.Net framework), which created some modules and I could not execute the login view, and when I run I get hello word of the startup. is there no way to tell visual which view to execute or do I have to configure something that allows me to execute the view?

    
asked by Erwing 26.09.2016 в 22:41
source

2 answers

1

I hope this information helps you:

link

link

link

    
answered by 26.09.2016 / 23:32
source
4

In your Startup.cs, in the void Configure, add this:

app.UseStaticFiles();

Found in the package:

Microsoft.AspNetCore.StaticFiles

This goes in the project.json

"Microsoft.AspNetCore.StaticFiles": "1.0.0"
    
answered by 26.09.2016 в 22:51