0

I am setting up a HumbleObject Composition root project. So I need to place two projects in the same folder and not separate project folders. I have renamed each of the packages.config to packages.MyProjectName.config. This works fine.

With VS2015, we have ApplicationInsights and now I am not clear what to do with ApplicationInsights.config file. I am not clear what is the purpose of the ApplicationInsights, and moreover it has got scripts folder also associated with it.

My question is how to manage two projects with applicationInsights within the same folder? I will try renaming ApplicationInsights.config to ApplicationInsights.MyProjectName.config. Can any one please throw some light as to how this impact the solution or application insights in general?

Community
  • 1
  • 1
VivekDev
  • 20,868
  • 27
  • 132
  • 202

1 Answers1

0

ApplicationInsights is expecting the file to be named ApplicationInsights.config but it is reading it from the output directly. So you can customize your build script to store the file in your project with any name you like as long as it is copied as ApplicationInsights.config to the output directory.

Alex Bulankou
  • 2,396
  • 19
  • 21