Hi,
I downloaded the Oxygene trial and installed Oxfuscator through that installer.
I’m trying to add an Oxfuscator project to a solution in Visual Studio 2010 (on a Windows 7 x86 VM). I created the project using the method described on your website (Right click -> Add -> New Project -> RemObjects Oxfuscator) and added my assemblies as references. When I try to build the solution, the Oxfuscator project fails with the error: “() Object reference not set to an instance of an object.”
The error points me to the file C:\Program Files\MSBuild\RemObjects Software\RemObjects.Oxfuscator.targets on the line:
<CallObfuscar ConfigString="$(ObfuscarConfig)" />
ObfuscarConfig was presumably supposed to be set in the “PreapareVars” target, which looks like this:
<Target Name="PreapareVars">
<PreapareObfuscarVars OxfuscatorXMLfragment="$(Oxfuscator)">
<Output TaskParameter="ObfuscarConfig" PropertyName="ObfuscarConfig" />
<Output TaskParameter="FilesToObfuscate" ItemName="FilesToObfuscate" />
</PreapareObfuscarVars>
</Target>
Could you please let me know what else I need to do to set this up properly?
Thanks!