├── ASP.NET Core API.postman_collection.json ├── Finished sample ├── CityInfo.API │ ├── CitiesDataStore.cs │ ├── CityInfo.API.csproj │ ├── Contexts │ │ └── CityInfoContext.cs │ ├── Controllers │ │ ├── CitiesController.cs │ │ ├── DummyController.cs │ │ └── PointsOfInterestController.cs │ ├── Entities │ │ ├── City.cs │ │ └── PointOfInterest.cs │ ├── Migrations │ │ ├── 20191206101024_CityInfoDBInitialMigration.Designer.cs │ │ ├── 20191206101024_CityInfoDBInitialMigration.cs │ │ ├── 20191206102741_CityInfoDBAddPoIDescription.Designer.cs │ │ ├── 20191206102741_CityInfoDBAddPoIDescription.cs │ │ ├── 20191206111047_SampleData.Designer.cs │ │ ├── 20191206111047_SampleData.cs │ │ └── CityInfoContextModelSnapshot.cs │ ├── Models │ │ ├── CityDto.cs │ │ ├── CityWithoutPointsOfInterestDto.cs │ │ ├── PointOfInterestDto.cs │ │ ├── PointOfInterestForCreationDto.cs │ │ └── PointOfInterestForUpdateDto.cs │ ├── Profiles │ │ ├── CityProfile.cs │ │ └── PointOfInterestProfile.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── CityInfoRepository.cs │ │ ├── CloudMailService.cs │ │ ├── ICityInfoRepository.cs │ │ ├── IMailService.cs │ │ └── LocalMailService.cs │ ├── Startup.cs │ ├── appsettings.Production.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp2.1 │ │ │ ├── CityInfo.API.deps.json │ │ │ ├── CityInfo.API.dll │ │ │ ├── CityInfo.API.pdb │ │ │ ├── CityInfo.API.runtimeconfig.dev.json │ │ │ ├── CityInfo.API.runtimeconfig.json │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── appsettings.Production.json │ │ │ ├── appsettings.json │ │ │ ├── nlog-2019-12-04.log │ │ │ ├── nlog-2019-12-06.log │ │ │ └── nlog.config │ ├── nlog.config │ └── obj │ │ ├── CityInfo.API.csproj.nuget.cache │ │ ├── CityInfo.API.csproj.nuget.dgspec.json │ │ ├── CityInfo.API.csproj.nuget.g.props │ │ ├── CityInfo.API.csproj.nuget.g.targets │ │ ├── Debug │ │ └── netcoreapp2.1 │ │ │ ├── CityInfo.API.AssemblyInfo.cs │ │ │ ├── CityInfo.API.AssemblyInfoInputs.cache │ │ │ ├── CityInfo.API.RazorAssemblyInfo.cache │ │ │ ├── CityInfo.API.RazorAssemblyInfo.cs │ │ │ ├── CityInfo.API.RazorTargetAssemblyInfo.cache │ │ │ ├── CityInfo.API.assets.cache │ │ │ ├── CityInfo.API.csproj.FileListAbsolute.txt │ │ │ ├── CityInfo.API.csprojAssemblyReference.cache │ │ │ ├── CityInfo.API.dll │ │ │ └── CityInfo.API.pdb │ │ ├── Release │ │ └── netcoreapp2.1 │ │ │ ├── CityInfo.API.AssemblyInfo.cs │ │ │ ├── CityInfo.API.AssemblyInfoInputs.cache │ │ │ ├── CityInfo.API.RazorAssemblyInfo.cache │ │ │ ├── CityInfo.API.RazorAssemblyInfo.cs │ │ │ └── CityInfo.API.assets.cache │ │ └── project.assets.json └── CityInfo.sln ├── README.md └── Starter files └── startfromscratch.txt /ASP.NET Core API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/ASP.NET Core API.postman_collection.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/CitiesDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/CitiesDataStore.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/CityInfo.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/CityInfo.API.csproj -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Contexts/CityInfoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Contexts/CityInfoContext.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Controllers/CitiesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Controllers/CitiesController.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Controllers/DummyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Controllers/DummyController.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Controllers/PointsOfInterestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Controllers/PointsOfInterestController.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Entities/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Entities/City.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Entities/PointOfInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Entities/PointOfInterest.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/20191206101024_CityInfoDBInitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/20191206101024_CityInfoDBInitialMigration.Designer.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/20191206101024_CityInfoDBInitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/20191206101024_CityInfoDBInitialMigration.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/20191206102741_CityInfoDBAddPoIDescription.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/20191206102741_CityInfoDBAddPoIDescription.Designer.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/20191206102741_CityInfoDBAddPoIDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/20191206102741_CityInfoDBAddPoIDescription.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/20191206111047_SampleData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/20191206111047_SampleData.Designer.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/20191206111047_SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/20191206111047_SampleData.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Migrations/CityInfoContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Migrations/CityInfoContextModelSnapshot.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Models/CityDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Models/CityDto.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Models/CityWithoutPointsOfInterestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Models/CityWithoutPointsOfInterestDto.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Models/PointOfInterestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Models/PointOfInterestDto.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Models/PointOfInterestForCreationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Models/PointOfInterestForCreationDto.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Models/PointOfInterestForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Models/PointOfInterestForUpdateDto.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Profiles/CityProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Profiles/CityProfile.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Profiles/PointOfInterestProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Profiles/PointOfInterestProfile.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Program.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Services/CityInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Services/CityInfoRepository.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Services/CloudMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Services/CloudMailService.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Services/ICityInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Services/ICityInfoRepository.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Services/IMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Services/IMailService.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Services/LocalMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Services/LocalMailService.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/Startup.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/appsettings.Production.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/appsettings.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.deps.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.dll -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.pdb -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/CityInfo.API.runtimeconfig.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/appsettings.Production.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/appsettings.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/nlog-2019-12-04.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/nlog-2019-12-04.log -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/nlog-2019-12-06.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/nlog-2019-12-06.log -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/bin/Debug/netcoreapp2.1/nlog.config -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/nlog.config -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.cache -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.g.props -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/CityInfo.API.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.AssemblyInfo.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 322d0a618d9e5bcce4b443abc628fdd9d121603b 2 | -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 2d09aaa509f756a3bef9f365de27e18eee6bc8a9 2 | -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | b0ba88e3a905f62cb2574a7ff9196815a97b1408 2 | -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.assets.cache -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.dll -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Debug/netcoreapp2.1/CityInfo.API.pdb -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.AssemblyInfo.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 098224736feab3276a571c166237b92482eb223b 2 | -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 2d09aaa509f756a3bef9f365de27e18eee6bc8a9 2 | -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/Release/netcoreapp2.1/CityInfo.API.assets.cache -------------------------------------------------------------------------------- /Finished sample/CityInfo.API/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.API/obj/project.assets.json -------------------------------------------------------------------------------- /Finished sample/CityInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/Finished sample/CityInfo.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/APIAspNetCore_Course/HEAD/README.md -------------------------------------------------------------------------------- /Starter files/startfromscratch.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------