├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── azuredeploy.json ├── readme.md └── src ├── ToDoList.sln ├── ToDoListAPI ├── App_Start │ ├── SwaggerConfig.cs │ └── WebApiConfig.cs ├── ApplicationInsights.config ├── Controllers │ └── ToDoListController.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── ServicePrincipal.cs ├── ToDoListAPI.csproj ├── ToDoListDataAPI │ ├── IToDoList.cs │ ├── IToDoListDataAPI.cs │ ├── Models │ │ ├── ToDoItem.cs │ │ └── ToDoItemCollection.cs │ ├── ToDoList.cs │ ├── ToDoListDataAPI.cs │ ├── ToDoListDataAPIExtensions.cs │ └── ToDoListExtensions.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── packages.config └── scripts │ ├── ai.0.15.0-build58334.js │ └── ai.0.15.0-build58334.min.js ├── ToDoListAngular ├── Properties │ └── AssemblyInfo.cs ├── ToDoListAngular.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── app │ ├── scripts │ │ ├── adal-angular.js │ │ ├── adal.js │ │ ├── app.js │ │ ├── homeCtrl.js │ │ ├── indexCtrl.js │ │ ├── todoListCtrl.js │ │ ├── todoListSvc.js │ │ └── userDataCtrl.js │ └── views │ │ ├── Home.html │ │ ├── TodoList.html │ │ └── UserData.html ├── favicon.ico ├── index.cshtml └── packages.config └── ToDoListDataAPI ├── App_Start ├── SwaggerConfig.cs └── WebApiConfig.cs ├── ApplicationInsights.config ├── Controllers └── ToDoListController.cs ├── Global.asax ├── Global.asax.cs ├── Models └── ToDoItem.cs ├── Properties └── AssemblyInfo.cs ├── ToDoListDataAPI.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── packages.config └── scripts ├── ai.0.15.0-build58334.js └── ai.0.15.0-build58334.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/LICENSE -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/readme.md -------------------------------------------------------------------------------- /src/ToDoList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoList.sln -------------------------------------------------------------------------------- /src/ToDoListAPI/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ApplicationInsights.config -------------------------------------------------------------------------------- /src/ToDoListAPI/Controllers/ToDoListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Controllers/ToDoListController.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Global.asax -------------------------------------------------------------------------------- /src/ToDoListAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Global.asax.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ServicePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ServicePrincipal.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListAPI.csproj -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/IToDoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/IToDoList.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/IToDoListDataAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/IToDoListDataAPI.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/Models/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/Models/ToDoItem.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/Models/ToDoItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/Models/ToDoItemCollection.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/ToDoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/ToDoList.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/ToDoListDataAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/ToDoListDataAPI.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/ToDoListDataAPIExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/ToDoListDataAPIExtensions.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/ToDoListDataAPI/ToDoListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/ToDoListDataAPI/ToDoListExtensions.cs -------------------------------------------------------------------------------- /src/ToDoListAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Web.Debug.config -------------------------------------------------------------------------------- /src/ToDoListAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Web.Release.config -------------------------------------------------------------------------------- /src/ToDoListAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/Web.config -------------------------------------------------------------------------------- /src/ToDoListAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/packages.config -------------------------------------------------------------------------------- /src/ToDoListAPI/scripts/ai.0.15.0-build58334.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/scripts/ai.0.15.0-build58334.js -------------------------------------------------------------------------------- /src/ToDoListAPI/scripts/ai.0.15.0-build58334.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAPI/scripts/ai.0.15.0-build58334.min.js -------------------------------------------------------------------------------- /src/ToDoListAngular/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ToDoListAngular/ToDoListAngular.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/ToDoListAngular.csproj -------------------------------------------------------------------------------- /src/ToDoListAngular/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/Web.Debug.config -------------------------------------------------------------------------------- /src/ToDoListAngular/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/Web.Release.config -------------------------------------------------------------------------------- /src/ToDoListAngular/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/Web.config -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/adal-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/adal-angular.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/adal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/adal.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/app.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/homeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/homeCtrl.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/indexCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/indexCtrl.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/todoListCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/todoListCtrl.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/todoListSvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/todoListSvc.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/scripts/userDataCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/scripts/userDataCtrl.js -------------------------------------------------------------------------------- /src/ToDoListAngular/app/views/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/views/Home.html -------------------------------------------------------------------------------- /src/ToDoListAngular/app/views/TodoList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/views/TodoList.html -------------------------------------------------------------------------------- /src/ToDoListAngular/app/views/UserData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/app/views/UserData.html -------------------------------------------------------------------------------- /src/ToDoListAngular/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/favicon.ico -------------------------------------------------------------------------------- /src/ToDoListAngular/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/index.cshtml -------------------------------------------------------------------------------- /src/ToDoListAngular/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListAngular/packages.config -------------------------------------------------------------------------------- /src/ToDoListDataAPI/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /src/ToDoListDataAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/ToDoListDataAPI/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/ApplicationInsights.config -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Controllers/ToDoListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Controllers/ToDoListController.cs -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Global.asax -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Global.asax.cs -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Models/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Models/ToDoItem.cs -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ToDoListDataAPI/ToDoListDataAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/ToDoListDataAPI.csproj -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Web.Debug.config -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Web.Release.config -------------------------------------------------------------------------------- /src/ToDoListDataAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/Web.config -------------------------------------------------------------------------------- /src/ToDoListDataAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/packages.config -------------------------------------------------------------------------------- /src/ToDoListDataAPI/scripts/ai.0.15.0-build58334.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/scripts/ai.0.15.0-build58334.js -------------------------------------------------------------------------------- /src/ToDoListDataAPI/scripts/ai.0.15.0-build58334.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-todo-list/HEAD/src/ToDoListDataAPI/scripts/ai.0.15.0-build58334.min.js --------------------------------------------------------------------------------