An open API service indexing awesome lists of open source software.

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.

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"
```