Re: [WiX-users] WSX file contains extra files?

2015-02-27 Thread Phill Hogland
.targets files are MSBuild scripts.
https://msdn.microsoft.com/en-us/library/ms164312.aspx

MSBuild is used by VS and by wix.  In fact each project file (.csproj or
.wixproj) is a .targets file, as the .targets extension is just a 'default'
extension for a MSBuild script file.  A developer can write .targets files
to customise and control the MSBuild build process, which is what appears to
have been done in the code that was posted earlier.

heat.exe is just one of the tools in the wix toolset, which is used to
automatically generate wix authoring (wxs files) by looking in a folder (or
some other optional location). 
http://wixtoolset.org/documentation/manual/v3/overview/alltools.html
 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-contains-extra-files-tp7599291p7599376.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-27 Thread assassinator27
Okay so that's why it might be heat that is causing my problem with vs
complaining about having extra files. I need to either let heat pull the
file into the wix installer or explicitly specify inclusion of the file in
the wix installer. Thanks again for your help.

 

From: Phill Hogland [via Windows Installer XML (WiX) toolset]
[mailto:ml-node+s687559n7599376...@n2.nabble.com] 
Sent: Friday, February 27, 2015 5:47 AM
To: assassinator27
Subject: Re: WSX file contains extra files?

 

.targets files are MSBuild scripts. 
https://msdn.microsoft.com/en-us/library/ms164312.aspx

MSBuild is used by VS and by wix.  In fact each project file (.csproj or
.wixproj) is a .targets file, as the .targets extension is just a 'default'
extension for a MSBuild script file.  A developer can write .targets files
to customise and control the MSBuild build process, which is what appears to
have been done in the code that was posted earlier. 

heat.exe is just one of the tools in the wix toolset, which is used to
automatically generate wix authoring (wxs files) by looking in a folder (or
some other optional location). 
http://wixtoolset.org/documentation/manual/v3/overview/alltools.html
  

  _  

If you reply to this email, your message will be added to the discussion
below:

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-conta
ins-extra-files-tp7599291p7599376.html 

To unsubscribe from WSX file contains extra files?, click here
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/Naml
Servlet.jtp?macro=unsubscribe_by_codenode=7599291code=Y2hyeXMucGVyZHVlQHN5
bmVzaXM3LmNvbXw3NTk5MjkxfDg2MzM0NzA4OA== .
 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/Naml
Servlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=na
bble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace
-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nab
ble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21n
abble%3Aemail.naml NAML 





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-contains-extra-files-tp7599291p7599382.html
Sent from the wix-users mailing list archive at Nabble.com.
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-27 Thread Phill Hogland
I would not draw that conclusion, but I don't have enough information.

My guess is that you have a MSBuild script which is building some
application project (maybe in VS or not) and that there is an 'output'
folder full of generated files.

Then my guess is that, as part of building the wix project, the MSBuild
script either launches a cmd file that launches path to wix
tools\heat.exe, or more likely the MSBuild script either uses a
HarvestDirectory, HarvestProject or a Heat task (all documented in the wix
chm) which results in generated wxs files.  There may likely be an XSLT
file, also used in one of the above commands to call heat which causes
certain harvested files to be excluded from the wxs results. (This is often
desirable depending on how you want to design your project.)

I guess that there is some custom MSBuild script that makes its own list of
the files in the 'output' folder and then parses the generated WXS file to
stop the build process if it thinks that something was not authored
correctly.

But all of the above are as I said guesses, and what you want to do to
change the results depends on the unknown details. 



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-contains-extra-files-tp7599291p7599383.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-26 Thread Chrys Perdue
So is .targets files part of wix or heat?

-Original Message-
From: assassinator27 [mailto:chrys.per...@synesis7.com] 
Sent: Wednesday, February 25, 2015 12:11 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] WSX file contains extra files?

Phill,

Thank You! I was beginning to wonder if it had something to do with ms
build. Thanks for pointing me in the right direction.

 

From: Phill Hogland [via Windows Installer XML (WiX) toolset]
[mailto:ml-node+s687559n7599328...@n2.nabble.com]
Sent: Wednesday, February 25, 2015 11:18 AM
To: assassinator27
Subject: Re: WSX file contains extra files?

 

WXS file is missing files: or Error 5 WXS file contains extra files: 
are not in the wix source code.  My guess is that you have heat authoring
and a MSBuild script that you need to understand, which is generating those
messages.  I don't think it has anything to do with wix or vs2008. 

  _  

If you reply to this email, your message will be added to the discussion
below:

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-conta
ins-extra-files-tp7599291p7599328.html 

