Skip to content

joeyguerra/dotnet-starter

Repository files navigation

dotnet-starter

Opinionated dotnet starter app.

Mission Control

I chose make as the Mission Control tool.

Docs

  • README.md - Introduction, developer setup, instructions for common tasks
  • JOURNEY.md - Context and background on decisions. Great for providing perspective to your future self.

Setup

  1. Install dotnet
  2. Install make
    • MacOS - brew install make
    • Windows - choco install make
    • Ubuntu - sudo apt-get install build-essential

Create a Console App

I'm in VS Code. In the terminal, I can just copy and paste this in the terminal and hit enter to run all the commands at once.

dotnet new sln -o .
dotnet new classlib -o DotnetStarter
dotnet sln add DotnetStarter/DotnetStarter.csproj
dotnet new xunit -o DotnetStarter.Tests
dotnet sln add ./DotnetStarter.Tests/DotnetStarter.Tests.csproj

Step 2.

Run dotnet test and see a Failing test.

About

Opinionated dotnet starter app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published