Balkoth

Results 144 comments of Balkoth

What do you mean by referencing? Addin a `ProjectReference` to WASDK and using some random component? Isn't there a whole lot of stuff going on behind the scenes which the...

I tried your suggestion, even getting `Microsoft.Windows.SDK.NET.dll` loaded into the process like this: ```xml WinExe net8.0-windows10.0.20348.0 10.0.19044.0 enable true enable None true true x64 win10-x64 true ``` ```cs public Form1()...

Thanks but your sample has the one big problem why i have to use PInvoke: Your sample uses string for the password and therefore the password is in cleartext in...

Starts working when i put `` into the manifest, so who is to blame now?

Is anyone from the team looking into this or does the maxversiontested hack confirm this is a non-issue from WASDK?

This is incredibly frustrating, because this problem is affecting software in production.

Why does no one on the team care for this issue? What is missing here, that is holding you back, to investigate and acknowledge or deny that this is a...

> Thanks but your sample has the one big problem why i have to use PInvoke: Your sample uses string for the password and therefore the password is in cleartext...

Because the password is retrieved in a string object and strings live forever.

If i remember correctly the runtime itself decides whether to intern strings and therefore keep them forever. Either way, using string for the password is a non deterministic approach on...