From 9800e3a1e813ed21e051b9fffcebdd339fc2dceb Mon Sep 17 00:00:00 2001 From: Lucian Bargaoanu Date: Sun, 15 Jan 2023 16:50:41 +0200 Subject: [PATCH] not needed --- Build.ps1 | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Build.ps1 b/Build.ps1 index 08aaf31..1a9fe21 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -26,11 +26,7 @@ $artifacts = "..\artifacts" if(Test-Path $artifacts) { Remove-Item $artifacts -Force -Recurse } -exec { & dotnet clean -c Release } - -exec { & dotnet build -c Release } - -exec { & dotnet test -c Release --results-directory $artifacts --no-build -l trx --verbosity=normal } +exec { & dotnet test -c Release --results-directory $artifacts -l trx --verbosity=normal } exec { & dotnet pack .\src\AutoMapper.Extensions.Microsoft.DependencyInjection\AutoMapper.Extensions.Microsoft.DependencyInjection.csproj -c Release -o $artifacts --no-build }