Skip to content

Commit

Permalink
Cleanup the template, changeup the setup
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-cernil committed Sep 28, 2024
1 parent 0504cff commit a1be3cb
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 153 deletions.
20 changes: 16 additions & 4 deletions ToDoList/01 SettingUpProject.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,48 @@
# Setting Up Final Project

## 💡 Creating ToDoList solution

```cmd
cd ToDoList
dotnet new sln --name ToDoList
```

## 📡 Creating ToDoList.WebApi project

```cmd
cd ToDoList
dotnet new web --name ToDoList.WebApi --output src/ToDoList.WebApi
dotnet sln add src/ToDoList.WebApi
```

## 📘 Creating ToDoList.Domain project

```cmd
cd ToDoList
dotnet new classlib --name ToDoList.Domain --output src/ToDoList.Domain
dotnet sln add src/ToDoList.Domain
```

## 🗃️ Creating ToDoList.Persistency project
## 🧪 Creating ToDoList.Test project

```cmd
cd ToDoList
dotnet new classlib --name ToDoList.Persistency --output src/ToDoList.Persistency
dotnet new xunit --name ToDoList.Test --output tests/ToDoList.Test
dotnet sln add tests/ToDoList.Test
```

## 🧪 Creating ToDoList.Test project
## 🗃️ Creating ToDoList.Persistency project

```cmd
cd ToDoList
dotnet new xunit --name ToDoList.Test --output tests/ToDoList.Test
dotnet new classlib --name ToDoList.Persistency --output src/ToDoList.Persistency
dotnet sln add src/ToDoList.Persistency
```

## 🌐 Creating ToDoList.Frontend project

```cmd
cd ToDoList
dotnet new blazor --interactivity None --empty --name ToDoList.Frontend --output src/ToDoList.Frontend
dotnet sln add src/ToDoList.Frontend
```
27 changes: 0 additions & 27 deletions ToDoList/ToDoList.sln

This file was deleted.

44 changes: 0 additions & 44 deletions ToDoList/src/ToDoList.WebApi/Program.cs

This file was deleted.

41 changes: 0 additions & 41 deletions ToDoList/src/ToDoList.WebApi/Properties/launchSettings.json

This file was deleted.

14 changes: 0 additions & 14 deletions ToDoList/src/ToDoList.WebApi/ToDoList.WebApi.csproj

This file was deleted.

6 changes: 0 additions & 6 deletions ToDoList/src/ToDoList.WebApi/ToDoList.WebApi.http

This file was deleted.

8 changes: 0 additions & 8 deletions ToDoList/src/ToDoList.WebApi/appsettings.Development.json

This file was deleted.

9 changes: 0 additions & 9 deletions ToDoList/src/ToDoList.WebApi/appsettings.json

This file was deleted.

0 comments on commit a1be3cb

Please sign in to comment.