Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fosouzadev-public/nuget-pkg-github-packages

Estudo para automaizar o envio de pacote nuget de forma privada, para o github packages.
https://github.com/fosouzadev-public/nuget-pkg-github-packages

csharp github-actions github-packages nuget

Last synced: 23 days ago
JSON representation

Estudo para automaizar o envio de pacote nuget de forma privada, para o github packages.

Awesome Lists containing this project

README

        

# nuget-pkg-github-packages
Estudo para automatizar o envio de pacote nuget de forma privada, para o github packages.

```csharp
dotnet new sln -n NugetPackage
dotnet new classlib -n Calculator -o src/Calculator
dotnet new xunit -n UnitTests -o tests/UnitTests
dotnet sln add src/Calculator/ -s src
dotnet sln add tests/UnitTests/ -s tests
dotnet add tests/UnitTests/ reference src/Calculator/
dotnet add tests/UnitTests/ package AutoFixture
```