mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
ElectronNET.CLI does not contain an inclusive lower bound #76
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pandazzurro on GitHub (Nov 19, 2017).
Originally assigned to: @robertmuehsig on GitHub.
This is my .csproj:
My error:
NU1604: Project dependency ElectronNET.CLI does not contain an inclusive lower bound. Include a lower bound in the dependency version to ensure consistent restore results.
What dependency do I have to upgrade? I do not understand
I follow readme installation guide and I got stuck when I added this piece of code to .csproj
Thanks
Andrea
@GregorBiswanger commented on GitHub (Dec 18, 2017):
Hi Andrea,
did you type the "dotnet restore" command after you edited the .csproj file?
When and where did you get the error message?
@pandazzurro commented on GitHub (Dec 20, 2017):
I create new project in another machine.

After execute:
dotnet electronize startThere is an error:
After that I clear .\obj folder but without success.
This example work very well.
@GregorBiswanger commented on GitHub (Dec 20, 2017):
Do you use first the
dotnet electronize initcommand?@pandazzurro commented on GitHub (Dec 21, 2017):
Yep
@robertmuehsig commented on GitHub (Dec 21, 2017):
Can you share your project?
@pandazzurro commented on GitHub (Dec 23, 2017):
Project
@mbuchok commented on GitHub (Jan 27, 2018):
I had this same problem and found that explicitly setting my version to the electronnet.cli package fixed it
Try changing:
<ItemGroup> <DotNetCliToolReference Include="ElectronNET.CLI" Version="*" /> </ItemGroup>to this:
<ItemGroup> <DotNetCliToolReference Include="ElectronNET.CLI" Version="0.0.7 (or whatever version)"/> </ItemGroup>@robertmuehsig commented on GitHub (Feb 19, 2018):
I will update the documentation - thanks for sharing!