Jun 26, 2019
09:57 AM
Unfortunately, the mentioned exe-file is not a directly referenced file. My references look like this: The mentioned exe-file is listed in the cefsharp.common.props from NuGet: <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<CefSharpCommonBinaries32 Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\*.*" />
<CefSharpCommonBinaries64 Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\*.*" />
<CefSharpCommonBinariesAnyCPU Include="$(MSBuildThisFileDirectory)..\CefSharp\**\*.*" />
<CefSharpBrowserProcessCore32 Include="$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.BrowserSubprocess.Core.dll" />
<CefSharpBrowserProcessCore64 Include="$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.BrowserSubprocess.Core.dll" />
</ItemGroup>
<Choose>
<When Condition="'$(Platform)' == 'x64'">
<ItemGroup>
<Reference Include="CefSharp">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="CefSharp.Core">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x64\CefSharp.Core.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</When>
<!-- x86, Win32 and AnyCPU -->
<Otherwise>
<ItemGroup>
<Reference Include="CefSharp">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="CefSharp.Core">
<HintPath>$(MSBuildThisFileDirectory)..\CefSharp\x86\CefSharp.Core.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Otherwise>
</Choose>
</Project>
... View more
Jun 11, 2019
04:09 AM
I'm currently enhancing our application with a built in Cefsharp-Browser. CefSharp is included via NuGet and comes with a bunch of files put into the project output folder in VS 2017. I added the projects primary output and the locally copied files to my InstallShield Setup project, but not all files from CefSharp appear in the msi. On that's includes is cefsharp.core.dll. On that' s missing is CefSharp.BrowserSubprocess.exe Any hint on how to get all the necessary files into my mis would be great! Thx, Achim
... View more
Latest posts by achim_muehlber
Subject | Views | Posted |
---|---|---|
1113 | Jun 26, 2019 09:57 AM | |
1191 | Jun 11, 2019 04:09 AM |
Activity Feed
- Posted Re: Installshield 2019 / NuGet / CefSharp on InstallShield Forum. Jun 26, 2019 09:57 AM
- Posted Installshield 2019 / NuGet / CefSharp on InstallShield Forum. Jun 11, 2019 04:09 AM