Something like

   <ItemGroup>
      <MyFiles Include="..\..\..\Binaries\assembly1.dll" />
      <MyFiles Include="assembly2.dll" />
      <MyFiles Include="..\..\..\assembly3.dll" />
    </ItemGroup>
    <Copy SourceFiles="@(MyFiles)" DestinationFolder="$(OutDir)">
    </Copy>

e.g. in target  <Target Name="BeforeBuild">
should do that job.

For relative referencing MSBuild should starts from the wixproj directory.

Regards,
Tobias


2011/8/10 Rory Primrose <[email protected]>:
> Try using a post build script in the WiX project to copy the file from a 
> known location such as Solution Items.
>
> Cheers,
>
> Rory
>
>
> -----Original Message-----
> From: Atul Kolhatkar [mailto:[email protected]]
> Sent: Wednesday, 10 August 2011 7:03 AM
> To: General discussion for Windows Installer XML toolset.
> Subject: [WiX-users] Including other files to Wix project's output
>
> I want to include a script that runs the MSI installers built by Wix into the 
> output directory along with the .msi file.
>
> I've tried using the two options below in the wixproj file, but neither of 
> them worked (I've verified that the path to the script file is correct):
>
>  <ItemGroup>
>    <Content Include="..\install.ps1">
>      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
>      <Link>install.ps1</Link>
>    </Content>
>  </ItemGroup>
>
>  <ItemGroup>
>    <OtherFIles Include="..\install.ps1">
>      <Destination />
>    </OtherFIles>
>  </ItemGroup>
>
> Is there any other way to achieve this?
>
> Thanks,
> Atul
>
> ------------------------------------------------------------------------------
> uberSVN's rich system and user administration capabilities and model 
> configuration take the hassle out of deploying and managing Subversion and 
> the tools developers use with it. Learn more about uberSVN and get a free 
> download at:  http://p.sf.net/sfu/wandisco-dev2dev
> _______________________________________________
> WiX-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
> ------------------------------------------------------------------------------
> uberSVN's rich system and user administration capabilities and model
> configuration take the hassle out of deploying and managing Subversion and
> the tools developers use with it. Learn more about uberSVN and get a free
> download at:  http://p.sf.net/sfu/wandisco-dev2dev
> _______________________________________________
> WiX-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/wix-users
>

------------------------------------------------------------------------------
uberSVN's rich system and user administration capabilities and model 
configuration take the hassle out of deploying and managing Subversion and 
the tools developers use with it. Learn more about uberSVN and get a free 
download at:  http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________
WiX-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to