首页 > 其他分享 >MSBuild

MSBuild

时间:2023-01-06 06:44:05浏览次数:37  
标签:文件 MSBuild 复制 PreserveNewest 目录 资源

项目下的资源文件全部拷贝到运行目录中,连同资源文件的目录结构。
方法1:将资源文件的生成操作设置成 内容 ,复制输出到目录设置成 始终复制 或 如果较新则复制。

<ItemGroup>
  <Content Include="Assets\IPcfg.ini">
    <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  </Content>
  <Content Include="Assets\Snipaste_2022-12-30_19-43-08.png">
    <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  </Content>
</ItemGroup>

这样过于麻烦,可以这样写

<ItemGroup>
  <Content Include="Assets\*">
    <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  </Content>
</ItemGroup>

标签:文件,MSBuild,复制,PreserveNewest,目录,资源
From: https://www.cnblogs.com/LiuwayLi/p/17029339.html

相关文章

  • 解决:MSBuildToolsPaths not specified for the ToolsVersion "14.0" defined at"HKEY
    今天遇到个奇怪的问题,本机电脑安装VS2019和VS2015,和VS2008(因为开发手持项目,必须用此版本) 卸载VS2015后,VS2008打开项目报错  解决办法:删除注册表14.01、win+R输......
  • MSBuild Community Tasks Project
    MSBuild是Microsoft和VisualStudio的新生成平台。​​MSBuild概念​​​ 解释属性、任务、目标和其他MSBuild组件背后的概念。​​​用于排除MSBuild错......
  • MSBuild 命令的简单使用
    MSBuild 命令的简单使用独立观察员2022年7月7日位置在 VS 安装目录下,如:D:MicrosoftVisualStudio2022EnterpriseMSBuildCurrentBin命令MSBuild命令行参考-MS......
  • Jenkins持续集成.NET项目(SVN+MSBuild)
    一、安装Jenkins和MSBuild工具官网下载最新版Jenkins (Jenkins运行需要JDK环境,需要提前配置JDK1.8及以上版本),安装完成后,在浏览器打开http://localhost:8080/(默认端口为8......