As the title says, I'm not able to compile a solution because of a missing package
I did some search but that didn't helped (unfortunally)
How to download a Nuget package without nuget.exe or Visual Studio extension?
Can't build solution because of missing NuGet references
Part of the output from the console:
F:\Riot Games\tool\Poro-master\Poro\PoroLib\PoroLib.csproj(168,5): error : This project references NuGet package(s) that are missing on this computer.
Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.
The missing file is ..\packages\System.Data.SQLite.Core.1.0.94.0\build\net45\System.Data.SQLite.Core.targets.
I need help to download that specific package and the internet confuses me, I mean x Person tells me to go x and z Person tells me to go z
I.. dunno what to do..
First of all, check if your Visual Studio is configured to restore packages. From VS top menu: Tools -> Nuget Package Manger -> Package Manger Settings ensure that first two checkboxes are ticked:
If the above doesn't work check if a firewall is blocking VS access to internet. If not, download your package manually from this link and add it your project locally:
From VS top menu: Tools -> Nuget Package Manger -> Package Manger Settings
Choose Package Sources from left
Add a new item.
Provide a name and a location ( the folder in which your downloaded package resides )
Don't forget to press Update button ( a bug in VS)
Right click on your project and `Manage NuGet Packages)
Choose your new source from top right
Click Browse. Your package is there.
Related
I use Windows Application Packaging Project to generate MSIXBUNDLE for my WPF app.
App installed failed with error message: Windows cannot install package xxxxxx_3.8.3.0_neutral~_hijkl because a different package xxxxxxx_3.8.2.0_neutral~_abcde r with the same name is already installed. Remove package xxxxxx_3.8.2.0_neutral~_abcde before installing. (0x80073cf3)
I think the reason is that I signed the new package (3.8,3) with a new EV code signing certificate. Does WAP tool support option to uninstall previous package? Under the project property tab "Debug" ->"Start option", there is a check box for "Uninstall and then re-install my package. All information about the application state is deleted". But enable it does not seem to do the job.
Thanks,
"Uninstall and then re-install my package. All information about the application state is deleted"
I think this option is useful only for debugging purposes. It sounds like an option to remove a previous copy of the package (that has the same version and product name). So, this does not help with removing older versions.
For MSIX packages, you don't top configure anything specific in the package to trigger the removal of a previous version, as you used to do with an MSI. This is handled automatically by the OS.
But the OS needs to somehow understand which package to remove and I suspect the digital certificate is part of that check. Just manually remove the old version, install the new one, and then build a test version (3.8.4) to confirm if the different certificate was the problem.
I am working through IS quickstart and having trouble adding IdentityModel to the Client project. I installed the NuGet package through VS.Net and it seemed to be successful but after that, the assembly does not show from the reference list. What am I missing here? Do I need to browse the file system to find the dll? If so, where?
When you add the IdentityServer4 NuGet package, it has a dependency on IdentityModel. So it is already added and that's you don't see it.
You can see its dependencies here
And in Visual Studio if you drill down the Dependencies -> Packages -> IdentityServer4 node
Using JBoss Studio and importing sample jboss-forge-html5-archetype. When you click next; shows that plugin AngularJS Eclipse needs to be installed. When I try Download and Install it fails. It says it is already installed.
Has anyone seen this issue before? Where does JBoss Studio keep it's log files? Where does JBOss Studio list it's plugins? How do you un-install a plugin?
Thanks!
Log files are stored the same way as plain Eclipse does. Check in your ~/devstudio/ folder for .log files, or check your workspace's folder for a .log file. Or check the Error Log view while running Devstudio.
To list installed plugins / features, from within Devstudio,select Help > About. You can also uninstall features (not plugins) from that dialog.
If a feature needed by a quick start is already installed then you shouldn't need to reinstall it... But maybe you need to update it?
What version of Devstudio are you running? Which OS & version? Which JDK vendor & version?
I am new developer in DNN. but I create a new Module in C#. How can i solve "Msbulid.Community.tasks.XmlReal"" error during when I release mode build.
It seems as though Visual Studio did not download the nuget package for MSBuildTasks. Right click on the project, click "Manage Nuget Packages". If MSBuildTasks does not show as installed, Browse for it by name and install the version 1.4.0.128. After installing do a Release Build again.
As you're new to DNN, be sure to also check out creating Apps in 2sxc. It's like modules, just much easier and has much more pre-built like image-handling, data import/export and more.
I am new to Nugets. By using any existed NuGet packages i want to know how to use it. to understand the advantage of Nuget.
Easiest thing you can do to get a NuGet package, is go to http://nuget.org/packages, click on any package and then click on the download link to download to the package to your machine. You can install NuGet Package Explorer to drill into the package or change the extension to zip and open it yourself