├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Dockerfile ├── README.md ├── circle.yml ├── global.json ├── src └── WebAPIApplication │ ├── .gitignore │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ ├── PessoasController.cs │ └── ValuesController.cs │ ├── Migrations │ ├── 20161129014403_MigracaoInicial.Designer.cs │ ├── 20161129014403_MigracaoInicial.cs │ └── DataContextModelSnapshot.cs │ ├── Models │ ├── DataContext.cs │ └── Pessoa.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── Startup.cs │ ├── appsettings.json │ ├── project.json │ └── web.config └── test └── UnitTest ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Class1.cs ├── Configuration ├── BaseIntegrationTest.cs ├── BaseTestCollection.cs └── BaseTestFixture.cs ├── Controllers ├── PessoasControllerIntegrationTest.cs └── ValuesControllerIntegarationTest.cs ├── appsettings.json ├── project.json └── xunit.runner.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/circle.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/global.json -------------------------------------------------------------------------------- /src/WebAPIApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/.gitignore -------------------------------------------------------------------------------- /src/WebAPIApplication/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/.vscode/launch.json -------------------------------------------------------------------------------- /src/WebAPIApplication/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/.vscode/tasks.json -------------------------------------------------------------------------------- /src/WebAPIApplication/Controllers/PessoasController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Controllers/PessoasController.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Migrations/20161129014403_MigracaoInicial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Migrations/20161129014403_MigracaoInicial.Designer.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Migrations/20161129014403_MigracaoInicial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Migrations/20161129014403_MigracaoInicial.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Migrations/DataContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Migrations/DataContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Models/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Models/DataContext.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Models/Pessoa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Models/Pessoa.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Program.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WebAPIApplication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/README.md -------------------------------------------------------------------------------- /src/WebAPIApplication/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/Startup.cs -------------------------------------------------------------------------------- /src/WebAPIApplication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/appsettings.json -------------------------------------------------------------------------------- /src/WebAPIApplication/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/project.json -------------------------------------------------------------------------------- /src/WebAPIApplication/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/src/WebAPIApplication/web.config -------------------------------------------------------------------------------- /test/UnitTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/.gitignore -------------------------------------------------------------------------------- /test/UnitTest/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/.vscode/launch.json -------------------------------------------------------------------------------- /test/UnitTest/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/.vscode/tasks.json -------------------------------------------------------------------------------- /test/UnitTest/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/Class1.cs -------------------------------------------------------------------------------- /test/UnitTest/Configuration/BaseIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/Configuration/BaseIntegrationTest.cs -------------------------------------------------------------------------------- /test/UnitTest/Configuration/BaseTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/Configuration/BaseTestCollection.cs -------------------------------------------------------------------------------- /test/UnitTest/Configuration/BaseTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/Configuration/BaseTestFixture.cs -------------------------------------------------------------------------------- /test/UnitTest/Controllers/PessoasControllerIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/Controllers/PessoasControllerIntegrationTest.cs -------------------------------------------------------------------------------- /test/UnitTest/Controllers/ValuesControllerIntegarationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/Controllers/ValuesControllerIntegarationTest.cs -------------------------------------------------------------------------------- /test/UnitTest/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/appsettings.json -------------------------------------------------------------------------------- /test/UnitTest/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/project.json -------------------------------------------------------------------------------- /test/UnitTest/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsantosdev/workshop-aspnetcore-circleci-azure/HEAD/test/UnitTest/xunit.runner.json --------------------------------------------------------------------------------