Major changes
Changed the whole project struture justfile was adjusted to reflect the changes Add Tests Minor changes to .gitignore
This commit is contained in:
11
justfile
11
justfile
@ -5,10 +5,15 @@ run:
|
||||
@dotnet run
|
||||
|
||||
build:
|
||||
@dotnet build pacserver.csproj
|
||||
@dotnet build src/Pacserver/pacserver.csproj
|
||||
@dotnet build src/Pacserver.Tests/Pacserver.Tests.csproj
|
||||
|
||||
publish: format
|
||||
@dotnet publish --configuration Release pacserver.csproj
|
||||
@dotnet publish --configuration Release src/Pacserver/pacserver.csproj
|
||||
|
||||
format:
|
||||
@dotnet format
|
||||
@dotnet format src/Pacserver
|
||||
@dotnet format src/Pacserver.Tests
|
||||
|
||||
test: build
|
||||
@dotnet test src/Pacserver.Tests
|
||||
|
Reference in New Issue
Block a user