Skip to content

Commit 4439093

Browse files
committed
Add Clean Architecture for blank solution
1 parent b404599 commit 4439093

File tree

3 files changed

+444
-5
lines changed

3 files changed

+444
-5
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
[![downloads][downloads-shield]][downloads-url] [![Contributors][contributors-shield]][contributors-url] [![Forks][forks-shield]][forks-url] [![Stargazers][stars-shield]][stars-url] [![Issues][issues-shield]][issues-url] [![License][license-shield]][license-url] [![LinkedIn][linkedin-shield]][linkedin-url]
1+
[![downloads][downloads-shield]][downloads-url] [![Contributors][contributors-shield]][contributors-url] [![Forks][forks-shield]][forks-url] [![Stargazers][stars-shield]][stars-url] [![Issues][issues-shield]][issues-url] [![License][license-shield]][license-url] [![LinkedIn][linkedin-shield]][linkedin-url]
22

33
# ![Logo][Logo] Create VSSolution File - Clean Architecture
44
Create a solution file for Visual Studio with a clean architecture.
55

6+
[![Screenshot1][screenshot1]][screenshot1-url]
7+
68
## Overview
79
This PowerShell script automates the creation of a Visual Studio solution structure with multiple projects, including a UI project (WPF, WinUI, or MAUI) and associated class libraries. It sets up a standard folder layout and configures project references.
810
The script is designed to streamline the initial setup of a .NET solution, saving time and ensuring consistency across projects.
@@ -188,6 +190,6 @@ Thanks to contributors and the open-source community.
188190

189191
<!-- screenshots -->
190192
<!--
191-
[screenshot1]: https://raw.githubusercontent.com/Tirsvad/Script.PS.Create-VSSolution/main/images/small/Screenshot1.png
192-
[screenshot1-url]: https://raw.githubusercontent.com/Tirsvad/Script.PS.Create-VSSolution/main/images/Screenshot1.png
193+
[screenshot1]: https://raw.githubusercontent.com/Tirsvad/Script.PS.Create-VSSolution/main/images/small/ScreenshotSolutionExplore1.jpg
194+
[screenshot1-url]: https://raw.githubusercontent.com/Tirsvad/Script.PS.Create-VSSolution/main/images/ScreenshotSolutionExplore1.png
193195
-->

install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ $ScriptBaseName = [System.IO.Path]::GetFileNameWithoutExtension($ScriptFileName)
9898
# Main Script Logic
9999

100100
# Show-Help
101-
# If user asked for help, show usage AND the comment-based help summary via Get-Help, then exit
101+
# If user asked for help, show usage AND then exit
102102
if ($Help) {
103103
Show-Usage
104-
exit0
104+
exit 0
105105
}
106106

107107
if ($VerboseMode -ge 2) { Write-Host "Starting installation script for $ScriptBaseName..." -ForegroundColor Green }

0 commit comments

Comments
 (0)