Jan Kučera
Jan Kučera
I am pretty sure I tried to set `MSBuildEnableWorkloadResolver` in the project and it wasn't helpful. If I remember correctly, the build succeeded, but no output was produced.
Sorry about the delay, I have the setup back. No SDK installed, only 8.0 ZIP. Upgraded to MSBuild version 17.8.3+195e7f5a3 for .NET Framework. MSBuildSDKsPath set to ...\dotnet-sdk-8.0.204-win-x64\sdk\8.0.204\Sdks\ The compilation results...
OK `DOTNET_ROOT` didn't help, but `DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR` set to ...\dotnet-sdk-8.0.204-win-x64 seems to have done the trick. This is not a trivial knowledge, and some instructions should be included either at the...
While the Visual Studio 2017 has this functionality built in, it does not support SVG files and produces very blurry images, especially when scaling up. It would be great if...
That doesn't give you any meaningful information, does it? If the remaining seconds is 5 and UtcNow is 12:34:56, then subtracting gives you 12:34:51, regardless of when the window actually...
Thank you @damiarnold I understand that, but I cannot do that if I am not the one who created the Totp object. And when I have several Totp objects I...
I did #49. I also looked into `ElapsedSeconds()` and since `RemainingSeconds()` returns integral value (as opposed to `TimeSpan` or `double`), I don't find enough value in `ElapsedSeconds()` if #49 is...
Should this be closed?
I just got it here in 16.4: ```C# lock (BufferLock) { var temp = BackBuffer; BackBuffer = FrontBuffer; FrontBuffer = temp; } ``` offering to swap the first two lines....
I still think the examples, while technically valid, are different in how likely or obvious to the developer the potential breaking is, but I agree that's a hard line to...