説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

chromiumembeddedframework.runtime.win-x64.props 1.6KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <!--
  4. Files are no longer copied as part of this targets file.
  5. For projects other than CefSharp define a target to copy the files.
  6. Checkout the CefSharp.Common.targets file for an example
  7. -->
  8. <ItemGroup>
  9. <CefRuntimeWin64 Include="$(MSBuildThisFileDirectory)..\runtimes\win-x64\native\*.*" />
  10. <_CefRuntimeWin64Additional Include="$(MSBuildThisFileDirectory)..\CEF\win-x64\**\*.*" />
  11. <CefRedist64 Include="@(CefRuntimeWin64)" />
  12. <CefRedist64 Include="@(_CefRuntimeWin64Additional)" />
  13. </ItemGroup>
  14. <Target Name="CefRedist64CopyResources">
  15. <PropertyGroup>
  16. <CefRedist64TargetDir Condition="'$(CefRedist64TargetDir)' == ''">$(TargetDir)</CefRedist64TargetDir>
  17. </PropertyGroup>
  18. <!--
  19. Cannot gurantee access to the main CefRuntimeWin64 ItemGroup here
  20. so we create a duplicate inside our target.
  21. https://github.com/dotnet/project-system/issues/4158
  22. -->
  23. <ItemGroup>
  24. <_CefRuntimeWin64 Include="$(MSBuildThisFileDirectory)..\runtimes\win-x64\native\*.*" />
  25. <_CefRuntimeWin64 Include="$(MSBuildThisFileDirectory)..\CEF\win-x64\**\*.*" />
  26. </ItemGroup>
  27. <Message Importance="high" Text="Copying Chromium Embedded Framework Runtime x64 files from $(MSBuildThisFileDirectory)..\runtimes\win-x64\native to $(CefRedist64TargetDir)" />
  28. <Copy SourceFiles="@(_CefRuntimeWin64)" DestinationFiles="@(_CefRuntimeWin64->'$(CefRedist64TargetDir)\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true" />
  29. </Target>
  30. </Project>