From c763f484c055bef0edc4e1f16e4a3230f6cb6f31 Mon Sep 17 00:00:00 2001 From: James A Sutherland Date: Tue, 19 Mar 2024 17:08:31 +0000 Subject: [PATCH] Update testpack.yml Enable snupkg --- .github/workflows/testpack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testpack.yml b/.github/workflows/testpack.yml index 8c5ff1a..f49bfdf 100644 --- a/.github/workflows/testpack.yml +++ b/.github/workflows/testpack.yml @@ -28,7 +28,7 @@ jobs: - name: Package run: | mkdir -p dist - dotnet pack ./BadMedicine.Dicom/BadMedicine.Dicom.csproj -c Release -p:IncludeSymbols=true -p:Version=$(grep AssemblyInformationalVersion SharedAssemblyInfo.cs | cut -d'"' -f2) -nologo + dotnet pack ./BadMedicine.Dicom/BadMedicine.Dicom.csproj -c Release -p:DebugType=full -p:SymbolPackageFormat=snupkg -p:IncludeSymbols=true -p:Version=$(grep AssemblyInformationalVersion SharedAssemblyInfo.cs | cut -d'"' -f2) -nologo for platform in linux-x64 win-x64 osx-{arm64,x64} do dotnet publish BadDicom/BadDicom.csproj -c Release -r $platform -o $platform --self-contained true -nologo -v q -p:PublishSingleFile=true -p:DebugType=embedded -p:GenerateDocumentationFile=false