2

我尝试使用 nant 通过 msbuild 构建解决方案。问题是解决方案的目录是:

C:\Repositorio\Proyectos Casino\SPPM\Codificación\PokerManager

如您所见,它有一个特殊的字符ó

这是我的构建文件

<?xml version="1.0" encoding="ascii"?>
<project name="Simple" default="copy">
<property name="nantcontrib-dir"
   value="${path::combine(nant::get-base-directory(), '..\..\nantcontrib-0.85')}" overwrite="false" />

<property name="dest-dir"
   value="C:\temp\nant\table\full-release" overwrite="true" />

<property name="remote-dir"
   value="C:\temp\nant\table\full-release" overwrite="true" />


<property name="cleandir"
   value="C:\temp\nant\table" overwrite="false" />



<property name="pm-soldir"
   value ="C:\Repositorio\Proyectos Casino\SPPM\Codificación\PokerManager\PokerManager.sln" />



<loadtasks assembly=
    "${path::combine(nantcontrib-dir,'bin/NAnt.Contrib.Tasks.dll')}" 
 /> 
<target name="build-PokerManager"
        description="Builds all C# code">

<property name="nant.settings.currentframework" value="net-4.0"/>
  <msbuild project="${pm-soldir}">
    <property name="Configuration"
              value="release" />
    <property name="OutputPath" value="${dest-dir}"/>

  </msbuild>
</target>


<target name="copy" depends="build-PokerManager">
     <copy todir="${remote-dir}">
    <fileset basedir="${dest-dir}">
        <include name="**/*" />
    </fileset>
</copy>
    </target>



</project>

当我运行它时,我得到

构建扑克管理器:

BUILD FAILED

C:\Juan Pablo\Release Maker\ForTablet\NAnt\table-releases.build(30,4):
'C:\Repositorio\Proyectos Casino\SPPM\Codifica
ci?n\PokerManager\PokerManager.sln' is not a valid value for attribute 'project'
 of <msbuild ... />.
    not valid characters in path..

Total time: 0.1 seconds.

我尝试过使用 utf-8 和 unicode,但它没有用

提前致谢

4

2 回答 2

1

UTF-8 编码应该可以工作,但您的系统中可能有些东西不喜欢处理它?

在没有 UTF-8 的情况下,您是否尝试过实体编码?

ó字符将编码为 XML 实体代码&#211;。无论字符编码是什么,这都应该在您的 XML 中工作。

(但不要只用字符串替换那个字符——使用适当的实体编码函数,这样你就可以确保捕捉到你现在或将来潜伏的任何其他杂散字符)

于 2011-08-16T19:18:27.757 回答
1

我认为 Spudley 走在正确的轨道上。不<?xml version="1.0" encoding="ascii"?>应该<?xml version="1.0" encoding="UTF-8"?>。Ascii 在处理 Unicode 字符时表现不佳……

于 2011-08-16T19:32:11.113 回答