To unsubscribe from WSX file contains extra files?, click here
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/Naml
Servlet.jtp?macro=unsubscribe_by_codenode=7599291code=Y2hyeXMucGVyZHVlQHN5
bmVzaXM3LmNvbXw3NTk5MjkxfDg2MzM0NzA4OA== .
 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/Naml
Servlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=na
bble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace
-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nab
ble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21n
abble%3Aemail.naml NAML 





--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-conta
ins-extra-files-tp7599291p7599329.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Dive into the World of Parallel Programming The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-25 Thread assassinator27
Library.wsx:
?xml version=1.0 encoding=utf-8?
?include ..\..\variables.wxi ?
?define ManualName = Demo ?

Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
Fragment
DirectoryRef Id=INSTALLDIR
Directory Id=dir01838157A568C4D2D4B15FD814608E20 Name=Demo
Component Id=cmp08C08B522D2816D5386B621696600103
Guid=*
File Id=fil99C2EDE470891DDCB0F89B4472599D1E
KeyPath=yes Source=Demo\manual.xml /
/Component
Directory Id=dirA5A16063106B12C51DD96FFE426F4FE7
Name=companion
Component Id=cmpEF1F78EDA0FD8373C806EECC237AC156
Guid=*
File Id=fil5B68860810DB0ED1DCA966DEB7F46D3D
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_1.xml /
/Component
Component Id=cmpA88F71D182DEAD41E9D4B6F082087451
Guid=*
File Id=fil8E540B809BD30E80EF7C282F13131E54
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_2.xml /
/Component
Component Id=cmpC9307C5C8F138E1A05913542D6762221
Guid=*
File Id=fil3B71315A93C78D7FAFE4BB8C2328C8C8
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_3.xml /
/Component
Component Id=cmpD2C1D9EC96F58B7D535664A7CBE4E536
Guid=*
File Id=fil3D08F446F09586516C1D3051814C5790
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_4.xml /
/Component
Component Id=cmpA2F3B963C56D9808CC8623FA82C11AB6
Guid=*
File Id=fil832969320A42F33C169588E4793C03C2
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_5.xml /
/Component
Component Id=cmpACE43766E8DA6ECCB978BEC7F311539C
Guid=*
File Id=filA2B0AAFA441866FAE4EE204094A7B370
KeyPath=yes Source=Demo\companion\CI.xml /
/Component
Component Id=cmpFF8E1A6F4F0E47780FD91D433F0263AE
Guid=*
File Id=fil6839A3BF9479830BFD0A1512AD7FABE9
KeyPath=yes Source=Demo\companion\connectivity_1.xml /
/Component
Component Id=cmpA95E5E1EE4E646061F888410357877D0
Guid=*
File Id=fil93DA81D59CD95D142B477226EE839FD3
KeyPath=yes Source=Demo\companion\connectivity_2.xml /
/Component
Component Id=cmp1B0DD7C83356B76ED94B63B474EE2446
Guid=*
File Id=fil4BA67290CD6C3D14F48850AC55A8D137
KeyPath=yes Source=Demo\companion\connectivity_3.xml /
/Component
Component Id=cmp41E9667AADCC76B69D823875AED5C2D1
Guid=*
File Id=fil9D271D9746B02A60CA13E33C2E07CE89
KeyPath=yes Source=Demo\companion\connectivity_4.xml /
/Component
Component Id=cmp1CEFE962FD813AF85F628E023CFE4ECA
Guid=*
File Id=fil8371B210FC183CED5E42BF58BD0B0FAC
KeyPath=yes Source=Demo\companion\ecfb01.xml /
/Component
Component Id=cmpD7D63738149DD01216AB03673E05984C
Guid=*
File Id=fil97CBCABABE132748B863D2BCA8976F84
KeyPath=yes Source=Demo\companion\ecfb02.xml /
/Component
Component Id=cmpAFD0E899DC2D89F6303E99CFB86ACAD4
Guid=*
File Id=fil41CA992AEE668D6DC4469F2E5C75FA53
KeyPath=yes Source=Demo\companion\engine_compartment_overview.xml /
/Component
Component Id=cmp38D94C7E3DBB1CA8DD239312B1714A2A
Guid=*
File Id=fil7BABE2FD48A6429674DBBB87C72F7197
KeyPath=yes Source=Demo\companion\Engine_Sensor_Parts_List.xml /
/Component
Component Id=cmpE27909028CB6BB3114C6C97B8A58271F
Guid=*
File Id=fil8F7766EE57EF010AE8D99B13AAF76E3A
KeyPath=yes Source=Demo\companion\Entireblock.xml /
/Component
Component Id=cmp634BC8A75DDB7969954F270316F69C25
Guid=*
File Id=filC85E5693CF2E69DB095ED734E373CB51
KeyPath=yes Source=Demo\companion\Fan Cut- Off Switch,Throttle Position
Sensor and Engine Speed Sensor.xml /
/Component
Component Id=cmpAD0EADFDB6EE0E2BF78D651BF8A4AEA5
Guid=*
File Id=fil3A53FA2E8B3B813BCDBC0E5C5F6E37B3
KeyPath=yes Source=Demo\companion\fb.xml /
/Component
Component Id=cmpAE95858FA7650D2D5CD445C4DCBAFB69
Guid=*
File Id=filCDCF66E656F1529607D3019E6BE851CA
KeyPath=yes
Source=Demo\companion\Hummer-H3-Evaporator-Heater-Components-Parts-Diagram.xml
/
/Component
Component Id=cmpBB7C098303AC16A8E71CF4D57E1FCD6A
Guid=*
File Id=filD5BA36345BBC02B763AE31D9FD6158BC

