File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<PackageManifest Version =" 2.0.0" xmlns =" http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns : d =" http://schemas.microsoft.com/developer/vsx-schema-design/2011" >
3
3
<Metadata >
4
- <Identity Id =" LuaDkmDebugger.e3e2ef04-27c9-46a6-ad45-79bd29067eb6" Version =" 0.2.5 " Language =" en-US" Publisher =" WheretIB" />
4
+ <Identity Id =" LuaDkmDebugger.e3e2ef04-27c9-46a6-ad45-79bd29067eb6" Version =" 0.2.6 " Language =" en-US" Publisher =" WheretIB" />
5
5
<DisplayName >C++ debugger extensions for Lua</DisplayName >
6
6
<Description xml : space =" preserve" >This Visual Studio extension enables limited support for inspection of Lua (Version 5.3) state in C++ applications during debug.</Description >
7
7
<License >license.txt</License >
Original file line number Diff line number Diff line change @@ -499,22 +499,22 @@ string CheckConfigPaths(string winSourcePath)
499
499
{
500
500
if ( processData . workingDirectory != null )
501
501
{
502
- string test = Path . GetFullPath ( Path . Combine ( processData . workingDirectory , finalPath ) ) + winSourcePath . Substring ( 1 ) ;
502
+ string test = Path . GetFullPath ( Path . Combine ( processData . workingDirectory , finalPath ) ) + winSourcePath ;
503
503
504
504
if ( File . Exists ( test ) )
505
505
return test ;
506
506
}
507
507
508
508
{
509
- string test = Path . GetFullPath ( Path . Combine ( Path . GetDirectoryName ( process . Path ) , finalPath ) ) + winSourcePath . Substring ( 1 ) ;
509
+ string test = Path . GetFullPath ( Path . Combine ( Path . GetDirectoryName ( process . Path ) , finalPath ) ) + winSourcePath ;
510
510
511
511
if ( File . Exists ( test ) )
512
512
return test ;
513
513
}
514
514
}
515
515
else
516
516
{
517
- string test = finalPath + winSourcePath . Substring ( 1 ) ;
517
+ string test = finalPath + winSourcePath ;
518
518
519
519
if ( File . Exists ( test ) )
520
520
return test ;
@@ -531,7 +531,7 @@ string CheckConfigPaths(string winSourcePath)
531
531
{
532
532
string winSourcePath = frameData . source . Replace ( '/' , '\\ ' ) ;
533
533
534
- filePath = CheckConfigPaths ( winSourcePath ) ;
534
+ filePath = CheckConfigPaths ( winSourcePath . Substring ( 1 ) ) ;
535
535
536
536
if ( filePath == null )
537
537
{
You can’t perform that action at this time.
0 commit comments