2

我正在开发一个 Windows 8 应用商店应用项目 (C#)。

应用程序项目文件位于根文件夹中,每个受支持平台的特定文件都放置在其自己的文件夹中:

 ROOT  
  |-- Application.Windows8.csproj  
  |-- Application.OtherPlatform.csproj
  |--
  |-- Windows8
          |-- App.xaml
          |-- Other Win8 related files

我的 Windows8 项目包括 Windows8 文件夹下的所有文件,包括 App.xaml。

尝试使用此结构时,我在构建项目时遇到错误:

应用程序主文件必须命名为 App.xaml

是否可以将 App.xaml 保存在与csproj文件不同的文件夹中?

更新:

我在 MS Connect 上打开了一张票,因为文档从未指定此文件必须位于根文件夹中:http ://connect.microsoft.com/VisualStudio/feedback/details/776168/windows-8- store-app-project-doesnt-compile-if-app-xaml-is-placed-in-a-subfolder

4

1 回答 1

2

由于 Windows Store 应用程序的限制,这是不可能的。

MSDN -> 应用程序类

注意应用程序主文件必须命名为 App.xaml。

普通的 WPF 应用程序没有这样的限制。

于 2013-01-09T17:35:05.247 回答