Re: [WiX-users] Manually building a Votive project

2011-06-08 Thread Bob Arnson
On 07-Jun-11 16:18, Francisco Gabriel Malbrán wrote: > I wanted to tell you that I was able to compile by using *only* WiX > installation and WiX's tools (candle, light). I say *only* because I dont > use anymore msbuild, but if WiX relies on .NET to work then there is an > implicit use of .NET. I

Re: [WiX-users] Manually building a Votive project

2011-06-07 Thread Francisco Gabriel Malbrán
Bob, Tobias, many thanks for your answers. I wanted to tell you that I was able to compile by using *only* WiX installation and WiX's tools (candle, light). I say *only* because I dont use anymore msbuild, but if WiX relies on .NET to work then there is an implicit use of .NET. However, to do so

Re: [WiX-users] Manually building a Votive project

2011-06-06 Thread Bob Arnson
On 31-May-11 13:33, Francisco Gabriel Malbrán wrote: > Yet I would like to establish the simplest dependencies to compile. ie: only > Wix 3.5 (no need of .net framework) > > Is this possible? No, WiX requires .NET. -- sig://boB http://joyofsetup.com/ ---

Re: [WiX-users] Manually building a Votive project

2011-05-31 Thread Tobias S
Yes, possible. Just tried it myself and used the Build output script from visual studio. Additionally I added quotes around Wix Candle + Light path and removed obj\Debug\Product.Generated.wxs and the Candle output obj\Debug\Product.Generated.wixobj. Then building from batch works fine. Maybe try it

Re: [WiX-users] Manually building a Votive project

2011-05-31 Thread Francisco Gabriel Malbrán
Hello Tobias. I haven't tried it before. I tried it now and it works smoothly. Yet I would like to establish the simplest dependencies to compile. ie: only Wix 3.5 (no need of .net framework) Is this possible? Who generates "Product.Generated.wxs" anyway? and what for? I cant seem to find any use

Re: [WiX-users] Manually building a Votive project

2011-05-31 Thread Tobias S
Did you consider building it by a batch call of MSBuild with the solution and platform like C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe MyWixInstaller.sln /p:Configuration=Release /p:Platform=x64 ? 2011/5/30 Francisco Gabriel Malbrán : > Hey there. > I am doing a simple test: I want

[WiX-users] Manually building a Votive project

2011-05-30 Thread Francisco Gabriel Malbrán
Hey there. I am doing a simple test: I want to be able to manually build a project made with Votive and VS (WiX 3.5). My approach was to get the commands used by VS to compile and link and copy those into a batch file. It didn't work. I made some intents to correct it, but I keep hitting my head o