I was curiious to know what type of structures you use for your project references?
Where I work the developers have a shared folder called AssemblyCache (\\MACHINENAME\AssemblyCache) which is mapped to an R:\ via GPO in Windows 2008 AD (tied to the Developers AD group).
Our shared components have post-build events that copy them to so...
I am trying to reference System.Data.SQLite which is located in the application path so that I can package it with the application. I have tried several different ways including:
#1
clr.AddReferenceToFile("System.Data.SQLite.DLL")
#2
clr.AddReferenceToFileAndPath("C:\\Path\\To\\System.Data.SQLite.DLL")
#3
sys.path.append(os.getcwd())
...
yesterday I deployed my website from c:\development\project\ to c:\inetpub\wwwroot\virtualdir\ (same pc). It worked for some time, I could reach the website by going to http://computername/virtualdir/.
But this morning everybody got an error: The system cannot find the path specified.
What is the path being specified that cannot be fou...
I've installed SlimDX but the assembly reference does not come up as a choice in Visual Studio, and I cannot for the life of me find out where SlimDX has installed itself! Any help would be greatly appreciated!
Thank,
Mikey
...