Skip to content

Instantly share code, notes, and snippets.

@acraven
Created December 20, 2019 10:08
Show Gist options
  • Save acraven/6b3edd51c2fb97fec3af146d38483991 to your computer and use it in GitHub Desktop.
Save acraven/6b3edd51c2fb97fec3af146d38483991 to your computer and use it in GitHub Desktop.
mkdir microservice-outsidein-tests
cd microservice-outsidein-tests
dotnet new webapi -n Microservice -o app\Microservice
dotnet new nunit -n Microservice.Tests -o app\Microservice.Tests
dotnet new nunit -n Microservice.OutsideIn.Tests -o outside-in.tests\Microservice.OutsideIn.Tests
dotnet new sln
dotnet sln add .\app\Microservice\Microservice.csproj .\app\Microservice.Tests\Microservice.Tests.csproj .\outside-in.tests\Microservice.OutsideIn.Tests\Microservice.OutsideIn.Tests.csproj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment