如果我直接维护Visual Studio解决方案,则只需将以下部分添加到项目文件中。我的问题是,有没有办法通过预制件轻松做到这一点?完成后,根据要复制的构建配置,有条件地包含最多三个文件。
<ItemGroup>
<ContentWithTargetPath Include="$(SolutionDir)\deps\steam_api.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>steam_api.dll</TargetPath>
</ContentWithTargetPath>
</ItemGroup>