Forum member
MarcChu
29 posts
Posts by MarcChu
-
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…
07 Mar 2016 13:09 UTC
-
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.
04 Mar 2016 15:33 UTC
-
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…
04 Mar 2016 15:17 UTC
-
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…
03 Mar 2016 15:16 UTC
-
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 …
02 Mar 2016 17:34 UTC
-
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
12 Nov 2015 15:45 UTC
-
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…
11 Nov 2015 20:47 UTC
-
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…
29 Sep 2014 13:38 UTC
-
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…
26 Sep 2014 18:23 UTC