Hello, I'm new to Wix 3 and the whole setup creation process. After finishing my product.xml I tried to add a bootstrapper. Therefor I followed the instructions from http://wix.sourceforge.net/manual-wix3/install_dotnet.htm but I can not find any setup.exe.
My project folder contains a wix setup solution, a visual studio setup solution and my programm solution. Is there anything missing? My wixproj file looks like this: <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">x86</Platform> <ProductVersion>3.0</ProductVersion> <ProjectGuid>{ab7208c9-c0b0-4b35-87bc-6a0c0d4338fc}</ProjectGuid> <SchemaVersion>2.0</SchemaVersion> <OutputName>My Application_Setup</OutputName> <OutputType>Package</OutputType> <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.0\Wix.targets</WixTargetsPath> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <OutputPath>bin\$(Configuration)\</OutputPath> <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> <DefineConstants>Debug</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <OutputPath>bin\$(Configuration)\</OutputPath> <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> <Cultures>de-DE</Cultures> <DefineConstants>Debug;</DefineConstants> </PropertyGroup> <ItemGroup> <Compile Include="Product.wxs" /> </ItemGroup> <ItemGroup> <WixExtension Include="WixIIsExtension"> <HintPath>$(WixExtDir)\WixIIsExtension.dll</HintPath> </WixExtension> <WixExtension Include="WixUIExtension"> <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath> </WixExtension> </ItemGroup> <!-- Bootstrapper --> <ItemGroup> <BootstrapperFile Include="Microsoft.Net.Framework.2.0"> <ProductName>Microsoft .net Framework 2.0</ProductName> </BootstrapperFile> <BootstrapperFile Include="Aladdin.Runtime.Installer"> <ProductName>Aladdin HASP Runtime</ProductName> </BootstrapperFile> </ItemGroup> <Import Project="$(WixTargetsPath)" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Wix.targets. <Target Name="BeforeBuild"> </Target> --> <Target Name="AfterBuild"> <GenerateBootstrapper ApplicationFile="$(TargetPath)" ApplicationName="My Application" BootstrapperItems="@(BootstrapperFile)" ComponentsLocation="Relative" CopyComponents="True" OutputPath="$(OutputPath)" Path="C:\Programme\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\" /> </Target> </Project> Thanks. -- View this message in context: http://n2.nabble.com/Create-a-bootstrapper-using-Visual-Studio-and-votive-tp2254625p2254625.html Sent from the wix-users mailing list archive at Nabble.com. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users