Windows 8 Store プロジェクトwin8_logo_small.png
の設定で「小さいロゴ」を指定しました。Package.appxmanifest
ストア パッケージを作成すると、次の警告が表示されます。
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\AppxPackage\Microsoft.AppXPackage.Targets(1052,9):
warning APPX1621: A mixture of images matching logical name 'win8_logo_small.png' exists
in this project with and without the "scale" or "targetsize" qualifier specified.
For predictable runtime behavior, explicitly specify the scale or target size
in each image asset's file name.
これは単なる警告ですが、イメージ スケール バリアントの名前は自動生成されるため、Microsoft が私に何をしてほしいか知りたいです。
win8_logo_small.scale-80.png
win8_logo_small.scale-100.png
...
win8_logo_small.targetsize-16.png
win8_logo_small.targetsize-32.png
ファイルの名前を次のxxx.targetsize
ように変更xxx.scale-###.png
してプロジェクトに追加すると、Visual Studio は自動的にファイルをxxx.targetsize-##.png
!
これは解決できるものですか?解決が必要ですか、それとも Windows RT パッケージ コンパイラの単なるバグですか?