Lumo

Results 14 comments of Lumo

That was my [Aspected] Method: public async Task SetPolarizerPosition(double aPolarizerValue) { await internSetPolarizerPosition(aPolarizerValue); await updateAnalyzerPositionIfLinked(); } Maybe it has something to do with async Methods or Task return values?

That was my [Aspected] Method: ``` [LogCall] public async Task SetPolarizerPosition(double aPolarizerValue) { await internSetPolarizerPosition(aPolarizerValue); await updateAnalyzerPositionIfLinked(); } Thats my aspect: [Aspect(Scope.Global)] [Injection(typeof(LogCall))] public class LogCall : Attribute { [Advice(Kind.Before)]...

Same problem here. When TeamViewer is running on our customers computer, they get this drag drop exception. After exiting the TeamViewer application entirely, everything works again.

So far I can't reproduce the problem. Best Lumo

There is another problem: When using automatic binding redirects, then those redirects don't get into the exe.withSupportedRuntime.config. If I add the "Publihed Items" for an exe project in a Visual...

@sujitnayak no it only happens on the Devops pipeline, not on local computers. I guess the binlog would contain private information (all DLL names etc.) that I don't want to...

I created a test app which makes those warnings on the build-server but not on a local machine: [TestAppMSB3178.zip](https://github.com/dotnet/msbuild/files/13920412/TestAppMSB3178.zip) - New WPF Application (.Net Framework) - Add Nuget Reference for...

I'm not sure if this is the right one: ``` 2024-01-29T07:41:58.4498809Z 99>CoreCompile: 2024-01-29T07:41:58.4502178Z C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\Roslyn\csc.exe /noconfig /nowarn:1701,1702 /fullpaths /nostdlib+ /platform:anycpu32bitpreferred /errorreport:prompt /warn:4 /define:DEBUG;TRACE /highentropyva+ /reference:"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.8\Microsoft.CSharp.dll"...

This is our yml: ``` steps: - checkout: self clean: true - task: NuGetToolInstaller@1 displayName: Use NuGet inputs: versionSpec: 5.9.1 - task: NuGetCommand@2 displayName: NuGet restore inputs: solution: WITec.Tests/TestAppMSB3178/TestAppMSB3178.sln selectOrConfig:...