Simon Morgan
Simon Morgan

Reputation: 2248

Broken references in F# project

When I load a .NET Core F# project in Visual Studio Community 2019 I get the following:

Visual Studio F# project with references listed individually with yellow icons

The project is perfectly valid and builds fine with the dotnet command.

Does anybody know what's causing this?

Upvotes: 2

Views: 67

Answers (1)

pim
pim

Reputation: 12577

If restarting Visual Studio doesn't fix this, you likely have assembly conflicts. To get more details, run dotnet build -v d to perform a detailed build. This will undoubtedly list your conflicts. Otherwise, the output window in Visual Studio will reveal the problem as well.

Upvotes: 1

Related Questions