├── .vscode ├── launch.json └── tasks.json ├── CommandAPI.csproj ├── Controllers └── CommandsController.cs ├── Migrations ├── 20190226100232_StartAgain.Designer.cs ├── 20190226100232_StartAgain.cs └── CommandContextModelSnapshot.cs ├── Models ├── Command.cs └── CommandContext.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── azure-pipelines.yml ├── bin └── Debug │ └── netcoreapp2.2 │ ├── CommandAPI.deps.json │ ├── CommandAPI.dll │ ├── CommandAPI.pdb │ ├── CommandAPI.runtimeconfig.dev.json │ └── CommandAPI.runtimeconfig.json └── obj ├── CommandAPI.csproj.EntityFrameworkCore.targets ├── CommandAPI.csproj.nuget.cache ├── CommandAPI.csproj.nuget.g.props ├── CommandAPI.csproj.nuget.g.targets ├── Debug └── netcoreapp2.2 │ ├── CommandAPI.AssemblyInfo.cs │ ├── CommandAPI.AssemblyInfoInputs.cache │ ├── CommandAPI.RazorAssemblyInfo.cache │ ├── CommandAPI.RazorAssemblyInfo.cs │ ├── CommandAPI.RazorTargetAssemblyInfo.cache │ ├── CommandAPI.assets.cache │ ├── CommandAPI.csproj.CoreCompileInputs.cache │ ├── CommandAPI.csproj.FileListAbsolute.txt │ ├── CommandAPI.csprojAssemblyReference.cache │ ├── CommandAPI.dll │ ├── CommandAPI.pdb │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── project.razor.json └── project.assets.json /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CommandAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/CommandAPI.csproj -------------------------------------------------------------------------------- /Controllers/CommandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Controllers/CommandsController.cs -------------------------------------------------------------------------------- /Migrations/20190226100232_StartAgain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Migrations/20190226100232_StartAgain.Designer.cs -------------------------------------------------------------------------------- /Migrations/20190226100232_StartAgain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Migrations/20190226100232_StartAgain.cs -------------------------------------------------------------------------------- /Migrations/CommandContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Migrations/CommandContextModelSnapshot.cs -------------------------------------------------------------------------------- /Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Models/Command.cs -------------------------------------------------------------------------------- /Models/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Models/CommandContext.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/README.md -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/appsettings.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.2/CommandAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/bin/Debug/netcoreapp2.2/CommandAPI.deps.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.2/CommandAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/bin/Debug/netcoreapp2.2/CommandAPI.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.2/CommandAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/bin/Debug/netcoreapp2.2/CommandAPI.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.2/CommandAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/bin/Debug/netcoreapp2.2/CommandAPI.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp2.2/CommandAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/bin/Debug/netcoreapp2.2/CommandAPI.runtimeconfig.json -------------------------------------------------------------------------------- /obj/CommandAPI.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/CommandAPI.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /obj/CommandAPI.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/CommandAPI.csproj.nuget.cache -------------------------------------------------------------------------------- /obj/CommandAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/CommandAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/CommandAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/CommandAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 34c0678c3c5fa4d061af6d77fdc0e4e4ff64c0f6 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | abfcb7602b1c9a0225c1ebba43c6b786441749a8 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.RazorTargetAssemblyInfo.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.assets.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a7d78abb67ce12bc3d42819ad4772db650d28a95 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/CommandAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/CommandAPI.pdb -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp2.2/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/Debug/netcoreapp2.2/project.razor.json -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S02E01-REST-API-.Net-Core/HEAD/obj/project.assets.json --------------------------------------------------------------------------------