Sample app used for onboarding by DevOps Enablement team leads
A sample C# .net core (dotnet 8) project with unit tests
TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
- Installation process
- Clone repo to local and push to your own repo. Not accepting PRs to this repo
- Use preferred IDE (typically VSCode)
- Software dependencies
- dotnet 10 sdk https://dotnet.microsoft.com/en-us/download/dotnet/10.0 (cross-platform)
- The project uses xUnit as the test library (Restore command below will retrieve this nuget package)
-
Latest releases N/A
-
API references N/A
Commands to build and test project locally The 'dotnet' command is from the dotnet sdk above, or alternatively the .net runtime (not listed above)
dotnet restore
dotnet build
dotnet test
Not accepting PRs to this repo