Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MDT EventRegister nuget exited with code 1

While building my project, Microsoft.Diagnostics.Tracing.EventRegister.exe exited with code 1 and failing the build. The issue is first of it's kind so any kind of help would be appreciated.

Severity Code Description Project Path File Line Suppression State
Error The command ""C:\Users\uanand\Desktop\UPDATE\courier_ua\packages\Microsoft.Diagnostics.Tracing.EventRegister.1.1.28\build\eventRegister.exe" -DumpRegDlls @"C:\Users\uanand\Desktop\UPDATE\courier_ua\Apttus.Workers.NotificationProxyWorker\bin\x64\Debug\Apttus.Workers.NotificationProxyWorker.eventRegister.rsp" "C:\Users\uanand\Desktop\UPDATE\courier_ua\Apttus.Workers.NotificationProxyWorker\bin\x64\Debug\Apttus.Workers.NotificationProxyWorker.dll" " exited with code 1.    Apttus.Workers.NotificationProxyWorker              
like image 546
imujjwalanand Avatar asked Dec 17 '25 06:12

imujjwalanand


1 Answers

I removed these packages:

<package id="Microsoft.Diagnostics.Tracing.EventSource" version="1.1.28" targetFramework="net461" />
<package id="Microsoft.Diagnostics.Tracing.EventRegister" version="1.1.28" targetFramework="net461" />

I only use

<package id="Microsoft.Diagnostics.Tracing.EventSource.Redist" version="2.0.1" targetFramework="net461" />

Then, in the projects .csproj file, I removed these elements:

<Error Condition="!Exists('..\packages\Microsoft.Diagnostics.Tracing.EventRegister.1.1.28\build\Microsoft.Diagnostics.Tracing.EventRegister.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Diagnostics.Tracing.EventRegister.1.1.28\build\Microsoft.Diagnostics.Tracing.EventRegister.targets'))" />

and

<Import Project="..\packages\Microsoft.Diagnostics.Tracing.EventRegister.1.1.28\build\Microsoft.Diagnostics.Tracing.EventRegister.targets" Condition="Exists('..\packages\Microsoft.Diagnostics.Tracing.EventRegister.1.1.28\build\Microsoft.Diagnostics.Tracing.EventRegister.targets')" />
like image 174
DannyThunder Avatar answered Dec 19 '25 19:12

DannyThunder