Send crash reports of your classic desktop application developed using .NET Framework directly to your mail's inbox with full exception report, stack trace and screenshot.
MIT License
185
stars
74
forks
source link
Not Showing Correct Application Version if Network Deployed #11
My application is network deployed using the Publish feature in the project properties.
However, when the crash report screen appears, it show's either the assembly or file version instead of the publish version.
I think it should check if it's network deployed, and use the publish version.
if (ApplicationDeployment.IsNetworkDeployed) { return ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString(); }