Re: [WiX-users] WSX file contains extra files?

2015-02-25 Thread assassinator27
Phill,

Thank You! I was beginning to wonder if it had something to do with ms
build. Thanks for pointing me in the right direction.

 

From: Phill Hogland [via Windows Installer XML (WiX) toolset]
[mailto:ml-node+s687559n7599328...@n2.nabble.com] 
Sent: Wednesday, February 25, 2015 11:18 AM
To: assassinator27
Subject: Re: WSX file contains extra files?

 

WXS file is missing files: or Error 5 WXS file contains extra files: 
are not in the wix source code.  My guess is that you have heat authoring
and a MSBuild script that you need to understand, which is generating those
messages.  I don't think it has anything to do with wix or vs2008. 

  _  

If you reply to this email, your message will be added to the discussion
below:

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-conta
ins-extra-files-tp7599291p7599328.html 

To unsubscribe from WSX file contains extra files?, click here
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/Naml
Servlet.jtp?macro=unsubscribe_by_codenode=7599291code=Y2hyeXMucGVyZHVlQHN5
bmVzaXM3LmNvbXw3NTk5MjkxfDg2MzM0NzA4OA== .
 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/template/Naml
Servlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=na
bble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace
-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nab
ble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21n
abble%3Aemail.naml NAML 





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-contains-extra-files-tp7599291p7599329.html
Sent from the wix-users mailing list archive at Nabble.com.
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-25 Thread Phill Hogland
WXS file is missing files: or Error  5   WXS file contains extra files: 
 are
not in the wix source code.  My guess is that you have heat authoring and a
MSBuild script that you need to understand, which is generating those
messages.  I don't think it has anything to do with wix or vs2008.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-contains-extra-files-tp7599291p7599328.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-25 Thread Chrys Perdue
Library.wsx:
?xml version=1.0 encoding=utf-8?
?include ..\..\variables.wxi ?
?define ManualName = Demo ?

Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
Fragment
DirectoryRef Id=INSTALLDIR
Directory Id=dir01838157A568C4D2D4B15FD814608E20 Name=Demo
Component Id=cmp08C08B522D2816D5386B621696600103
Guid=*
File Id=fil99C2EDE470891DDCB0F89B4472599D1E
KeyPath=yes Source=Demo\manual.xml /
/Component
Directory Id=dirA5A16063106B12C51DD96FFE426F4FE7
Name=companion
Component Id=cmpEF1F78EDA0FD8373C806EECC237AC156
Guid=*
File Id=fil5B68860810DB0ED1DCA966DEB7F46D3D
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_1.xml /
/Component
Component Id=cmpA88F71D182DEAD41E9D4B6F082087451
Guid=*
File Id=fil8E540B809BD30E80EF7C282F13131E54
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_2.xml /
/Component
Component Id=cmpC9307C5C8F138E1A05913542D6762221
Guid=*
File Id=fil3B71315A93C78D7FAFE4BB8C2328C8C8
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_3.xml /
/Component
Component Id=cmpD2C1D9EC96F58B7D535664A7CBE4E536
Guid=*
File Id=fil3D08F446F09586516C1D3051814C5790
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_4.xml /
/Component
Component Id=cmpA2F3B963C56D9808CC8623FA82C11AB6
Guid=*
File Id=fil832969320A42F33C169588E4793C03C2
KeyPath=yes Source=Demo\companion\06_hummer_h3_complete1_Page_5.xml /
/Component
Component Id=cmpACE43766E8DA6ECCB978BEC7F311539C
Guid=*
File Id=filA2B0AAFA441866FAE4EE204094A7B370
KeyPath=yes Source=Demo\companion\CI.xml /
/Component
Component Id=cmpFF8E1A6F4F0E47780FD91D433F0263AE
Guid=*
File Id=fil6839A3BF9479830BFD0A1512AD7FABE9
KeyPath=yes Source=Demo\companion\connectivity_1.xml /
/Component
Component Id=cmpA95E5E1EE4E646061F888410357877D0
Guid=*
File Id=fil93DA81D59CD95D142B477226EE839FD3
KeyPath=yes Source=Demo\companion\connectivity_2.xml /
/Component
Component Id=cmp1B0DD7C83356B76ED94B63B474EE2446
Guid=*
File Id=fil4BA67290CD6C3D14F48850AC55A8D137
KeyPath=yes Source=Demo\companion\connectivity_3.xml /
/Component
Component Id=cmp41E9667AADCC76B69D823875AED5C2D1
Guid=*
File Id=fil9D271D9746B02A60CA13E33C2E07CE89
KeyPath=yes Source=Demo\companion\connectivity_4.xml /
/Component
Component Id=cmp1CEFE962FD813AF85F628E023CFE4ECA
Guid=*
File Id=fil8371B210FC183CED5E42BF58BD0B0FAC
KeyPath=yes Source=Demo\companion\ecfb01.xml /
/Component
Component Id=cmpD7D63738149DD01216AB03673E05984C
Guid=*
File Id=fil97CBCABABE132748B863D2BCA8976F84
KeyPath=yes Source=Demo\companion\ecfb02.xml /
/Component
Component Id=cmpAFD0E899DC2D89F6303E99CFB86ACAD4
Guid=*
File Id=fil41CA992AEE668D6DC4469F2E5C75FA53
KeyPath=yes Source=Demo\companion\engine_compartment_overview.xml /
/Component
Component Id=cmp38D94C7E3DBB1CA8DD239312B1714A2A
Guid=*
File Id=fil7BABE2FD48A6429674DBBB87C72F7197
KeyPath=yes Source=Demo\companion\Engine_Sensor_Parts_List.xml /
/Component
Component Id=cmpE27909028CB6BB3114C6C97B8A58271F
Guid=*
File Id=fil8F7766EE57EF010AE8D99B13AAF76E3A
KeyPath=yes Source=Demo\companion\Entireblock.xml /
/Component
Component Id=cmp634BC8A75DDB7969954F270316F69C25
Guid=*
File Id=filC85E5693CF2E69DB095ED734E373CB51
KeyPath=yes Source=Demo\companion\Fan Cut- Off Switch,Throttle Position
Sensor and Engine Speed Sensor.xml /
/Component
Component Id=cmpAD0EADFDB6EE0E2BF78D651BF8A4AEA5
Guid=*
File Id=fil3A53FA2E8B3B813BCDBC0E5C5F6E37B3
KeyPath=yes Source=Demo\companion\fb.xml /
/Component
Component Id=cmpAE95858FA7650D2D5CD445C4DCBAFB69
Guid=*
File Id=filCDCF66E656F1529607D3019E6BE851CA
KeyPath=yes
Source=Demo\companion\Hummer-H3-Evaporator-Heater-Components-Parts-Diagram.
xml /
/Component
Component Id=cmpBB7C098303AC16A8E71CF4D57E1FCD6A
Guid=*
File Id=filD5BA36345BBC02B763AE31D9FD6158BC

Re: [WiX-users] WSX file contains extra files?

2015-02-23 Thread Chrys Perdue
Does anyone have a solution for this? I keep getting this error but don't
understand why it is saying that I have these extra dlls. What does that
error mean I can't imagine that I'm the only that has ever had a problem
with this.

-Original Message-
From: Chrys Perdue [mailto:chrys.per...@synesis7.com] 
Sent: Friday, February 20, 2015 11:14 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WSX file contains extra files?

I don't understand what causes this error in visual studio 2008.


--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from
Actuate! Instantly Supercharge Your Business Reports and Dashboards with
Interactivity, Sharing, Native Excel Exports, App Integration  more Get
technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-23 Thread ctludlow
I'm no Wix expert, but I can guarantee someone who is needs to see your
source code.  VS is complaining about your .wxs file and no one will be able
to help without seeing your code.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WSX-file-contains-extra-files-tp7599291p7599314.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WSX file contains extra files?

2015-02-23 Thread Jeremy Farrell
You'll probably find it useful to read 
http://www.catb.org/~esr/faqs/smart-questions.html and follow its advice.

On 23/02/2015 15:56, Chrys Perdue wrote:
 Does anyone have a solution for this? I keep getting this error but don't
 understand why it is saying that I have these extra dlls. What does that
 error mean I can't imagine that I'm the only that has ever had a problem
 with this.

 -Original Message-
 From: Chrys Perdue [mailto:chrys.per...@synesis7.com]
 Sent: Friday, February 20, 2015 11:14 AM
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] WSX file contains extra files?

 I don't understand what causes this error in visual studio 2008.

--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users