Skip to content

Commit

Permalink
#116: Put back --include-symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpinjackie committed Dec 8, 2021
1 parent a3103b2 commit c67fa96
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion OSGeo.FDO.Expressions/OSGeo.FDO.Expressions.csproj
Expand Up @@ -16,7 +16,9 @@
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<DebugType>embedded</DebugType>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<!-- Activate determinstic build for AppVeyor CI -->
Expand Down
4 changes: 3 additions & 1 deletion OSGeo.MapGuide.MaestroAPI/OSGeo.MapGuide.MaestroAPI.csproj
Expand Up @@ -18,7 +18,9 @@
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<DebugType>embedded</DebugType>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<!-- Activate determinstic build for AppVeyor CI -->
Expand Down
Expand Up @@ -18,7 +18,9 @@
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<DebugType>embedded</DebugType>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<!-- Activate determinstic build for AppVeyor CI -->
Expand Down
2 changes: 1 addition & 1 deletion appveyor_postbuild.bat
Expand Up @@ -39,5 +39,5 @@ appveyor DownloadFile https://aka.ms/vs/17/release/vc_redist.x64.exe
%APPVEYOR_BUILD_FOLDER%\Packages\nsis\2.51.0\tools\makensis.exe /DSLN_CONFIG=%CONFIGURATION% /DCPU=x64 /DRELEASE_VERSION=%ARTIFACT_RELEASE_LABEL% Maestro.nsi
IF %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL%
cd %APPVEYOR_BUILD_FOLDER%
dotnet pack Core.sln --configuration %CONFIGURATION% --output %APPVEYOR_BUILD_FOLDER%\artifacts /p:Version=6.0.0-pre%APPVEYOR_BUILD_NUMBER%"
dotnet pack Core.sln --configuration %CONFIGURATION% --output %APPVEYOR_BUILD_FOLDER%\artifacts --include-symbols /p:Version=6.0.0-pre%APPVEYOR_BUILD_NUMBER%"
IF %ERRORLEVEL% NEQ 0 exit /B %ERRORLEVEL%

0 comments on commit c67fa96

Please sign in to comment.