Summary
Returns a value indicating whether the project represented by the
specified XML fragment is supported by
NAnt.VSNet.JSharpProject
.
- Assembly
- NAnt
.VSNet .dll - Namespace
- NAnt
.VSNet - Containing Type
- JSharpProject
Syntax
public static bool IsSupported(XmlElement docElement)
Remarks
A project is identified as as J# project, if the XML fragment at least has the following information:
<VisualStudioProject>
<JSHARP
ProductVersion="..."
....
>
...
</JSHARP>
</VisualStudioProject>
Parameters
Name | Type | Description |
---|---|---|
docElement | XmlElement | XML fragment representing the project to check. |
Return Value
Type | Description |
---|---|
bool |
true if NAnt.VSNet.CSharpProject supports
the specified project; otherwise, false .
|