Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Now, as for new source code, it sounds as though you have made changes to StrataFrame. Honestly, this is really never a good idea. If there is something at the root level that is an issue, then we should be made aware so that it can make standard distribution. If you are extending the framework, you should create your own assemblies that inherit from StrataFrame. Then you can override, etc. and not have any core issues.
But at any rate, you will want to get the most recent version of source code. You will then build it in debug mode so that you can track any errors that may come up during development more easily. These assemblies should be updated in the GAC once built using the gacutil. The AfterBuild.bat files attempt to do this for you in the post build events of the project. If you open up the GAC and see multiple versions of the same assembly of StrataFrame with the same version, then you will need to remove the one that you are not using. I recommend building StrataFrame in MSIL (All CPUs) as this will reduce downstream issues.
If you take any of these steps and it doesn't work, then you know that it is the source code you are building. At that point, there is not much I can do for you as you will need to talk with your co-worker and figure out what has changed and how to resolve these issues.
|