Forum member

MarcChu

29 posts

Posts by MarcChu

  1. Best method for referencing third-party assemblies

    Okay, well 'Copy referenced assemblies to workspace' isn't really a killer, since it's only necessary for the one project. The over-arching point of this post was to figure out the right way to do things, because the amount of different options available can tend to make things confusing, though t…

  2. Best method for referencing third-party assemblies

    Hm....so looking at those references gives me the sinking feeling that those actually are located in the GAC. I've been trying to browse and search in order to find them in there, though, and still can't find anything.

  3. Best method for referencing third-party assemblies

    These are all the 3rd party references from the .csproj. [code=xml] <Reference Include="Aspose.BarCodeRecognition"> <HintPath>C:\Program Files (x86)\Aspose\Aspose.BarCode for .NET\bin\net4.0\Aspose.BarCodeRecognition.dll</HintPath> </Reference> <Reference Include="Aspose.Cel…

  4. Best method for referencing third-party assemblies

    Well, I got the code to function correctly by setting "Copy referenced assemblies to workspace" for every project in this chain (A, B, and C, but not for every project in the solution). I'm fairly certain nothing is loaded from the GAC. Also, I was in contact with tech support with the SDK v…

  5. Best method for referencing third-party assemblies

    I noticed some strange behavior in my tests that was causing differences between how my application works when run in a normal context and when run within the test runner. References: Project A (test project) -> Project B (application project) -> Project C (helper assembly project) -> 3rd party …

  6. Problems with multiple workspaces

    *Sigh* Yes, I was extracting a bunch of files from a zip and then moving all the files in the directory to another location. Problem is that directory was the bin\Debug directory. Stupid. Thanks for pointing me in the right direction. MC

  7. Problems with multiple workspaces

    I've been having a problem with some integration tests that I've been running that started only recently. At this point, I can run them once and have them successfully pass. However, if they run again, then they fail. The reason they fail is that they're looking for a connection string, and my er…

  8. Problem running tests that use Sqlite, assembly not found

    Well, this particular assembly is a strange beast. It's an unmanaged assembly, so I'm not sure that it even can be referenced. SQLite has a special build target that will copy this assembly into a sub-directory in the bin directory of the project (actually, it does this twice, once for x86 and onc…

  9. Problem running tests that use Sqlite, assembly not found

    I'm using Sqlite to try to setup my integration tests to use an in-memory DB. I have a TestHelpers assembly that references Sqlite (installed with Nuget), and which uses Autofac to resolve my DAL. I have many test projects that reference the TestHelpers project. Whenever I try to run an integrati…