My project's sln file is located at C:\ProjectName\, and the API project is located at C:\ProjectName\Project.Api\.
I have a static folder, in which I store some files that are needed for a successful build and launch which is located at this path C:\ProjectName\Project.Api\LaunchFiles\launchFileOne.json. But when I get a build, the bin\debug\net5.0\ folder does not have the LaunchFiles\ directory. In order for me to successfully do a deploy of this app, I need to have the LaunchFiles\ directory deployed under bin\debug\net5.0.
How can I achieve this? I cannot use wwwroot for this purpose since these files need to be private and not open to access. IIS directory browsing will be off, so no problem on that case.
