Re: [WiX-users] Help with updating Heat output files to be installed into GAC

2011-05-17 Thread CoolBreeze
Is anyone aware of a way to add assembly=.net to files that need to be
installed in the GAC during the harvesting of files using Heat?

On Mon, May 16, 2011 at 1:33 PM, CoolBreeze coolbreeze...@googlemail.comwrote:

 Hi,

 I'm trying during the harvesting of files with Heat to update the resulting
 *.wxs file adding assembly=.net to the files I need to install into the
 GAC.

 I came across the following link, but I can't seem to get it to work. My
 *.wxs file after building does not have assembly=.net added to it. Does
 anyone have a solution for accomplishing this?

 http://blog.accentient.com/2010/06/03/AddingHEATOutputToTheGAC.aspx


--
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Help with updating Heat output files to be installed into GAC

2011-05-17 Thread jhennessey
You can specify an XSL transform to apply after heat harvests the files.
Here's what my xslt file looks like:


?xml version=1.0 encoding=utf-8?
xsl:stylesheet version=1.0
xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
xmlns:msxsl=urn:schemas-microsoft-com:xslt
exclude-result-prefixes=msxsl
xmlns:Wix=http://schemas.microsoft.com/wix/2006/wi;

  xsl:output method=xml indent=no/

  
  xsl:template match=@* | node()
xsl:copy
  xsl:apply-templates select=@* | node()/
/xsl:copy
  /xsl:template

  
  xsl:template match=Wix:File
xsl:copy
  xsl:attribute name=Assembly.net/xsl:attribute
  xsl:apply-templates select=@* | node()/  
/xsl:copy
  /xsl:template
/xsl:stylesheet

--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Help-with-updating-Heat-output-files-to-be-installed-into-GAC-tp6369576p6375019.html
Sent from the wix-users mailing list archive at Nabble.com.

--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Help with updating Heat output files to be installed into GAC

2011-05-17 Thread CoolBreeze
Thanks, how are you calling this from your Wix project?


On Tue, May 17, 2011 at 4:27 PM, jhennessey jack.hennes...@hyland.comwrote:

 You can specify an XSL transform to apply after heat harvests the files.
 Here's what my xslt file looks like:


 ?xml version=1.0 encoding=utf-8?
 xsl:stylesheet version=1.0
 xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
xmlns:msxsl=urn:schemas-microsoft-com:xslt
 exclude-result-prefixes=msxsl
xmlns:Wix=http://schemas.microsoft.com/wix/2006/wi;

  xsl:output method=xml indent=no/


  xsl:template match=@* | node()
xsl:copy
  xsl:apply-templates select=@* | node()/
/xsl:copy
  /xsl:template


  xsl:template match=Wix:File
xsl:copy
  xsl:attribute name=Assembly.net/xsl:attribute
  xsl:apply-templates select=@* | node()/
/xsl:copy
  /xsl:template
 /xsl:stylesheet

 --
 View this message in context:
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Help-with-updating-Heat-output-files-to-be-installed-into-GAC-tp6369576p6375019.html
 Sent from the wix-users mailing list archive at Nabble.com.


 --
 What Every C/C++ and Fortran developer Should Know!
 Read this article and learn how Intel has extended the reach of its
 next-generation tools to help Windows* and Linux* C/C++ and Fortran
 developers boost performance applications - including clusters.
 http://p.sf.net/sfu/intel-dev2devmay
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Help with updating Heat output files to be installed into GAC

2011-05-17 Thread jhennessey
I'm using the heat task for MSBuild so I just specify the path to my xlst
file with the Transforms property. Here's an abbreviated example:

HeatDirectory Transforms=c:\myfile.xslt ... /

You can also specify it with the -t parameter on the commandline. Look at
the WiX chm file for more details.

--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Help-with-updating-Heat-output-files-to-be-installed-into-GAC-tp6369576p6375502.html
Sent from the wix-users mailing list archive at Nabble.com.

--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Help with updating Heat output files to be installed into GAC

2011-05-17 Thread CoolBreeze
Thank you very much. It worked like a charm!

On Tue, May 17, 2011 at 6:31 PM, jhennessey jack.hennes...@hyland.comwrote:

 I'm using the heat task for MSBuild so I just specify the path to my xlst
 file with the Transforms property. Here's an abbreviated example:

 HeatDirectory Transforms=c:\myfile.xslt ... /

 You can also specify it with the -t parameter on the commandline. Look at
 the WiX chm file for more details.

 --
 View this message in context:
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Help-with-updating-Heat-output-files-to-be-installed-into-GAC-tp6369576p6375502.html
 Sent from the wix-users mailing list archive at Nabble.com.


 --
 What Every C/C++ and Fortran developer Should Know!
 Read this article and learn how Intel has extended the reach of its
 next-generation tools to help Windows* and Linux* C/C++ and Fortran
 developers boost performance applications - including clusters.
 http://p.sf.net/sfu/intel-dev2devmay
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Help with updating Heat output files to be installed into GAC

2011-05-16 Thread CoolBreeze
Hi,

I'm trying during the harvesting of files with Heat to update the resulting
*.wxs file adding assembly=.net to the files I need to install into the
GAC.

I came across the following link, but I can't seem to get it to work. My
*.wxs file after building does not have assembly=.net added to it. Does
anyone have a solution for accomplishing this?

http://blog.accentient.com/2010/06/03/AddingHEATOutputToTheGAC.aspx
--
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users