Search code examples
javawindowsazuresdkcspack

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. 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. I've downloaded Windows Azure Tools and seen CsPack.cs up to the following lines

// 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. I know it compresses the project to a zip file but I could use any documentation.


Solution

  • cspack.exe is not open source. It will is packed into the Azure SDK which can be downloaded and installed. 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. The eclipse plugins is using a cspack.exe.jar, which is a commandline wrapper for the original cspack Application. Azure SDK for Mac can be downloaded Azure SDK. Don't know if the Eclipse plugin is capable to work on Mac yet.