-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't build using dotnet CLI #349
Comments
Have also tried with a "clean" app today with .NET Core 2.0 - same issue. |
I also get a similar error:
Might it be the same issue as dotnet/Kerberos.NET#5? Quoting the final comments:
If so, I guess the fix is simple. |
Same issue here. |
If I try to install the missing package manually, i get warnings about downgrades. Is
|
This issue is preventing me from using VSCode/Ionide, since it seems to use the .NET Core SDK for Intellisense. It builds fine using MSbuild (manually), but intellisense in the DB file and everything depending on it is a red mess. Any chance to have a look at it? As I said above, the fix might be very simple. |
Same issue: When I build using dotnet cli error FS3033: The type provider 'FSharp.Data.SqlFileProvider' reported an error: Could not load file or assembly 'System.Runtime.Caching, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. |
Closing in favor of #373 and #380. related: dotnet/fsharp#10323 |
Description
We have a NET Core App 2.2 console application. MSBuild can build completely without issues. However, using
dotnet build
fails with the error:We have
FSharp.Data.SqlClient (2.0.5)
referenced which has a dependency on SqlClient that gets resolved toSystem.Data.SqlClient (4.6.1)
. It's like that version is somehow getting ignored - not sure how or why?The text was updated successfully, but these errors were encountered: