If one will release clickonce version, how can it be obfuscated by dotfuscator?
.net application
If one will release clickonce version, how can it be obfuscated by dotfuscator?
.net application
Yes these are compatible technologies. ClickOnce simply focuses on the deployment of an application and it's associated binaries to a target machine. DotFuscator offuscates the DLL /EXEs. They will work together so long as you run Dotfuscator before publishing the application.
If you are using VS2010, the Dotfuscator that comes with it will obfuscate the files and then re-sign the manifests for you. [Edit -- this is not true unless you buy the full version; it works just like VS2008.]
If you are using VS2008, you will need to publish, then obfuscate the files, and then re-sign the manifests with Mage or MageUI.
You can use the commercial version of Dotfuscator to automatically obfuscate a ClickOnce application by adding the deployment manifest ("foo.application") as an input to your Dotfuscator project. Dotfuscator will allow you to add any necessary exclusions to the assemblies contained in the ClickOnce application and will create updated deployment and application manifests containing the obfuscated assemblies.
The free version of Dotfuscator included in Visual Studio (including Visual Studio 2010) does not have the feature to automatically obfuscate ClickOnce applications. In order to get a functioning obfuscated ClickOnce application you will need to recreate or update the ClickOnce manifests since obfuscation changes the signatures of the assemblies.
You can use mage.exe or mageui.exe (included in the Windows/.NET SDK) to update the ClickOnce manifests. If you are going to use mage.exe you need to be aware that you cannot use the "Use .deploy file extension" option in your ClickOnce options as it does not recognize it.
Assuming your ClickOnce application is named "Foo" and is at version 1.0.0.0 the process you will want to follow is:
Update the application manifest and resign it:
mage.exe -Update "Application Files\Foo_1_0_0_0\Foo.exe.manifest" -CertFile "c:\Foo\foo.pfx" -Password password
Update the deployment manifest and resign it:
mage.exe -Update Foo.application -AppManifest "Application Files\Foo_1_0_0_0\Foo.exe.manifest" -CertFile "c:\Foo\foo.pfx" -Password password
You now have a valid application and deployment manifest using obfuscated assemblies. You can also use the MageUI.exe tool to accomplish the same tasks (and it knows how to handle assemblies with the .deploy extension) but it is not as easy to automate.
I get it from this http://www.preemptive.com/distribution/viewtopic.php?f=20&t=265&sid=2c3df3b8e283edd9ec340dbd889971ca&p=595#p595