Skip to content

Commit d1fcf27

Browse files
committed
Fix NuGet tool packaging
1 parent 8b09a0c commit d1fcf27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function Publish-Archives($version)
6161
function Publish-DotNetTool($version)
6262
{
6363
# Tool packages have to target a single non-platform-specific TFM; doing this here is cleaner than attempting it in the CSPROJ directly
64-
dotnet pack ./src/SeqCli/SeqCli.csproj -c Release --output ./artifacts /p:VersionPrefix=$version /p:TargetFramework=$framework /p:TargetFrameworks=
64+
dotnet pack ./src/SeqCli/SeqCli.csproj -c Release --output ./artifacts /p:VersionPrefix=$version /p:TargetFrameworks=$framework
6565
if($LASTEXITCODE -ne 0) { throw "Build failed" }
6666
}
6767

0 commit comments

Comments
 (0)