-
Notifications
You must be signed in to change notification settings - Fork 0
/
steps
27 lines (25 loc) · 906 Bytes
/
steps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Steps for create new Projects from CLI :
1. Open the integrated terminal.
2. Change directories (cd) to the folder that will contain the project folder.
3. .NET CLI
"dotnet new sln
dotnet new webapi -o src/Todo.Api
dotnet new xunit -o src/Todo.Api.Tests
dotnet sln add src/**/*.csproj
dotnet new gitignore
dotnet build
//dotnet add reference src/Todo.Api.csproj
"
vscode extension :
- C#
- .NET Install Tool for Extension Authors
- .NET Core Test Explorer
- Coverage Gutters (Configure vscode follow link https://github.com/ryanluker/vscode-coverage-gutters/tree/ef27d293276c5f0d077e28e98905501011f2cdcd/example/dotnet)
- (optional) vscode-solution-explorer
- (optional) SQL Server (mssql)
Packages list :
Todo.Api
- dotnet add package MySql.Data --version 8.0.30
Todo.Api.Test
- dotnet add package FluentAssertions --version 6.8.0
- dotnet add package Moq --version 4.18.2