Dotfuscator from .NET 2.0
Posted
by vasek7
on Stack Overflow
See other posts from Stack Overflow
or by vasek7
Published on 2010-05-07T22:53:19Z
Indexed on
2010/05/07
22:58 UTC
Read the original article
Hit count: 224
dotfuscator
|.net-2.0
Is there any chance to see Application Runs on Codeplex with .NET 2.0 application? I explored Dotfuscator is using web service url http://so-s.info/PreEmptive.Web.Services.Messaging/MessagingServiceV2.asmx. Is possible to track application run event manually? Something like add web service reference and call:
Dotfuscator.MessageCache messages = new Dotfuscator.MessageCache();
messages.Business.CompanyId = new Guid("3E35F098-CE43-4F82-9E9D-05C8B1046A45");
messages.Application.Id = new Guid("my app guid");
messages.Application.Name = Application.ProductName;
messages.Application.Version = Application.ProductVersion;
Dotfuscator.MessagingServiceV2 s = new Dotfuscator.MessagingServiceV2();
s.Publish(messages);
© Stack Overflow or respective owner