I follow the structure of the project
/build-out/MyApp.dll
/dependencies/ResFile.xml
/src/MyFile.cs
In MyFile.cs I want to open my ResFile.xml , which is located in the / dependencies directory and reads it for some needs. Everything works like a charm in Visual Studio, but when I create a dll and use it with other applications (like an external library), I get an error because it cannot find the dependencies / file ResFile.xml.
So, how can the resorce file be added to the MyApp.dll file?
source share