简体   繁体   English

Windows Azure cspack.exe是开源的吗?

[英]Is Windows Azure cspack.exe open source?

I'm trying to pack my Java Azure project in Mac and I cannot find the source code for cspack.exe. 我试图将我的Java Azure项目打包到Mac中,但找不到cspack.exe的源代码。 So far, I've managed to run Azure Eclipse plugin and successfully created a project but when trying to deploy it cannot run cspack.exe. 到目前为止,我已经成功运行了Azure Eclipse插件并成功创建了一个项目,但是在尝试部署它时却无法运行cspack.exe。 I've downloaded Windows Azure Tools and seen CsPack.cs up to the following lines 我已经下载了Windows Azure Tools,并看到CsPack.cs的以下几行

// Run CsPack to generate the package
ProcessHelper.StartAndWaitForProcess(
  new ProcessStartInfo(Path.Combine(AzureSdkBinDirectory, Resources.CsPackExe),
    args), out standardOutput, out standardError);

And I don't really know if this component it's open source or not. 而且我真的不知道这个组件是否是开源的。 If cspack.exe is proprietary, is there any way to simulate cspack.exe. 如果cspack.exe是专有的,则有什么方法可以模拟cspack.exe。 I know it compresses the project to a zip file but I could use any documentation. 我知道它将项目压缩为zip文件,但是我可以使用任何文档。

cspack.exe is not open source. cspack.exe不是开源的。 It will is packed into the Azure SDK which can be downloaded and installed. 它将打包到可以下载和安装的Azure SDK中。 There is something Open Source like jJack said, but this is only the API which can be used in a Java, .NET or whatever program, to get access to your configurations, mounting a cloud drive or something else. 有一些像jJack所说的开放源代码,但这只是可以在Java,.NET或任何程序中使用的API,可以访问您的配置,安装云驱动器或其他东西。 The eclipse plugins is using a cspack.exe.jar, which is a commandline wrapper for the original cspack Application. eclipse插件使用cspack.exe.jar,这是原始cspack应用程序的命令行包装。 Azure SDK for Mac can be downloaded Azure SDK . 可以下载适用于Mac的Azure SDK Don't know if the Eclipse plugin is capable to work on Mac yet. 不知道Eclipse插件是否能够在Mac上运行。

It looks like WindowsAzure4j is open source so if this is what you are using then you are in luck. 看起来WindowsAzure4j是开源的,因此,如果您正在使用WindowsAzure4j,那么您会很幸运。 I would try downloading This and look for the full CsPack.cs file, maybe you can glean the source of the problem from it? 我会尝试下载此文件并查找完整的CsPack.cs文件,也许您可​​以从中收集问题的根源?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM