gpt4 book ai didi

c# - msbuild/csproj 执行任务问题

转载 作者:太空宇宙 更新时间:2023-11-03 14:26:13 24 4
gpt4 key购买 nike

我在使用 msbuild 构建服务器 (2003) 时遇到问题。我已将问题缩小到 csproj 文件中的 exec 任务,我已将其提取到一个非常简单的 csproj(如下)中,但仍然没有任何乐趣,请参阅“C:\Documents”错误。这一切在我的本地机器上都没有问题。

我认为环境变量存在一些问题,但我想不通。有什么建议吗?

输入


<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<Target Name="BeforeBuild">
<Exec Command="echo hello world" />
</Target>

</Project>

MSBuild 输出

 D:\cc.net working\source\WebBase>msbuild ExecIssue.csprojMicrosoft (R) Build Engine Version 4.0.30319.1[Microsoft .NET Framework, Version 4.0.30319.1]Copyright (C) Microsoft Corporation 2007. All rights reserved.Build started 11/10/2010 12:37:50.Project "D:\cc.net working\source\WebBase\ExecIssue.csproj" on node 1 (default targets).BeforeBuild:  echo hello world'C:\Documents' is not recognized as an internal or external command,  operable program or batch file.D:\cc.net working\source\WebBase\ExecIssue.csproj(5,4): error MSB3073: The command "echo hello world" exited with code 1.Done Building Project "D:\cc.net working\source\WebBase\ExecIssue.csproj" (default targets) -- FAILED.Build FAILED."D:\cc.net working\source\WebBase\ExecIssue.csproj" (default target) (1) ->(BeforeBuild target) ->  D:\cc.net working\source\WebBase\ExecIssue.csproj(5,4): error MSB3073: The command "echo hello world" exited with code 1.    0 Warning(s)    1 Error(s)Time Elapsed 00:00:00.17

最佳答案

我会在诊断模式下运行它并将其发送到一个文件,然后在该文件中搜索 C:\Documents。也许它在某些路径参数中使用了“C:\Documents and settings\”而没有引用它。诊断模式将打印出大部分(如果不是全部)正在使用的属性、项目组、环境变量等。希望它将打印出 exec 任务正在使用的所有属性,因为您只提供命令参数,它正在为其余部分使用一些默认值。

msbuild ExecIssue.csproj /v:Diagnostic > buildout.txt

关于c# - msbuild/csproj 执行任务问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3905835/

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