StrataFrame Forum

How to implement a change to the framework and implement it

http://forum.strataframe.net/Topic5680.aspx

By Greg McGuffey - 1/8/2007

I need to change to the BrowseForm to support a 'static' filter (one that is set in code to allow row level security...this has been discusses a bunch in other topics about the BrowseForm).



My question is, if I go in add this functionality, then compile the SF project, how do I distribute (on my dev machine) it so I can use it in my project? (I'm new to this .NET stuff.)


By StrataFrame Team - 1/8/2007

Any time you modify the source code of the framework within the MicroFour StrataFrame.sln solution and build the solution, the DLLs are automatically moved into the GAC.  So, all you have to do is build the solution and an after build task will take care of the rest. 

It's probably best if you close all of your open Visual Studios other than the one you're using to build the framework.  After that, restart VS and you can be sure that you'll be using the modified DLLs.

By Greg McGuffey - 1/8/2007

Thanks!