2

我设置了我的第一个 Azure Cloude 服务以及 Web 角色。当我构建然后发布应用程序时,我只能看到包含所有 dll 的 bin 目录。我没有任何文件夹或 aspx 文件。\ProjectName.CloudService\bin\Debug\ProjectName.CloudService.csx\roles\Web\bin

如何编译其他文件。

4

2 回答 2

2

.aspx 文件是否实际添加到 Visual Studio 项目中?(Visual Studio 只复制它知道的文件。)如果在项目的树视图中看不到它们,请单击顶部显示不属于项目的文件的按钮,然后右键单击并“包含在项目”在您丢失的文件上。

如果这不起作用,您可以考虑前往 Windows Azure 的 MSDN 论坛: http: //social.msdn.microsoft.com/forums/en-us/windowsazure/threads并在那里询问。

于 2009-08-21T21:16:31.627 回答
0

If you look in your Cloud Service project folder, you won't find the aspx files, dlls, etc. The Cloud Service project folder will only contain your configuration files and eventually your packaged Azure deployment files. You'll want to look in bin\Debug\ folder under your Web Role (ASP.NET) project.

于 2009-10-29T21:36:45.727 回答