HeinziAT
HeinziAT
Thanks! We currently use the workaround of avoiding `SetWorkingDirectory` and using absolute paths instead, so it's not urgent on our side.
Re FileExists and DeleteFile: That's just an artefact of creating a minimal example. Our real script uploads _two_ files, which should be in sync. If anything goes wrong, we don't...
We currently have this issue with a script started with a "...\path\to\powershell.exe ...\path\to\script.ps1" shortcut. In case anyone else needs this: The workaround we found was to prefix the command line...
If you can't fix the underlying issue on your side, is it possible to at least improve the (misleading) error message? E.g. instead of > Cannot process command because of...
There's a similar issue when `.@` is used on an `IEnumerable` rather than on a single `XElement`. The assignments in the following VB code ```vbnet Dim x = Dim existingAttributeValue...
Unless I missed something, I think the issue only exist for literals, so I don't see (yet) where a runtime call would be needed. ` Dim x = a `,...
I agree, it's a rare edge case which should be low priority, especially if it's not an easy fix. In our case, the varied casing was unintentional: One class used...
OK, I did some more debugging and managed to create a repro example without an Outlook reference: 1. Create a C# library with the following code: ``` [DefaultMember("Value")] public interface...
> My understanding was that C# only emitted that attribute to help VB users consume the code more idiomatically, so I'm a bit confused why the outlook library would be...