ItaStartPage

無料

痛IDE extension to the Visual Studio StartPage.

Visual Studio
2010
ダウンロード (4,394)
2010/10/31
1.6
E-mail del.icio.us Digg Facebook Reddit Slashdot Twitter Windows Live Windows Live Spaces
お気に入りに追加
説明
レビュー (2)
Q and A (1)
サインインしてレビューを書く
並べ替え:

報告者 Takeshi Shinmura | 5月 08 2010

報告者 はるにゃ | 5月 04 2010

デフォルトのXAMLが存在しないので、サンプルを探してました

サインインしてディスカッションを開始する


  • Use VSIX to deploy your start page
    6 Posts | 最後の投稿 5月 09, 2010
    • Hi, this looks pretty cool but you should consider using VSIX to deploy your start page.  I was hesistant about downloading the exe but eventually tried it.  The batch file also requires admin priviledges to run on Vista so it makes acquiring this extension pretty difficult.  Try building a VSIX to deploy this and you'll probably get a lot more people trying it out.
      For more info on start pages, check out: http://msdn.microsoft.com/en-us/library/aa290347(VS.71).aspx
    • Sorry, but vsix install is not Success. Im feedback to Connect.
      https://connect.microsoft.com/VisualStudioJapan/feedback/ViewFeedback.aspx?FeedbackID=513211
    • I don't speak Japanese so I can't translate the message in the connect bug.  What issues are you running into packaging the start page as a VSIX?
    • If VSIX package (into startpage.xaml and dll) running, dont 'MD' StartPageAssemblies folder and not copy dll ,and startpage.xaml dont copy to %USERPROFILE%\Documents\Visual Studio 2010\StartPages.
      
    • Creating a start page with a custom assembly and packaging it in a VSIX:
      
      1.	In the extension.vsixmanifest, add this to the content section:
      
        <Content>
          <CustomExtension Type="StartPage">Your_StartPage.xaml</CustomExtension>
          <Assembly AssemblyName="StartPageControl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8e34e5ca918aaa3a">StartPageControl.dll</Assembly>
        </Content>
      
      Make sure the xaml page and the dll are in the root of your vsix.
      Make sure the AssemblyName is the fully qualified name of your assembly.
      
      2.	Add a pkgdef file to your vsix.  Call it YourFile.pkgdef
      
      In the pkgdef file, add this entry to define a binding path
      
      [$RootKey$\BindingPaths\{99500cb5-9f45-44ee-920e-a8cf0aedce5c}]
      "$PackageFolder$"=""
      
    • Ver1.5 is VSIX deploy, thank you, Quan To.