Delete flash player from solution file
This commit is contained in:
parent
23b58f5257
commit
b6043fc1e1
153 changed files with 554 additions and 2 deletions
31
packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props
vendored
Normal file
31
packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<!--
|
||||
Files are no longer copied as part of this targets file.
|
||||
For projects other than CefSharp define a target to copy the files.
|
||||
Checkout the CefSharp.Common.targets file for an example
|
||||
-->
|
||||
|
||||
<!--
|
||||
Using wildcard matching as per https://stackoverflow.com/a/17252671
|
||||
-->
|
||||
<ItemGroup>
|
||||
<CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CefRedist64CopyResources">
|
||||
<PropertyGroup>
|
||||
<CefRedist64TargetDir Condition="'$(CefRedist64TargetDir)' == ''">$(TargetDir)</CefRedist64TargetDir>
|
||||
</PropertyGroup>
|
||||
<!--
|
||||
Cannot gurantee access to the main CefRedist64 ItemGroup here
|
||||
so we create a duplicate inside our target.
|
||||
https://github.com/dotnet/project-system/issues/4158
|
||||
-->
|
||||
<ItemGroup>
|
||||
<_CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" />
|
||||
</ItemGroup>
|
||||
<Message Importance="high" Text="Copying CEF Redist x64 files from $(MSBuildThisFileDirectory)..\CEF to $(CefRedist64TargetDir)" />
|
||||
<Copy SourceFiles="@(_CefRedist64)" DestinationFiles="@(_CefRedist64->'$(CefRedist64TargetDir)\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
|
||||
</Target>
|
||||
</Project>
|
Reference in a new issue