码迷,mamicode.com
首页 > 其他好文 > 详细

工程文件csproj使用编译条件指定属性

时间:2019-03-28 09:23:30      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:class   cond   tput   发布   mgr   condition   net   prope   nta   

csproj工程文件中有很多xml格式的属性,比如PropertyGroup、ItemGroup,某些属性操作默认是全部的或者是当前编译条件的而已,当我们想指定某些属性只在某个编译条件下发生时就可以通过以下xml属性来指定:

Condition="‘$(Configuration)|$(Platform)‘==‘Debug|AnyCPU‘" 或者 Condition=" ‘$(Configuration)‘ == ‘Debug‘ "

例如,Release和Debug都附带有xml注释文档,则这样解决:

  <PropertyGroup Condition="‘$(Configuration)|$(Platform)‘==‘Release|AnyCPU‘">
    <DocumentationFile>bin\Release\netstandard2.0\XXXX.xml</DocumentationFile>
  </PropertyGroup>

  <PropertyGroup Condition="‘$(Configuration)|$(Platform)‘==‘Debug|AnyCPU‘">
    <DocumentationFile>bin\Debug\netstandard2.0\XXXX.xml</DocumentationFile>
  </PropertyGroup>

再例如,你Debug运行需要包含项目文件,即“复制到输出目录”为“如果较新则复制”/“始终复制”,但是Release或发布到生产环境时又不希望包含进去(不包含狗血、乌龙的迭代事件就少了),可以这样做:

<ItemGroup Condition="‘$(Configuration)|$(Platform)‘==‘Debug|AnyCPU‘">
    <None Update="Assets\Xxxx.key">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
</ItemGroup>

 

工程文件csproj使用编译条件指定属性

标签:class   cond   tput   发布   mgr   condition   net   prope   nta   

原文地址:https://www.cnblogs.com/huangsheng/p/10612698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!