https://github.com/arnab-developer/dotnetcoreautomation
Create project structure with dotnet core cli.
https://github.com/arnab-developer/dotnetcoreautomation
Last synced: 3 months ago
JSON representation
Create project structure with dotnet core cli.
- Host: GitHub
- URL: https://github.com/arnab-developer/dotnetcoreautomation
- Owner: Arnab-Developer
- License: mit
- Created: 2020-03-26T05:58:41.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-09T11:42:28.000Z (about 4 years ago)
- Last Synced: 2025-01-17T02:24:19.822Z (5 months ago)
- Language: PowerShell
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Automation with .NET Core CLI
.NET Core has CLI support. In normal development case it is useful to use Visual Studio's powerfull tooling support. But at the time of automation CLI becomes very useful tool. Imagine you need to create same project structure in everyone's machine of your team members. In this case you can use .NET Core CLI to automate the process.
Here I have used .NET Core CLI and PowerShell to create a basic project structure.
Example use
```powershell
Create-Project.ps1 -SolutionName "MySol" -WebAppName "MySol.WebApp1" -LibName "MySol.Lib1"
```