I have a solution in Visual Studio 2012. It includes two projects for tests, one in F# and one in C#. I have installed NUnit and FsUnit as Nuget packages. After the installation, the references to these assemblies point to the dll
's found in the \packages\
folder inside my solution. After I compile the solution, the references change in the F# project and point to the NUnit installed in my C:\Program Files (x86)\
folder and the \bin\Debug\FsUnit.NUnit.dll
in my F# project. In the C# project the references keep pointing to the packages folder.
The project builds in Visual Studio and the tests run fine. When I build it in TeamCity it fails as it cannot find NUnit and FsUnit in the F# project.
Any ideas why the reference change when I compile?
Moreover, why the properties of a reference in an F# project contain much less information compared to the ones in a C# project?