Ad
Referencing Private .net Assemblies In A Subfolder
In Visual Studio 2008 I can add a project reference and set Copy Local property to true. As result the referenced assembly will be copied to the same folder the main assembly is build to.
But what if I want to have all referenced assemblies in a subfolder near the main assembly?
Something like this:
..
myApp.exe
Libs
myLib1.dll
myLib2.dll
Data
myDatabase.sqlite
PS: This is the smart device application build against .NET Compact Framework 3.5
Ad
Answer
For other versions of the framework, this is what you would do:
http://msdn.microsoft.com/en-us/library/twy1dw1e.aspx
For compact, I suggest reading this:
http://blogs.msdn.com/stevenpr/archive/2005/01/05/347353.aspx
HTH
Colby Africa
Ad
source: stackoverflow.com
Related Questions
- → Function Undefined in Axios promise
- → React formatting dates with momentjs server side
- → Using ReactJs, How do I update my form fields when my parent object sent in from props changes?
- → Visual Studio 2012 Express: Browser returning 500 status trying to download jsx file
- → AngularJS directive: "templateUrl" doesn't work while "template" works
- → how to add cannonical tag for ASPX .NET page
- → Javascript Paypal slider string suffix
- → JavaScript in MVC 5 not being read?
- → Selecting an element by its attribute when it has a colon in its name
- → Function works for NON dynamically loaded images
- → URL routing requires /Home/Page?page=1 instead of /Home/Page/1
- → There are "gaps" between rows in my masonry cards
- → creating sef links and changing plus sign (+) with dash (-)
Ad