Skip to content

Commit a6186d8

Browse files
Upgrade debugger / SRM nugets (April 2024) (#129)
1 parent 7f2868b commit a6186d8

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Engine/SQLCallStackResolver.Engine.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
5656
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
5757
</Reference>
58-
<Reference Include="System.Collections.Immutable, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
59-
<HintPath>..\packages\System.Collections.Immutable.7.0.0\lib\net462\System.Collections.Immutable.dll</HintPath>
58+
<Reference Include="System.Collections.Immutable, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
59+
<HintPath>..\packages\System.Collections.Immutable.8.0.0\lib\net462\System.Collections.Immutable.dll</HintPath>
6060
</Reference>
6161
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
6262
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
@@ -65,8 +65,8 @@
6565
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6666
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
6767
</Reference>
68-
<Reference Include="System.Reflection.Metadata, Version=7.0.0.2, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
69-
<HintPath>..\packages\System.Reflection.Metadata.7.0.2\lib\net462\System.Reflection.Metadata.dll</HintPath>
68+
<Reference Include="System.Reflection.Metadata, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
69+
<HintPath>..\packages\System.Reflection.Metadata.8.0.0\lib\net462\System.Reflection.Metadata.dll</HintPath>
7070
</Reference>
7171
<Reference Include="System.Runtime.Serialization" />
7272
<Reference Include="System.Xml" />
@@ -104,12 +104,12 @@
104104
</ContentWithTargetPath>
105105
</ItemGroup>
106106
<ItemGroup>
107-
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.DbgEng.20240223.1323.0\content\amd64\dbghelp.dll">
107+
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.DbgEng.20240409.1131.0\content\amd64\dbghelp.dll">
108108
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
109109
<TargetPath>dbghelp.dll</TargetPath>
110110
<Link>DebuggerFiles\dbghelp.dll</Link>
111111
</ContentWithTargetPath>
112-
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.SymSrv.20240223.1323.0\content\amd64\symsrv.dll">
112+
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.SymSrv.20240409.1131.0\content\amd64\symsrv.dll">
113113
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
114114
<TargetPath>symsrv.dll</TargetPath>
115115
<Link>DebuggerFiles\symsrv.dll</Link>

Engine/packages.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--// Copyright (c) Microsoft Corporation. Licensed under the MIT License - see LICENSE file in this repo.-->
33
<packages>
4-
<package id="Microsoft.Debugging.Platform.DbgEng" version="20240223.1323.0" targetFramework="net472" />
5-
<package id="Microsoft.Debugging.Platform.SymSrv" version="20240223.1323.0" targetFramework="net472" />
4+
<package id="Microsoft.Debugging.Platform.DbgEng" version="20240409.1131.0" targetFramework="net472" />
5+
<package id="Microsoft.Debugging.Platform.SymSrv" version="20240409.1131.0" targetFramework="net472" />
66
<package id="Microsoft.SqlServer.XEvent.XELite" version="2023.1.30.3" targetFramework="net472" />
77
<package id="System.Buffers" version="4.5.1" targetFramework="net472" />
8-
<package id="System.Collections.Immutable" version="7.0.0" targetFramework="net472" />
8+
<package id="System.Collections.Immutable" version="8.0.0" targetFramework="net472" />
99
<package id="System.Memory" version="4.5.5" targetFramework="net472" />
1010
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net472" />
11-
<package id="System.Reflection.Metadata" version="7.0.2" targetFramework="net472" />
11+
<package id="System.Reflection.Metadata" version="8.0.0" targetFramework="net472" />
1212
</packages>

utils/getBuildPreReqs.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ if ((dir "DIA/*").Length -ne 3)
1818
$diaManifestPath = "DIA/msdia140.dll.manifest"
1919
(Get-Content $diaManifestPath).Replace("DIA/msdia140.dll", "msdia140.dll") -Replace " description", " threadingModel=`"Both`" description " | Set-Content $diaManifestPath
2020

21-
@(dir "../packages/Microsoft.Debugging.Platform.DbgEng.20240223.1323.0/content/amd64/dbghelp.dll").VersionInfo.ToString()
22-
@(dir "../packages/Microsoft.Debugging.Platform.SymSrv.20240223.1323.0/content/amd64/symsrv.dll").VersionInfo.ToString()
21+
@(dir "../packages/Microsoft.Debugging.Platform.DbgEng.20240409.1131.0/content/amd64/dbghelp.dll").VersionInfo.ToString()
22+
@(dir "../packages/Microsoft.Debugging.Platform.SymSrv.20240409.1131.0/content/amd64/symsrv.dll").VersionInfo.ToString()

0 commit comments

Comments
 (0)