10

I'm fairly new to Azure but I noticed that Visual Studio auto-creates the following folders (among others)

...
/<nameOfAzureProject>/bin
/<nameOfAzureProject>/obj
/<nameOfAzureProject>/csx <==
...

Now the bin and obj folders are fairly standard. But I'm not clear about the purpose of the csx folder. Any ideas?

Thomas Owens
  • 79,623
  • 18
  • 192
  • 283
DeepSpace101
  • 1,394
  • 5
  • 14
  • 26
  • 1
    I'm voting to close this question as off-topic because it is about the use and behavior of a specific software development tool. Such questions are better suited to Stack Overflow, however this question is too old to migrate. – Thomas Owens Jan 04 '19 at 11:15

1 Answers1

11

It contains a packaged version of your project. I found a blog entry mentioning it.

Before an Azure package can be deployed to the emulator it must first be packaged. Since v1.4 of the Windows Azure Tools, the csx folder and its contents are no longer generated during compilation... So in order to force the generation of the csx folder we need to specify that the package should be generated for the compute emulator within the Azure project file...

:: Deploying to the Azure Compute Emulator

Now that we have the csx package folder generated after each compilation run we can use the CSRun command-line tool to deploy the folder to the emulator...

gnat
  • 21,442
  • 29
  • 112
  • 288
pritaeas
  • 336
  • 5
  • 15