views:

324

answers:

3

Hi,

Got an annoying problem here. I've got an NHibernate/Forms application I'm working through SVN. I made some of my own controls, but when I drag and drop those (or view some form editors where I have already dragged and dropped) onto some of my other controls, Visual studio decides it needs to execute some of the code I wrote, including the part that looks for hibernate.cfg.xml.

I have no idea why this is, but (sometimes!) when it executes the code during my form load or drag and drop it switches the current directory to C:\program files\vs 9.0\common7\ide, and then nhibernate throws an exception that it can't find hibernate.cfg.xml, because I'm searching for that in a relative path.

Now, I don't want to hard code the location of hibernate.cfg.xml, or just copy hibernate.cfg.xml to the ide directory (which will work). I want a solution that gets the solutions directory while the current directory is common7\ide. Something that will let someone view my forms in the designer on a fresh checkout to an arbitrary directory on an arbitrary machine. And no, I'm not about to load the controls in code. I have so many controls within controls that it is a nightmare to line everything up without it.

I tried a pre build event that made a file that has the solution directory in it, but of course how can I find that from common7\ide? All the projects files need to be in the solution directory because of svn.

Thanks for your help guys, I've already spent a few hours fiddling with this in vain.

UPDATE: I still don't have a solution to this problem. For every developer working on this program, I'm hard coding their solution directories in code in a a big if else construct. It's so ugly, but it works!

+1  A: 

Update: Unfortunately, i don't know how of a way to get your solution folder at design time. So, technically, I am not answering your question, just offering a potential workaround.

You can check if your control is in DesignMode and if it is, you can use Assembly.GetExecutingAssembly() to get the Assembly for your control and determine the location it was loaded from.

Note that there are some caveats with the DesignTime property value, namely if your designing your control or if you are designing a Form that contains your control, it'll return properly true, but if you are designing a form that contains a control that contains your control, it'll retun false.

You might want to skip the whole DesignTime check because of this and always look for the NHibernate config in the base path of your assembly, if your standard way to find that config file fails.

Franci Penov
I'll look into this, thanks!
IsaacB
'C:\Users\Administrator\AppData\Local\Microsoft\VisualStudio\9.0\ProjectAssemblies\raa4j4oa01\dllname.dll'This is what I'm getting from Assembly.LocationUnless there's an assembly method that gets the original dll location? Do you know of one?
IsaacB
Argh. So VS creates a temporary assembly with your control. :-( Unfortunately, I am not sure how to work around this particular problem.
Franci Penov
Thanks for your help anyhow! I appreciate you spending the time.
IsaacB
A: 

It sounds like you just need to code a better path to your configuration file.

If you do something like this:

configPath =  Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "\\PathToCFG");

you should not be messed up when Windows changes the current directory on you.

Edit: You may be running into an issue with the Visual Studio hosting process. Can you disable this? There is a check box under project properties \ debug.

Scott P
This does not work, it just gives meC:\program files\vs9\common7\ide\PathToCFGI tried this from the NHibernate faq too.
IsaacB
I added a tip to disable the hosting process. Maybe this will provide you a workaround?
Scott P
I'll look into it.
IsaacB
No, disabling the hosting process didn't work.
IsaacB
+1  A: 

This is probably coming a little bit late, but I've found a solution at http://www.tek-tips.com/viewthread.cfm?qid=1226891&page=164. Since I am using Visual Studio 2010, I made a few minor changes. You have to reference the EnvDTE and EnvDTE100 (EnvDTE90 for VS2008),

string solutionDirectory = ((EnvDTE.DTE)System.Runtime
                                              .InteropServices
                                              .Marshal
                                              .GetActiveObject("VisualStudio.DTE.10.0"))
                                   .Solution
                                   .FullName;
solutionDirectory = System.IO.Path.GetDirectoryName(solutionDirectory);

Of course I used VisualStudio.DTE.10.0, you should probably use VisualStudio.DTE.9.0.

Good luck!

Anh-Kiet Ngo
This does find the solution directory alright, but my problem is a little more specific. Sometime during the loading of the form designer, the current directory changes to program files\common7\ide. I need code that finds the original solution directory during this time, and this code doesn't do it. It does work otherwise, though!
IsaacB
Is it possible for you to set this solution directory inside of a static variable before you get into the form designer? App load -> set directory -> form designer -> pull from static variable. Or would this be too much of a hack?
Anh-Kiet Ngo
Oh I didn't think of this! I"m not sure if it ever does go to the regular solution directory even before common7/ide, but if it does, then this wouldn't be a hack, it would be a solution!I'll check it out.
IsaacB
Alas, that didn't work either. I tried to get the solution directory on the first program line, too :( Good idea, though!
IsaacB