I have looked up this question across the site, like this link.
I am currently using NodaTime.dll for my DateTime needs, and I am interested in keep using this. However, if the user I distribute my app to doesn't have NodaTime.dll in either their GAC or /Libraries/ folder, my app would fail to run (no necessary dependencies). I was contemplating distributing NodaTime.dll with my app, but it doesn't seem painless and/or intuitive enough on my user's end.
I was thinking, maybe if there is a way, on compile, I could consume the .dll, and my app could reference NodaTime.dll within itself.
I have so far compiled my application by also adding NodaTime.dll as an existing file, but doing so does not work as intended -- my app still references the NodaTime.dll in my /Libraries/ folder.
