Created
October 10, 2018 16:10
-
-
Save alfredodev/98f910a01dcfca6f70ea6eacfbe8fa51 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set kataname = %1 | |
| dotnet new sln %kataname% | |
| md src | |
| dotnet new classlib %kataname% -o src | |
| dotnet sln add src\%kataname% | |
| md tests | |
| dotnet new xunit %kataname%.Tests -o tests | |
| dotnet sln add tests\%kataname%.Tests | |
| dotnet add tests\%kataname%.Tests reference src\%kataname% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment