2016-04-08 16 views
0

私はC#Projetを使用してAtom.xmlを生成するVisual Studio専用ギャラリーを作成しました。ダウンロードは完全に動作しますが、私がvsixプロジェクトのバージョンを更新すると、atom.xmlビジュアルスタジオは更新を表示しません。Atom XMLフィード非公開ギャラリーfor Visual Studio

Atom.xml更新:

<1.0" encoding="utf-8"?> 
<feed xmlns="http://www.w3.org/2005/Atom"> 
<title type="text" /> 
<id>uuid:bcecded5-97c8-4d24-96f1-7d9e16652433;id=1</id> 
<updated>2016-04-08T00:00:00+02:00</updated> 
    <entry> 
    <id>e2dea93f-86f3-45ce-b7be-290e21066050</id> 
    <title type="text">ItemTemplatesGenerator</title> 
    <summary type="text">It's a class generator to create structure of redondant classes.</summary> 
    <published>2016-02-26T16:06:22.1655958+01:00</published> 
    <updated>2016-04-08T16:34:01.4822941+02:00</updated> 
    <author> 
     <name>NameCompany</name> 
    </author> 
    <category term="Files Generation" /> 
    <content type="application/octet-stream" src="D:\Galerie_VS\ItemTemplatesProject\ItemTemplatesProject.vsix" /> 
    <Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/developer/vsx-syndication-schema/2010"> 
     <id>e2dea93f-86f3-45ce-b7be-290e21066050</id> 
     <Version>1.3</Version> 
     <References /> 
     <Rating xsi:nil="true" /> 
     <RatingCount xsi:nil="true" /> 
     <DownloadCount xsi:nil="true" /> 
    </Vsix> 
    </entry> 
</feed> 

私がチェックしたエントリとVSIXのIDは、VSIXプロジェクトの実際のIDに対応しています。 xmlにバージョン1.3があります Visual Studio doesn't show updates ご存知ですか? おかげ

+0

アプリケーションのバージョンを教えてください。 [拡張機能と更新]ウィンドウの画像を追加できますか?私はあなたの内線を見たい:1。 'インストール済み'、2.オンライン(あなたのギャラリー内)、および3.アップデート。 –

答えて

0

私は私のatom.xmlに私が更新する必要があるものを私に思い出させるためにこのコメントがあります。

<!-- 
    When deploying change 
    <updated> under <feed> 
    <updated> under <entry> 
    <Version> under <Vsix> == be sure to change the version in the source.extension.manifest file in the project 
    --> 
+0

これらのフィールドはすべて最新のものですが、動作しません。 VSはアップデートを表示していません –

+0

私は両方のタグで同じ更新値を使用していますが、それは問題でしょうか? – EliSherer

+0

試しましたが動作しません –

1

私も両方のタグに同じ値を入れる:

<?xml version="1.0" encoding="utf-8"?> 
<feed xmlns="http://www.w3.org/2005/Atom"> 
    <title type="text" /> 
    <id>uuid:bcecded5-97c8-4d24-96f1-7d9e16652433;id=1</id> 
    <updated>2016-06-21T00:00:00+02:00</updated> 
    <entry> 
    <id>e2dea93f-86f3-45ce-b7be-290e21066050</id> 
    <title type="text">ItemTemplatesGenerator</title> 
    <summary type="text">It's a class generator to create structure of redondant classes. Use to create classes faster.</summary> 
    <published>1601-01-01T01:00:00+01:00</published> 
    <updated>2016-06-21T00:00:00+02:00</updated> 
    <author> 
     <name>Compagny name</name> 
    </author> 
    <category term="Files Generation" /> 
    <content type="application/octet-stream" src=".\ItemTemplatesProject\ItemTemplatesProject.vsix" /> 
    <Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/developer/vsx-syndication-schema/2010"> 
     <id>e2dea93f-86f3-45ce-b7be-290e21066050</id> 
     <Version>1.2</Version> 
     <References /> 
     <Rating xsi:nil="true" /> 
     <RatingCount xsi:nil="true" /> 
     <DownloadCount xsi:nil="true" /> 
    </Vsix> 
    </entry> 
</feed> 

をしかし、それはありません働く 2番目のポイント:Visual Studioにはダウンロードボタンが表示され、更新ボタンは表示されませんが、拡張機能は既にインストールされています。 Screenshot Online galery

関連する問題