Skip to content

Commit ac6c0fd

Browse files
authored
Update debugger and SRM nugets (#122)
1 parent b15dc77 commit ac6c0fd

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

Engine/SQLCallStackResolver.Engine.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
69-
<HintPath>..\packages\System.Reflection.Metadata.7.0.1\lib\net462\System.Reflection.Metadata.dll</HintPath>
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>
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.20230328.919.0\content\amd64\dbghelp.dll">
107+
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.DbgEng.20230602.930.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.20230328.919.0\content\amd64\symsrv.dll">
112+
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.SymSrv.20230602.930.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: 3 additions & 3 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="20230328.919.0" targetFramework="net472" />
5-
<package id="Microsoft.Debugging.Platform.SymSrv" version="20230328.919.0" targetFramework="net472" />
4+
<package id="Microsoft.Debugging.Platform.DbgEng" version="20230602.930.0" targetFramework="net472" />
5+
<package id="Microsoft.Debugging.Platform.SymSrv" version="20230602.930.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" />
88
<package id="System.Collections.Immutable" version="7.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.1" targetFramework="net472" />
11+
<package id="System.Reflection.Metadata" version="7.0.2" 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.20230328.919.0/content/amd64/dbghelp.dll").VersionInfo.ToString()
22-
@(dir "../packages/Microsoft.Debugging.Platform.SymSrv.20230328.919.0/content/amd64/symsrv.dll").VersionInfo.ToString()
21+
@(dir "../packages/Microsoft.Debugging.Platform.DbgEng.20230602.930.0/content/amd64/dbghelp.dll").VersionInfo.ToString()
22+
@(dir "../packages/Microsoft.Debugging.Platform.SymSrv.20230602.930.0/content/amd64/symsrv.dll").VersionInfo.ToString()

0 commit comments

Comments
 (0)