Home > Software engineering >  Where is the .ebextensions folder in .NET for AWS elastic beanstalk Linux
Where is the .ebextensions folder in .NET for AWS elastic beanstalk Linux

Time:10-03

I am trying to upload a .NET application using visual studio 2019. This uploads, however, I need to make config changes in the .ebextensions folder. This is not showing up in visual studio. Where is the .ebextensions folder in my .NET application?

enter image description here

In Windows explorer enter image description here

CodePudding user response:

It would be in the root of your project. I don't think it's created by default, so if it isn't there you need to create it. See the details of adding it to a .NET project here.

CodePudding user response:

If you are looking for it via the Visual Studio Solutions Explorer, it probably won't show up unless you enable Show All Files.

You can find this option here: Show All Files button in VS 2019 sidebar

  • Related