Skip to content
Open

Fix typo #21171

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
3 changes: 2 additions & 1 deletion Tasks/PublishSymbolsV2/IndexHelpers/DbghelpFunctions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ function Invoke-LoadLibrary {
########################################
# If the type has already been loaded once, then it is not loaded again.
Write-Verbose "Adding dbghelp native wrappers."
$dbghelpdllfile = (join-path -Path $PSScriptRoot -ChildPath "\..\dbghelp.dll" -Resolve).replace("\","\\")
Add-Type -Debug:$false -TypeDefinition @'
namespace IndexHelpers.Dbghelp
{
Expand Down Expand Up @@ -360,4 +361,4 @@ namespace IndexHelpers.Dbghelp
SymVirtual,
}
}
'@
'@.replace("`"dbghelp.dll`"","`"$dbghelpdllfile`"")
4 changes: 2 additions & 2 deletions Tasks/PublishSymbolsV2/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"version": {
"Major": 2,
"Minor": 260,
"Patch": 0
"Patch": 1
},
"minimumAgentVersion": "2.144.0",
"groups": [
Expand Down Expand Up @@ -259,7 +259,7 @@
"SymbolStoreLastIdTxtNotFoundAt0": "Symbol store lastid.txt not found at '{0}'.",
"UnableToDetermineWorkspaceFromSourceFolder0": "Unable to determine the workspace from the source folder '{0}'.",
"UnableToIndexSources": "Unable to index sources.",
"UnexpectedDbghelpdllExpected0Actual1": "Library dbghelp.dll is already loaded from an unexpected path. Expected '{0}'. Actual '{0}'.",
"UnexpectedDbghelpdllExpected0Actual1": "Library dbghelp.dll is already loaded from an unexpected path. Expected '{0}'. Actual '{1}'.",
"UnsupportedSourceProvider0": "Unsupported source provider '{0}' for source indexing.",
"Win32Error0FromMethod1": "Encountered Win32 error '{0}' from method '{1}'.",
"NodeVersionSupport": "Node v{0} is no longer supported starting 08/31/2024. Please upgrade pipeline agent to latest version for Node 16 or later.",
Expand Down