├── .gitattributes ├── .gitignore ├── MyWebApplication.sln ├── MyWebApplication ├── App.config ├── Controllers │ └── HomeController.cs ├── MyWebApplication.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ └── _ViewImports.cshtml ├── project.json └── wwwroot │ └── stylesheet.css └── NuGet.Config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/.gitignore -------------------------------------------------------------------------------- /MyWebApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication.sln -------------------------------------------------------------------------------- /MyWebApplication/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/App.config -------------------------------------------------------------------------------- /MyWebApplication/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/Controllers/HomeController.cs -------------------------------------------------------------------------------- /MyWebApplication/MyWebApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/MyWebApplication.csproj -------------------------------------------------------------------------------- /MyWebApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/Program.cs -------------------------------------------------------------------------------- /MyWebApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MyWebApplication/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/Startup.cs -------------------------------------------------------------------------------- /MyWebApplication/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /MyWebApplication/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MyWebApplication 2 | -------------------------------------------------------------------------------- /MyWebApplication/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/project.json -------------------------------------------------------------------------------- /MyWebApplication/wwwroot/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/MyWebApplication/wwwroot/stylesheet.css -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/AspNetCoreCsproj/HEAD/NuGet.Config --------------------------------------------------------------------------------