1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Visual Studio 2017で自作プロジェクトテンプレートを読み込んだらファイルが消えた

Last updated at Posted at 2018-01-18

事の発端

1. テンプレート作ったぞー!
2. インポートしてみるぞー!
3. あれ・・・ファイルが表示されない・・・

結論

.vstemplateに下記コードを追加したら解決

XXX.vstemplate
  <TemplateData>
  ・・・
    <CreateInPlace>true</CreateInPlace>
  ・・・
  <TemplateData>

詳しく

msdnの記事に従って
1.プロジェクトをつくる(今回はCloss-platform Appをもとに作成)
1.png

Blank-App(Xamarin.Forms - .Net Standard)
2.png

できた
3.PNG

2.テンプレートの出力
4.png

5.png
うんできた!
6.png

3.さあ読み込むぞ
8.png

あれ?ファイルがない!!!
9.PNG

というわけで出力されたテンプレートファイル内の.vsprojectに下記コードを追加して保存

XXX.vstemplate
  <TemplateData>
  ・・・
    <CreateInPlace>true</CreateInPlace>
  ・・・
  <TemplateData>

4.再度テンプレートからプロジェクトを作ると・・・
10.png

ファイルが出てきた!!!

CreateInPlace

詳細はmsdnドキュメントで。

ここで結構な時間を費やしてしまったため、備忘録として投稿させていただきました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?