我已经实现了生成Xml序列化程序集作为构建的一部分的公认答案中提到的更改
<Target Name="AfterBuild" DependsOnTargets="AssignTargetPaths;Compile;ResolveKeySource" Inputs="$(MSBuildAllProjects);@(IntermediateAssembly)" Outputs="$(OutputPath)$(_SGenDllName)">
<!-- Delete the file because I can't figure out how to force the SGen task. -->
<Delete Files="$(TargetDir)$(TargetName).XmlSerializers.dll" ContinueOnError="true" />
<SGen BuildAssemblyName="$(TargetFileName)" BuildAssemblyPath="$(OutputPath)" References="@(ReferencePath)" ShouldGenerateSerializer="true" UseProxyTypes="false" KeyContainer="$(KeyContainerName)" KeyFile="$(KeyOriginatorFile)" DelaySign="$(DelaySign)" ToolPath="$(SGenToolPath)" Platform="$(Platform)">
<Output TaskParameter="SerializationAssembly" ItemName="SerializationAssembly" />
</SGen>
</Target>
生成exe项目时的错误信息:
错误14反映类型' mynamspace . myassembly . myform . microcontact '的错误。C: 开发 src myClient myClient SGEN myClient
这里是MicroContact的代码(这里没有什么独特的):
Public Class MicroContact
Implements IComparable
Private _id As Long
Private _name As String
Public Property Id() As Long
Get
Return _id
End Get
Set(ByVal value As Long)
_id = value
End Set
End Property
Public Property NoTitleFullName() As String
Get
Return _name
End Get
Set(ByVal value As String)
_name = value
End Set
End Property
Public Sub New()
_name = ""
End Sub
Public Sub New(ByVal id As Long, ByVal name As String)
_id = id
_name = name
End Sub
Public Function CompareTo(ByVal obj As Object) As Integer Implements System.IComparable.CompareTo
Return String.Compare(Me.NoTitleFullName, CType(obj, MicroContact).NoTitleFullName, True)
End Function
End Class
是否有任何方法我可以得到一个构建错误的内部异常?
Marc Gravell指出,在bin目录下运行sgen /v MyClient.exe
可以获得更多信息。
问题是由多个类共享相同的名称引起的,在这种情况下,两个表单都实现了相同的MicroContact类,因为其中一个是从另一个复制的。
正如前面的回答所提到的,问题通常是重复的类型名称。然而,解决这个问题的方法是多种多样的:
- 通过
[XmlType("NewTypeName")]
更改复制类型的名称或更改其xml序列化名称 - 为序列化类型声明
[System.Xml.Serialization.XmlType(AnonymousType = true)]
属性 - 为一个重复类型定义一个名称空间—例如,如果它用于XML元素类型,则使用
[XmlElement(Namespace="http://example.com")]
如果你用另一种方法解决了这个问题,我想知道一下。