Skip to content

Instantly share code, notes, and snippets.

@lizardkingLK
lizardkingLK / new_solution_with_tests.ps1
Last active February 12, 2025 08:44
A powershell script that generates a new dotnet solution for C# that is TDD first and ready to run
[CmdletBinding()]
param (
[Parameter(
Position = 1,
Mandatory = $true,
HelpMessage = 'Please enter solution directory to create in (i.e.: C:/Users/User/Desktop)',
ParameterSetName = 'parameters.solution')]
[string]
$solutionDirectory,