私は Windows ストア アプリを作成していますが、Microsoft のコードを含む "Common" フォルダーの生成を抑制することができるかどうかを知りたいのですが、これは必要ありません。
何か案は?
乾杯
私は Windows ストア アプリを作成していますが、Microsoft のコードを含む "Common" フォルダーの生成を抑制することができるかどうかを知りたいのですが、これは必要ありません。
何か案は?
乾杯
Common には、App.xaml ごとに次の StandardStyles.xaml が含まれています。
<!--
Styles that define common aspects of the platform look and feel
Required by Visual Studio project and item templates
-->
<ResourceDictionary Source="Common/StandardStyles.xaml"/>
および StandardStyles.xaml で:
<!--
This file contains XAML styles that simplify application development.
These are not merely convenient, but are required by most Visual Studio project and item templates.
Removing, renaming, or otherwise modifying the content of these files may result in a project that
does not build, or that will not build once additional pages are added. If variations on these
styles are desired it is recommended that you copy the content under a new name and modify your
private copy.
-->
つまり、コード生成のために T4 テンプレート (または使用されているメカニズム) をハッキングするよりも単純で脆弱ではありません。