Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erickcelestino/ddd_context_payment
https://github.com/erickcelestino/ddd_context_payment
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/erickcelestino/ddd_context_payment
- Owner: ErickCelestino
- Created: 2023-08-17T14:01:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-22T17:04:16.000Z (over 1 year ago)
- Last Synced: 2023-08-22T23:11:59.549Z (over 1 year ago)
- Language: C#
- Size: 155 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DDD context payment
## Comands
- Para criar uma solution
```bash
dotnet new sln
```
- Para criar uma class lib utilizar o comando
```bash
dotnet new classlib
```
- Para criar um setup de teste podemos utilizar
```bash
dotnet new mstest
```
- Para adicionar o projeto a solução basta utilizar o comando
```bash
dotnet sln add .\DDD_context_payment.Domain.csproj
```- Para restaurar os projetos basta utilizar
```bash
dotnet restore
```- Para criar um build da aplicação basta utilizar
```bash
dotnet build
```- Para criar referencias para outros projetos basta digitar
```bash
dotnet add reference ..\DDD_context_payment.Shared\DDD_context_payment.Shared.csproj
```