I an ASP.NET Core application I need to copy some fonts to the output directory. In my project I store these fonts in the directory ProjectFolder/Assets.
In the properties of each font I have set CopyToOutputDirectory to Always.
When Visual Studio build the project, the files are copied to the same directory where project.exe is built. This is the behavior I expect.
But when I build the project using VSTS, the files are copied to a sub-directory named Assets, this is one level below than the exe.
How can I make VSTS copy the files to the same folder than the exe (as Visual Studio does).
Thank you in advance.