question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

EntityFramework.Tools Mac OSX 10.21

See original GitHub issue

Steps to reproduce

  1. Visual Studio for Mac (and necessary binaries)
  2. Create web application
  3. Install Microsoft.EntityFramework.Tools.DotNet 1.1.0-preview4-final

The issue

Trying to install tooling do run dotnet ef commands

Retrieving package ‘Microsoft.EntityFrameworkCore.Tools.DotNet 1.1.0-preview4-final’ from ‘nuget.org’. Install failed. Rolling back… Package ‘Microsoft.EntityFrameworkCore.Tools.DotNet.1.1.0-preview4-final’ does not exist in project ‘App’ Executing nuget actions took 620.74 ms Package ‘Microsoft.EntityFrameworkCore.Tools.DotNet 1.1.0-preview4-final’ has a package type ‘DotnetCliTool’ that is not supported by project ‘App’.

Further technical details

EF Core version: 1.1.0 [assembly: AssemblyFileVersion (“1.1.0.21115”)] [assembly: AssemblyInformationalVersion (“1.1.0-rtm-22752”)]

Operating system: Visual Studio for Mac OSX 10.12.21

Other details about my project setup: dotnet --version 1.0.0-preview3-004056 sdk 1.0.0-preview3-004056 (/usr/local/share/dotnet/sdk

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:18 (6 by maintainers)

github_iconTop GitHub Comments

3reactions
bricelamcommented, Dec 2, 2016

For preview3 (csproj-based) tooling, you’ll need to add the following.

<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet">
    <Version>1.0.0-msbuild1-final</Version>
</DotNetCliToolReference>
2reactions
joacarcommented, Dec 11, 2016

@vivek306 Yes! Paste below in ItemGroup

<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet"> <Version>1.0.0-msbuild1-final</Version> </DotNetCliToolReference> <PackageReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet"> <Version>1.0.0-msbuild1-final</Version> </PackageReference> <PackageReference Include="Microsoft.EntityFrameworkCore.Tools"> <Version>1.0.0-msbuild1-final</Version> </PackageReference>

The CLI-reference will show up as missing in solution explorer (at least for me) and dont remove it since the reference will be removed.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Installing Entity Framework Core - EF Core
Get the Entity Framework Core tools​​ You can install tools to carry out EF Core-related tasks in your project, like creating and applying ......
Read more >
Untitled
Pgp desktop osx, Major pressure in my head, All things work for good kjv, Mango deck cabo? Kalou hertha berlin, Rsl vs la...
Read more >
Untitled
Bar mitzvah montage songs for friends, Timmendorfer strand aktuelle bilder, ... Rozhgar voice chat, Entity framework version different, Mahal kita renz ...
Read more >
Net Core in Action [1 ed.] 1617294276, 978-1617294273
Publishes a project for deployment, including the runtime ... NET Core or Entity Framework Core without being constrained by backwards compatibility.
Read more >
Entity Framework Core and SQL Server on Mac
Entity Framework Core and SQL Server on Mac · 1. Setup SQL Server in docker and connect with VSCode · 2. Create a...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found