From f65ccb66e25c46969b36ed53f4b8a97000e05543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Thu, 15 Oct 2020 21:07:12 -0700 Subject: [PATCH 1/8] Added debug symbols to nuget package. --- .../Simulators/Microsoft.Quantum.Simulators.nuspec.template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template index a6b1ee3819e..cdd386a6784 100644 --- a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template +++ b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template @@ -20,6 +20,10 @@ + + + + From 85b252fd71fa7f6ad630949e11d828eca6a1f075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Fri, 16 Oct 2020 11:46:29 -0700 Subject: [PATCH 2/8] Fixed paths. --- .../Microsoft.Quantum.Simulators.nuspec.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template index cdd386a6784..6c9f9181b5b 100644 --- a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template +++ b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template @@ -20,10 +20,10 @@ - - - - + + + + From 9c7a799fdb15b92aeba77b7ae68cb7b57287574f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Mon, 19 Oct 2020 20:43:54 -0700 Subject: [PATCH 3/8] Generate snupkg for packages created with nuget pack. --- build/pack.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/build/pack.ps1 b/build/pack.ps1 index 1dd8dd7fca2..bb4683ae483 100644 --- a/build/pack.ps1 +++ b/build/pack.ps1 @@ -23,6 +23,7 @@ function Pack-One() { -Properties Configuration=$Env:BUILD_CONFIGURATION ` -Version $Env:NUGET_VERSION ` -Verbosity detailed ` + -Symbols ` -SymbolPackageFormat snupkg ` $option1 ` $option2 ` From 978bd0576f899d14857d071af722a67d76ca6b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Mon, 19 Oct 2020 22:46:44 -0700 Subject: [PATCH 4/8] Remove hardcoded paths. --- .../Simulators/Microsoft.Quantum.Simulators.nuspec.template | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template index 6c9f9181b5b..a6b1ee3819e 100644 --- a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template +++ b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template @@ -20,10 +20,6 @@ - - - - From eec959fa923756ae49491349f6afd47142ba07f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Tue, 20 Oct 2020 14:33:16 -0700 Subject: [PATCH 5/8] Specify symbols package in QDK nuspec. --- .../Microsoft.Quantum.Development.Kit.nuspec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec b/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec index 42cfd8e8cca..6daf6f620b6 100644 --- a/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec +++ b/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec @@ -19,6 +19,10 @@ © Microsoft Corporation. All rights reserved. Quantum Q# Qsharp + + + + From c67223cf113df11efb35029d8e17b90a7a05b425 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Tue, 20 Oct 2020 17:20:23 -0700 Subject: [PATCH 6/8] Generate snupkg only for Microsoft.Quantum.Simulators. --- build/pack.ps1 | 3 +-- .../Microsoft.Quantum.Development.Kit.nuspec | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/build/pack.ps1 b/build/pack.ps1 index bb4683ae483..b097bba9562 100644 --- a/build/pack.ps1 +++ b/build/pack.ps1 @@ -23,7 +23,6 @@ function Pack-One() { -Properties Configuration=$Env:BUILD_CONFIGURATION ` -Version $Env:NUGET_VERSION ` -Verbosity detailed ` - -Symbols ` -SymbolPackageFormat snupkg ` $option1 ` $option2 ` @@ -66,7 +65,7 @@ Pack-One '../src/Simulation/CsharpGeneration/Microsoft.Quantum.CsharpGeneration. Pack-Dotnet '../src/Simulation/EntryPointDriver/Microsoft.Quantum.EntryPointDriver.csproj' Pack-Dotnet '../src/Simulation/Core/Microsoft.Quantum.Runtime.Core.csproj' Pack-Dotnet '../src/Simulation/QsharpCore/Microsoft.Quantum.QSharp.Core.csproj' -Pack-One '../src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec' +Pack-One '../src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec' -Symbols Pack-One '../src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec' Pack-One '../src/Xunit/Microsoft.Quantum.Xunit.csproj' diff --git a/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec b/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec index 6daf6f620b6..42cfd8e8cca 100644 --- a/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec +++ b/src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec @@ -19,10 +19,6 @@ © Microsoft Corporation. All rights reserved. Quantum Q# Qsharp - - - - From f267ac9a2bf900ff4e6f7ab0698df1b8a959d902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Wed, 21 Oct 2020 10:16:04 -0700 Subject: [PATCH 7/8] Revert to first iteration. --- build/pack.ps1 | 2 +- .../Simulators/Microsoft.Quantum.Simulators.nuspec.template | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build/pack.ps1 b/build/pack.ps1 index b097bba9562..1dd8dd7fca2 100644 --- a/build/pack.ps1 +++ b/build/pack.ps1 @@ -65,7 +65,7 @@ Pack-One '../src/Simulation/CsharpGeneration/Microsoft.Quantum.CsharpGeneration. Pack-Dotnet '../src/Simulation/EntryPointDriver/Microsoft.Quantum.EntryPointDriver.csproj' Pack-Dotnet '../src/Simulation/Core/Microsoft.Quantum.Runtime.Core.csproj' Pack-Dotnet '../src/Simulation/QsharpCore/Microsoft.Quantum.QSharp.Core.csproj' -Pack-One '../src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec' -Symbols +Pack-One '../src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec' Pack-One '../src/Quantum.Development.Kit/Microsoft.Quantum.Development.Kit.nuspec' Pack-One '../src/Xunit/Microsoft.Quantum.Xunit.csproj' diff --git a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template index a6b1ee3819e..cdd386a6784 100644 --- a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template +++ b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template @@ -20,6 +20,10 @@ + + + + From 28aa0c7c1a1290e889f99ea5c4c57259225cdcec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Zaragoza=20Cort=C3=A9s?= Date: Wed, 21 Oct 2020 11:12:35 -0700 Subject: [PATCH 8/8] Fixed paths (again). --- .../Microsoft.Quantum.Simulators.nuspec.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template index cdd386a6784..6c9f9181b5b 100644 --- a/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template +++ b/src/Simulation/Simulators/Microsoft.Quantum.Simulators.nuspec.template @@ -20,10 +20,10 @@ - - - - + + + +