gpt4 book ai didi

visual-studio-2012 - MSBuild 在任务中引用 DLL

转载 作者:行者123 更新时间:2023-12-04 23:04:25 26 4
gpt4 key购买 nike

我在应该运行 BeforeBuild 的 .csproj 文件中定义了以下内联任务。

<UsingTask TaskName="VersioningTask" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
<ParameterGroup>
<FileName ParameterType="System.String" Required="true" />
<XmlFileName ParameterType="System.String" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System.Xml.dll" />
<Reference Include="System.Xml.Linq.dll"/>
<Using Namespace="System" />
<Using Namespace="System.IO" />
<Using Namespace="System.Linq" />
<Using Namespace="System.Text" />
<Using Namespace="System.Text.RegularExpressions" />
<Using Namespace="System.Xml.Linq" />
<Code Type="Fragment" Language="cs"><![CDATA[
var xDoc = XDocument.Load(XmlFileName);
//...
从 VS2012 构建项目时,出现以下错误:

Could not find reference "System.Xml.dll". If this reference is required by your code, you may get compilation errors.

Could not find reference "System.Xml.Linq.dll". If this reference is required by your code, you may get compilation errors.


如果我删除 XML 内容和两个引用,则构建成功。
我曾尝试使用 DLL (%windir%/assembly) 的完整路径,但没有成功。
非常感谢这里有什么问题的任何想法。

最佳答案

我在引用 System.Xml.Linq 时遇到了同样的问题。切换到编译任务确实可以解决您的解决方案,但要将原始代码实现为内联任务,只需从引用中删除文件扩展名,然后删除内联任务,以便引用根命名空间而不是文件名。

改变这个:

<Reference Include="System.Xml.dll" />
<Reference Include="System.Xml.Linq.dll"/>

阅读:
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq"/>

关于visual-studio-2012 - MSBuild 在任务中引用 DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16182179/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com