18

これをコード スニペット マネージャーにインポートしようとしたところ、「選択したスニペット ファイルが無効でした」というエラーが表示されました。これは私の最初のスニペットであり、エラー メッセージはスニペットが有効でない理由を指摘するように設計されていないため、途方に暮れています。

<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>EDI Property</Title>
      <Shortcut>edi</Shortcut>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
    </Header>
    <Snippet>
      <Declarations>
        <Literal>
          <ID>required</ID>
          <ToolTip>required</ToolTip>
          <Default>[Required]
          </Default>
        </Literal>
        <Literal>
          <ID>min</ID>
          <ToolTip>min</ToolTip>
          <Default>1</Default>
        </Literal>
        <Literal>
          <ID>max</ID>
          <ToolTip>max</ToolTip>
          <Default>10</Default>
        </Literal>
        <Literal>
          <ID>position</ID>
          <ToolTip>position</ToolTip>
          <Default>1</Default>
        </Literal>
        <Literal>
          <ID>type</ID>
          <ToolTip>type</ToolTip>
          <Default>string</Default>
        </Literal>
        <Literal>
          <ID>name</ID>
          <ToolTip>name</ToolTip>
          <Default>Property</Default>
        </Literal>
      </Declarations>
      <Code Language="C#">
        <![CDATA[
        $required$[MinLength($min$)]
        [MaxLength($max$)]
        [ElementPosition($position$)]
        public $type$ $name$ { get; set; }
        ]]>
      </Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
4

1 に答える 1

29

最初の行が間違っています

<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"></CodeSnippets>

エンディングを削除</CodeSnippets>

SnippetDesignerによって作成された例と照合しています(推奨)
一部のタグが欠落しているようです

  <Title>MySnippet</Title>
  <Author>Steve</Author>
  <Description>
  </Description>
  <HelpUrl>
  </HelpUrl>

また、私は例を見つけていません

<Code Language="C#">

しかし

<Code Language="CSharp">
于 2012-08-07T14:08:36.223 に答える