假设我以这些方式构建项目。
dotnet publish -r win-x86
dotnet publish -r linux-musl-x64
我的.csproj
文件中是否有一种方法可以根据所选的RID自动包含本机DLL?
<PackageReference Include="MyLibrary.Linux" Version="1.0.0"
Condition="'$(RuntimeIdentifier)'=='linux-x64'" />
<PackageReference Include="MyLibrary.Windows" Version="1.0.0"
Condition="'$(RuntimeIdentifier)'=='win-x64'" />