- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们的 TFS 构建 Controller 将同一解决方案中的所有项目构建到同一共享 bin 目录中,因为 TFS 构建工作流程将 OutDir
参数传递给负责构建解决方案的 msbuild 命令。
我有一个项目,我想抑制此行为并让它构建到标准相对 bin\Debug
或 bin\Release
目录中。
但我找不到该怎么做。事实上,请观察以下简单的 msbuild 脚本:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutDir>$(MSBuildThisFileDirectory)bin\$(Configuration)</OutDir>
</PropertyGroup>
<Target Name="Build">
<Message Text="$(OutDir)" Importance="High"/>
</Target>
</Project>
现在,我正在运行它:
PS C:\> msbuild .\1.csproj /p:OutDir=XoXo /nologo
Build started 11/13/2015 9:50:57 PM.
Project "C:\1.csproj" on node 1 (default targets).
Build:
XoXo
Done Building Project "C:\1.csproj" (default targets).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:00.03
PS C:\>
注意它显示XoXo,忽略我从内部覆盖它的尝试。
那么,这可能吗?
最佳答案
这是一个有点经典的 RTFM 情况,但仍然很有趣。请参阅 MSBuild Properties 的文档特别是 Global Properties 的部分以及如何使属性不被前者覆盖:
MSBuild lets you set properties on the command line by using the /property (or /p) switch. These global property values override property values that are set in the project file. This includes environment properties, but does not include reserved properties, which cannot be changed.
Global properties can also be set or modified for child projects in a multi-project build by using the Properties attribute of the MSBuild task
If you specify a property by using the TreatAsLocalProperty attribute in a project tag, that global property value doesn't override the property value that's set in the project file.
它还链接到 Project元素文档基本上重复相同的信息,并表示属性中的多个属性应该用分号分隔。
简而言之,代码适用于您的案例:
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
TreatAsLocalProperty="OutDir">
请注意,这将完全禁止从项目外部更改 OutDir。更可配置的替代解决方案可能是拥有一个小型 stub 项目,您可以使用 TFS 构建该项目而不是主项目。在该项目中,您可以决定是否将 OutDir 传递到实际项目或覆盖它,例如通过导入可能定义或未定义的文件或基于环境变量等来获取值。这给出了基本思想:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Try import if this file exists, it should supply the value for CustomOutDir-->
<Import Project="$(MSBuildThisFileDirectory)customoutdir.props" Condition="Exists('$(MSBuildThisFileDirectory)customoutdir.props')"/>
<PropertyGroup>
<!-- Default value for CustomOutDir if not set elsewhere -->
<CustomOutDir Condition="'$(CustomOutDir)' == ''">$(MSBuildThisFileDirectory)bin\$(Configuration)</CustomOutDir>
<!-- ApplyCustomOutDir specifies whether or not to apply CustomOutDir -->
<ActualOutDir Condition="'$(ApplyCustomOutDir)' == 'True'">$(CustomOutDir)</ActualOutDir>
<ActualOutDir Condition="'$(ApplyCustomOutDir)' != 'True'">$(OutDir)</ActualOutDir>
</PropertyGroup>
<Target Name="Build">
<MSBuild Projects="$(MasterProject)" Properties="OutDir=$(ActualOutDir)"/>
</Target>
</Project>
并且应该通过传递 neede 属性来调用,例如
msbuild stub.targets /p:MasterProject=/path/to/main.vcxproj;ApplyCustomOutDir=True
(我从未使用过TFS,因此传递属性的方式可能会有所不同)
关于msbuild - 如何忽略相应 csproj 文件中命令行上给出的属性值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33704842/
您可以向 .csproj 文件添加注释吗?如果是这样,最好的方法是什么? 最佳答案 注释像往常一样写在 XML 文件中: How to: Write a Simple MSBuild Project
似乎如果我有一个如下所示的 csproj 文件,我最终会定义 BAR 而未定义 FOO。 FOO BAR 是否有“定义附加常量”的语法,以便我可以使用它并最终定义 FOO 和 BAR?
在“旧”世界中,我会定义一个 AssemblyProductAttribute和 AssemblyTrademarkAttribute这将在 Windows 资源管理器的文件属性中显示为“产品名称”和
在“旧”世界中,我会定义一个 AssemblyProductAttribute和 AssemblyTrademarkAttribute这将在 Windows 资源管理器的文件属性中显示为“产品名称”和
我想简化我的 PCL csproj,但我似乎找不到合适的 TargetFrameworks.. 这是我的旧 csproj: Debug AnyCPU {D035A2E6-EF
我正在寻找一种将 .csproj 文件“导入”到另一个 .csproj 文件的方法。 例如下面的场景: 主.csproj: SubMain.csproj 现在最好能以某种方式从我的“SubM
我正在尝试深入研究 VBPROJ 文件的 XML。有谁知道我在哪里可以找到解释结构和属性用法的好资源? 最佳答案 csproj 或 vbproj 文件只不过是 msbuild xml 文件,它们会被
我想创建一个仅包含nuspec文件中指定内容的nuget程序包,但仍从csproj获取版本。为了使用 token ,我必须像这样打包: nuget pack MyProj.csproj 但是当我这样做
我们正在尝试在 windows 1809 上构建一个 iot edge 模块。我们的项目文件夹层次结构如下: ----BaseDir |---ClassLibrary1 |---Cla
我想在 csproj 文件中添加一个带有条件的属性。 条件是:如果网络位置可用,我的属性应具有该值,否则为另一个位置。 有什么提示吗? 谢谢,霍雷亚 最佳答案 您也许可以使用静态方法 System.N
有人可以指出我在 Visual Studio 中的 csproj/vbproj 文件中使用的表达式语言的语法的引用吗?我一直在看到如下用法: ......我试图理解'.Identity'位。 最佳
有没有什么办法可以在 VS 构建时更改输出程序集文件名? 我有两个(四个,包括 Debug/Release 分支)配置,它们的功能有点不同,应该以不同的方式使用,但应该保留在同一个目录中。所以,最好的
我正在学习 C#。 (对不起,我不是英语母语者。) 我正在 dotnet 核心中创建多平台库。 我想用一种方法切换平台。 我尝试了 RuntimeInformation.IsOSPlatform()
在 .csproj 文件中,您可以使用 $(SolutionDir) 等变量。可以通过这种方式找到图书馆。 如何通过 msbuild 构建 .csproj(不提供解决方案路径)?我看不出这种行为有任何
我正在使用 .NET Core 构建跨平台类库。根据为使用 .csproj 文件构建 C# .NET Core 项目的操作系统,我需要将 native 库复制到项目的输出目录。例如,对于 OS X,我
通常 C# 项目有一个与之相关联的 .csproj 文件。那个文件是做什么用的?它包含哪些数据? 最佳答案 基本上,.csproj 文件包含项目中的文件列表,以及对系统程序集的引用等。 有一大堆设置
我正在为 SDK 分发打包示例代码。在分发中,从代码到 SDK 程序集的相对路径与构建机器不同。例如: 分布 csharp/bin/assembly.dll example/ex1/ex1.cspro
我想在整个团队的解决方案中以编程方式管理 VS2008 csproj 文件。我们偶尔会遇到合并问题(在 Hg 中),这仅仅是因为两个开发人员在一个项目中添加了不同的新文件,但它们最终位于 csproj
在 Visual Studio csproj 中,要编译的文件是这样引用的: 在我看来顺序是随机的(至少我看不出顺序原则)。 有几次在修复合并冲突时,我错误地添加了一
我可以在 msbuild 命令中使用任何变量或属性从 .csproj 获取所有项目引用吗? NSwag.exe webapi2swagger /assembly:@(GimmeAllReferenci
我是一名优秀的程序员,十分优秀!