-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cef.redist 3.1650.1562-pre3 NuGet ... currently only with x86 .dll files
Former-commit-id: 2966877b847fd7e40912a80a4fd2d3c13bde2109
- Loading branch information
Showing
3 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Target Name="AfterBuild"> | ||
<Target Name="CefRedistCopyDllPak" BeforeTargets="AfterBuild"> | ||
<ItemGroup> | ||
<CefBinaries Include="$(MSBuildThisFileDirectory)..\CEF\$(Platform)\*.*" /> | ||
<Locales Include="$(MSBuildThisFileDirectory)..\CEF\locales\*.*" /> | ||
<CefSharpBinaries Include="$(MSBuildThisFileDirectory)..\CefSharp\$(Platform)\*.*" /> | ||
<CefPakFiles Include="$(MSBuildThisFileDirectory)..\CEF\*.*" /> | ||
<CefLocales Include="$(MSBuildThisFileDirectory)..\CEF\locales\*.*" /> | ||
</ItemGroup> | ||
<Message Importance="high" Text="Copying source files from $(MSBuildThisFileDirectory)..\CEF\$(Platform) to $(TargetDir)" /> | ||
<Message Importance="high" Text="-- cef.redist.targets at $(MSBuildThisFileDirectory)" /> | ||
|
||
<Message Importance="high" Text="Copying CEF .dll files from $(MSBuildThisFileDirectory)..\CEF\$(Platform) to $(TargetDir)" /> | ||
<Copy SourceFiles="@(CefBinaries)" DestinationFolder="$(TargetDir)" /> | ||
<Message Importance="high" Text="Copying locales from $(MSBuildThisFileDirectory)..\CEF\locales to $(TargetDir)\locales" /> | ||
<Copy SourceFiles="@(PakResources)" DestinationFolder="$(TargetDir)" /> | ||
<Message Importance="high" Text="Copying .pak files from $(MSBuildThisFileDirectory)..\CEF to $(TargetDir)" /> | ||
<Copy SourceFiles="@(Locales)" DestinationFolder="$(TargetDir)\locales" /> | ||
<Message Importance="high" Text="Copying source files from $(MSBuildThisFileDirectory)..\CefSharp\$(Platform) to $(TargetDir)" /> | ||
<Copy SourceFiles="@(CefSharpBinaries)" DestinationFolder="$(TargetDir)" /> | ||
|
||
<Message Importance="high" Text="Copying CEF .pak files from $(MSBuildThisFileDirectory)..\CEF to $(TargetDir)" /> | ||
<Copy SourceFiles="@(CefPakFiles)" DestinationFolder="$(TargetDir)" /> | ||
|
||
<Message Importance="high" Text="Copying CEF locales from $(MSBuildThisFileDirectory)..\CEF\locales to $(TargetDir)\locales" /> | ||
<Copy SourceFiles="@(CefLocales)" DestinationFolder="$(TargetDir)\locales" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
set version=3.1650.1562-pre2 | ||
set version=3.1650.1562-pre3 | ||
NuGet pack cef.redist.nuspec -NoPackageAnalysis -Version %version% | ||
NuGet pack cef.redist.x86.nuspec -NoPackageAnalysis -Version %version% | ||
NuGet pack cef.redist.x64.nuspec -NoPackageAnalysis -Version %version% | ||
NuGet pack cef.sdk.nuspec -NoPackageAnalysis -Version %version% |