File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
WebApplication1/WebApplication1 Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Web ;
5+ using System . Web . Mvc ;
6+
7+ namespace WebApplication1 . Controllers
8+ {
9+ public class DefaultController : Controller
10+ {
11+ // GET: Default
12+ public ActionResult Index ( )
13+ {
14+ return View ( ) ;
15+ }
16+ }
17+ }
Original file line number Diff line number Diff line change 528528 <ItemGroup >
529529 <Compile Include =" App_Start\ApplicationConfig.cs" />
530530 <Compile Include =" App_Start\RouteConfig.cs" />
531+ <Compile Include =" Controllers\DefaultController.cs" />
531532 <Compile Include =" Global.asax.cs" >
532533 <DependentUpon >Global.asax</DependentUpon >
533534 </Compile >
544545 </None >
545546 </ItemGroup >
546547 <ItemGroup >
547- <Folder Include =" Controllers\" />
548548 <Folder Include =" Models\" />
549549 <Folder Include =" Views\Default\" />
550550 </ItemGroup >
You can’t perform that action at this time.
0 commit comments