How can i integrate dotfuscator with my solution projects. Like when i
build projects in my solution using visual studio.net, i want to be
build using dotfuscator.

Like i have a setup project which takes the dll from some directory.
Before i run the setup project, i want the dlls to be built using
dotfuscator and i don't want any manual operation. How can u integrate
with build process or setup process?

I am dotfuscator community edition and in the help only two options
given is via command line and using the gui.

Re: Dotfuscator by Frans

Frans
Mon Sep 26 10:46:12 CDT 2005

venky wrote:

> How can i integrate dotfuscator with my solution projects. Like when i
> build projects in my solution using visual studio.net, i want to be
> build using dotfuscator.
>
> Like i have a setup project which takes the dll from some directory.
> Before i run the setup project, i want the dlls to be built using
> dotfuscator and i don't want any manual operation. How can u integrate
> with build process or setup process?
>
> I am dotfuscator community edition and in the help only two options
> given is via command line and using the gui.

Dotfuscator can be ran from the command line. So you can start the
obfuscation process in a post-build event (if your language of choice
supports that). Specify the settings in an .XML file, (you can generate
that one in the dotfuscator gui) and use a statement like:

@echo off
call vsvars32.bat
"C:\Program Files\Microsoft Visual Studio .NET 2003\PreEmptive
Solutions\Dotfuscator Community Edition\dotfuscator.exe" /q
obfuscate_exe.xml

FB


--
------------------------------------------------------------------------
Get LLBLGen Pro, productive O/R mapping for .NET: http://www.llblgen.com
My .NET blog: http://weblogs.asp.net/fbouma
Microsoft MVP (C#)
------------------------------------------------------------------------

RE: Dotfuscator by NoSpamMgbworld

NoSpamMgbworld
Mon Sep 26 10:46:11 CDT 2005

Dotfuscator community takes an assembly and obfuscates. This is after IL
compile. You cannot add it directly to the compile step in your solution.

There are other obfuscators out there, including those that fold into the IDE.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************


"venky" wrote:

> How can i integrate dotfuscator with my solution projects. Like when i
> build projects in my solution using visual studio.net, i want to be
> build using dotfuscator.
>
> Like i have a setup project which takes the dll from some directory.
> Before i run the setup project, i want the dlls to be built using
> dotfuscator and i don't want any manual operation. How can u integrate
> with build process or setup process?
>
> I am dotfuscator community edition and in the help only two options
> given is via command line and using the gui.
>
>