F# Tutorial samples won't run after installing FluentPath NuGet package in a C# query?
Options
I have Visual Studio Professional 2013 installed, and the F# support. I've just installed the latest version of the Visual F# tools as well.
I had been using FluentPath (Fluent.IO) in my own C# queries, installed from NuGet. I've since uninstalled it, and have no reference to that assembly anywhere I can find.
Trying to run any of the examples in the F# Tutorial shows the following error up top:
If I reinstall the NuGet package and add it to Additional References in one of the F# samples (e.g. "Read Me First") it runs (even with nothing in Additional Namespace Imports).
Any clue why this is this happening?
I had been using FluentPath (Fluent.IO) in my own C# queries, installed from NuGet. I've since uninstalled it, and have no reference to that assembly anywhere I can find.
Trying to run any of the examples in the F# Tutorial shows the following error up top:
The type 'Path' is required here and is unavailable. You must add a reference to assembly 'Fluent.IO, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'.
If I reinstall the NuGet package and add it to Additional References in one of the F# samples (e.g. "Read Me First") it runs (even with nothing in Additional Namespace Imports).
Any clue why this is this happening?
Comments
-
Do you have any default references? What happens if you press F4 and look at additional references / namespaces?
Also, check the 'My Extensions' query. Does that reference anything? -
That was exactly it, thank you. There was a reference in the My Extensions query that I'd forgotten about.