Hello,
Wwdotnetbridgetest.exe is ok when it run from a desktop shortcut or from foxpro and I also run the PowerShell to unlock the DLL
But not with this command task in Visual Studio Code failed with the LOAD CLR error
{
"label": "Test Markdown",
"type": "shell",
"windows": {
"command": "C:\\Webconnectionprojects\\WebMove\\Tools\\wwdotnetbridgetest.exe"
},
"group": {
"kind": "build",
"isDefault": true
}
}
Tks Marcel
Here are additional information
Tks Marcel
What exactly is 'Not Ok'?
+++ Rick ---
What exactly is 'Not Ok'?
I build a Html maker in fox that I use with Visual Studio to build static Html files
Just wanted to ad MarkDown using your tools without success.
I tried with with a clean exe ( wwdotnetbridgetest.exe ) also without success
There may be internal protection in VS code because the program works well under Windows with a shortcut ?
Tks Marcel
I'm guessing ShellExecute (which Code is using it looks like) is not finding the DLL... you have to make sure you set your startup folder to the right path in the execution options.
+++ Rick ---
Yes, thank you it work's with the cwd option
{
"label": "Test Markdown",
"type": "shell",
"windows": {
"command": "C:\\Webconnectionprojects\\WebMove\\Tools\\wwdotnetbridgetest.exe"
},
"options": {
"cwd": "C:\\Webconnectionprojects\\WebMove\\Tools\\"
},
"group": {
"kind": "build",
"isDefault": true
}
}
Marcel