Problem

既存のクラスライブラリにカスタムコントロール (WPF) テンプレートを追加しようと思ったのですが、そもそもテンプレートが表示されない問題に遭遇。

Solution

Stackoverflowで同じ問題に遭遇した人がいました。

プロジェクトファイルを編集しろ、ということでした。
プロジェクトファイルに

1
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>

下記の一文を追加しろとのこと。
追加する場所は、FileAlignment 付近で良いです。下記一例。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6BE5C18C-A305-4CAC-8130-AAD1A3C48BD2}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CAMUI</RootNamespace>
<AssemblyName>CAMUI</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetPlatformVersion>8.1</TargetPlatformVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
</PropertyGroup>

追加した後、ソリューションを読み込み直すと無事テンプレートが表示されます。