プレビュー版の情報です。リリース版では異なることがあります。
Windows10 UAPに既存のアプリを変換してみるメモ。2015年3月時点のプレビューではコンテキストメニューから変換できない。
プロジェクトを右クリックしてアンロード。
もっかい右クリックしてEdit **.csproj
TargetPlatformVersion
を変更
<TargetPlatformVersion>10.0.10030.0</TargetPlatformVersion>
ProjectTypeGuids
を変更
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
足りないものを追加
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier> <TargetPlatformMinVersion>10.0.10030.0</TargetPlatformMinVersion>
保存して、右クリックしてプロジェクトを再読み込み。
これでUAPになりました。