c# – csproj根据操作系统复制文件

前端之家收集整理的这篇文章主要介绍了c# – csproj根据操作系统复制文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用.NET Core构建跨平台类库.根据为使用.csproj文件构建C#.NET Core项目的操作系统,我需要将本机库复制到项目的输出目录.例如,对于OS X我想复制.dylib文件,对于 Windows我要复制.DLL文件,对于 Linux我要复制.so文件.

如何使用.csproj ItemGroup中的Condition子句执行此操作?

<ItemGroup>
    <Content Include="libNative.dylib" Condition=" '$(Configuration)|$(Platform)' == 'Debug|OSX' ">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
  </ItemGroup>

$(平台)似乎不起作用.我可以使用不同的变量吗?

解决方法

用于区分Windows和Windows Mac / Linux你可以使用$(os)属性:这为你提供了适用于Windows的Windows_NT和适用于Mac / Linux的UNIX.

为了区分Mac和& Linux,至少在最新版本的MSBuild上,你可以使用RuntimeInformation.IsOSPlatform.

所以,结合起来,你的csproj可以有这样的东西:

<ItemGroup>
    <Content Include="libNative.dll" Condition=" '$(OS)' == 'Windows_NT' ">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="libNative.so" Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="libNative.dylib" Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
</ItemGroup>

据我所知,这应该适用于.Net Core,Mono和.Net Framework的所有最新版本.

在旧版本中,您需要诉诸恶意技巧来区分Mac& Linux的:

对于Linux – > Condition =“’$(OS)’==’Unix’和!$([System.IO.File] :: Exists(‘/usr/lib / libc.dylib’))”

对于Mac – > Condition =“’$(OS)’==’Unix’和$([System.IO.File] :: Exists(‘/usr/lib / libc.dylib’))”

资料来源:

> https://github.com/Microsoft/msbuild/issues/539
> https://github.com/Microsoft/msbuild/issues/2468

原文链接:https://www.f2er.com/csharp/244172.html

猜你在找的C#相关文章