I have created a .netstandard nuget package which I am using in Asp.NetCoreWebApi. When I install the nuget packages, some fonts and images that are present in a folder named 'Resources' are downloaded into the .net core project. This is not physically available in the project root, but available as a shortcut link which is denoted by small arrow icon in the solution explorer.
When I build the project, this 'Resources' folder is available in the bin\Debug folder.
Now, when I run the WebApi project, and debug, I am getting an exception which says,
"Cannot find the path \Resources\Fonts."
Why isnt my WebApi searching in the Debug folder?
How to change this ?