DLL change path
Moderators: DllAdmin, DLLADMIN ONLY
Re: DLL change path
your relative path there (relative to vcproj folder) i.e. ..\some-framework\lib by appending PATH=%PATH%;$(ProjectDir)\some-framework\lib or prepending to the path PATH=C:\some-framework\lib;%PATH%
-
- Posts: 1
- Joined: 28 Oct 2021, 15:52
Re: DLL change path
I did exactly what you said:
string filename = Path.Combine("Environment.CurrentDirectory", "settings.xml");
Are there any other options or am I still doing something wrong?
string filename = Path.Combine("Environment.CurrentDirectory", "settings.xml");
Are there any other options or am I still doing something wrong?
Re: DLL change path
Try this in
string filename = Path.Combine(Environment.CurrentDirectory, "settings.xml");
string filename = Path.Combine(Environment.CurrentDirectory, "settings.xml");