如何确定云WebRole在硬盘上的位置?
在我的 silverlight 应用程序中创建 Azure 项目并将现有服务添加为“在解决方案中添加 Web 角色项目”后,我可以运行托管在云中的 silverlight 应用程序并在本地成功运行。
我想使用 SDK Toolkit 而不是 Visual Studio 从 webrole 创建包。但是 WebRole 的正确路径是什么?
After creating a Azure Project within my silverlight app and adding the existing service as a "Add Web Role Project in Solution" I can run my silverlight app hosted in the Cloud and run it successfully locally.
I would like to use the SDK Toolkit instead of Visual Studio to create a package from the webrole. But what is the correct path to the WebRole?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了创建包,您不需要知道本地角色在哪里运行。您应该只需要服务定义文件和二进制文件/文件。
请参阅 cspack cmdline:
http://msdn.microsoft.com/en- us/library/windowsazure/gg433133.aspx
您还可以使用 msbuild 创建包:
http://msdn.microsoft.com/en-us/library/windowsazure/hh301088 .aspx
另外,这是一个很好的起点:
http://msdn.microsoft.com/en-us/library/windowsazure/gg433055 .aspx
如果我误解了您最终想要实现的目标,请告诉我。
In order to create a package, you shouldn't need to know where your local role runs. You should only need the service definition file and the binaries/files.
See the cspack cmdline:
http://msdn.microsoft.com/en-us/library/windowsazure/gg433133.aspx
You can also use msbuild to create a package:
http://msdn.microsoft.com/en-us/library/windowsazure/hh301088.aspx
Also, this is a good starting point:
http://msdn.microsoft.com/en-us/library/windowsazure/gg433055.aspx
Let me know if I mis-understood what you're trying to ultimately accomplish.