Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update debugger and SRM nugets #122

Merged
merged 1 commit into from
Jun 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Engine/SQLCallStackResolver.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include="System.Reflection.Metadata, Version=7.0.0.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Reflection.Metadata.7.0.1\lib\net462\System.Reflection.Metadata.dll</HintPath>
<Reference Include="System.Reflection.Metadata, Version=7.0.0.2, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Reflection.Metadata.7.0.2\lib\net462\System.Reflection.Metadata.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml" />
Expand Down Expand Up @@ -104,12 +104,12 @@
</ContentWithTargetPath>
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.DbgEng.20230328.919.0\content\amd64\dbghelp.dll">
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.DbgEng.20230602.930.0\content\amd64\dbghelp.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>dbghelp.dll</TargetPath>
<Link>DebuggerFiles\dbghelp.dll</Link>
</ContentWithTargetPath>
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.SymSrv.20230328.919.0\content\amd64\symsrv.dll">
<ContentWithTargetPath Include="..\packages\Microsoft.Debugging.Platform.SymSrv.20230602.930.0\content\amd64\symsrv.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>symsrv.dll</TargetPath>
<Link>DebuggerFiles\symsrv.dll</Link>
Expand Down
6 changes: 3 additions & 3 deletions Engine/packages.config
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!--// Copyright (c) Microsoft Corporation. Licensed under the MIT License - see LICENSE file in this repo.-->
<packages>
<package id="Microsoft.Debugging.Platform.DbgEng" version="20230328.919.0" targetFramework="net472" />
<package id="Microsoft.Debugging.Platform.SymSrv" version="20230328.919.0" targetFramework="net472" />
<package id="Microsoft.Debugging.Platform.DbgEng" version="20230602.930.0" targetFramework="net472" />
<package id="Microsoft.Debugging.Platform.SymSrv" version="20230602.930.0" targetFramework="net472" />
<package id="Microsoft.SqlServer.XEvent.XELite" version="2023.1.30.3" targetFramework="net472" />
<package id="System.Buffers" version="4.5.1" targetFramework="net472" />
<package id="System.Collections.Immutable" version="7.0.0" targetFramework="net472" />
<package id="System.Memory" version="4.5.5" targetFramework="net472" />
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net472" />
<package id="System.Reflection.Metadata" version="7.0.1" targetFramework="net472" />
<package id="System.Reflection.Metadata" version="7.0.2" targetFramework="net472" />
</packages>
4 changes: 2 additions & 2 deletions utils/getBuildPreReqs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ if ((dir "DIA/*").Length -ne 3)
$diaManifestPath = "DIA/msdia140.dll.manifest"
(Get-Content $diaManifestPath).Replace("DIA/msdia140.dll", "msdia140.dll") -Replace " description", " threadingModel=`"Both`" description " | Set-Content $diaManifestPath

@(dir "../packages/Microsoft.Debugging.Platform.DbgEng.20230328.919.0/content/amd64/dbghelp.dll").VersionInfo.ToString()
@(dir "../packages/Microsoft.Debugging.Platform.SymSrv.20230328.919.0/content/amd64/symsrv.dll").VersionInfo.ToString()
@(dir "../packages/Microsoft.Debugging.Platform.DbgEng.20230602.930.0/content/amd64/dbghelp.dll").VersionInfo.ToString()
@(dir "../packages/Microsoft.Debugging.Platform.SymSrv.20230602.930.0/content/amd64/symsrv.dll").VersionInfo.ToString()