nuget-package

Nuget package didnot load correctly (VS 2015)

拟墨画扇 提交于 2019-12-25 04:28:28
问题 If i open my visual Studios, I am getting a message which says "Unable to load nuget package" refer to activity.xml here is the log from xml: CreateInstance failed for package [NuGetPackage]Source: 'mscorlib' Description: Could not load file or assembly 'NuGet.Tools, Version=3.4.4.1321, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. System.IO.FileNotFoundException: Could not load file or assembly 'NuGet.Tools, Version

Is there a Nuget package to create Azure Function Apps?

£可爱£侵袭症+ 提交于 2019-12-25 04:12:23
问题 I need to create multiple Azure Function apps in different geographic locations over and over, so I need to automate this. Doing this in the Portal isn't going to scale. I thought there would be a Nuget package for doing this, but I haven't found it yet. Any ideas on how to automate the creation of Azure Function Apps? 回答1: There isn't an Azure Functions specific NuGet package or API. Functions works with the standard Azure Resource Manager APIs (consistent with the way you manage other Azure

Options if a nuget package hasn't been updated

流过昼夜 提交于 2019-12-25 03:27:09
问题 We use jQgrid in many in many of our apps and nuget would be the perfect way to ensure that we keep up to date with the latest version but if the author of the nuget package doesn't keep it up to date then it makes more sense for us to manually keep it up to date. JQGrid is on v4.4.0 while the only useable nuget package is on v4.2.0 (last updated Nov 2011). There are some specific fixes in the new version that I want to upgrade for. http://www.trirand.com/blog/ http://nuget.org/packages

Options if a nuget package hasn't been updated

做~自己de王妃 提交于 2019-12-25 03:27:04
问题 We use jQgrid in many in many of our apps and nuget would be the perfect way to ensure that we keep up to date with the latest version but if the author of the nuget package doesn't keep it up to date then it makes more sense for us to manually keep it up to date. JQGrid is on v4.4.0 while the only useable nuget package is on v4.2.0 (last updated Nov 2011). There are some specific fixes in the new version that I want to upgrade for. http://www.trirand.com/blog/ http://nuget.org/packages

EF and SQL Server CE with NuGet

自古美人都是妖i 提交于 2019-12-25 02:29:07
问题 While poking around NuGet I noticed a couple of packages that I have already installed, EF and SQL Server CE. This raised a couple of questions that I have not been able to find any information on. On EF package what does this add that isn't already there in VS or does it just do all the reference work for you? On SQL Server CE package, what does this add that installing it doesn't? Or is this just a better way to install it. It certainly takes a lot to get an environment setup and I like

Found conflicts between different versions of “ICSharpCode.SharpZipLib” that could not be resolved

試著忘記壹切 提交于 2019-12-25 00:33:55
问题 I am using NPOI in my MVC 5 project. When I installed it via Nuget, I have installed SharpLib 0.86 because it is a dependency. After doing this, NPOI generates a 0 bytes file. When I build the solution, this error appears in error list: Found conflicts between different versions of "ICSharpCode.SharpZipLib" that could not be resolved. These reference conflicts are listed in the build log when log verbosity is set to detailed. I am sure NPOI does not work properly cause of this. What's the

How install Xamarin.Firebase.Messaging with Xamarin.Forms.Maps

半城伤御伤魂 提交于 2019-12-24 22:54:50
问题 I'm trying to install the nuget Xamarin.Firebase.Messaging package on a clean empty project with xamarin.forms.maps which fails because of version conflict by Xamarin.GooglePlayServices.Basement dependency. My Xamarin.Forms csproj contains the following nuget dependencies: <ItemGroup> <PackageReference Include="Xamarin.Forms" Version="2.5.0.280555" /> <PackageReference Include="Xamarin.Forms.Maps" Version="2.5.0.280555" /> </ItemGroup> The Android csproj contains the following nuget

nuget package add folder to solution

限于喜欢 提交于 2019-12-24 18:32:08
问题 i have to create a nuget package but i have a problem: i want to add a folder named "Config", this folder contains three XML files. after a search on the web, i have tried two ways (editing my nuspec file) to add this custom folder into my nuget package: 1) <file src="Config\*.*" target="content\Config" /> 2) <file src="Config\*.*" target="Config" /> ... but no one of these seem to work! I have tried to add this package on a Test's solution (Console application), the dll was attached to the

Where does nuget log detailed error message

若如初见. 提交于 2019-12-24 15:30:13
问题 I created package and pushed it to local repository. Now when I'm trying to install package using Package Manager Console, I'm getting following error message Installing 'MyPackage 1.0.0'. Successfully installed 'MyPackage 1.0.0'. Adding 'MyPackage 1.0.0' to TestConsoleApp. Uninstalling 'MyPackage 1.0.0'. Successfully uninstalled 'MyPackage 1.0.0'. Install failed. Rolling back... Install-Package : Failed to add reference to 'MyDll'. At line:1 char:16 + Install-Package <<<< MyPackage +

NuGet Package references copies dll local

两盒软妹~` 提交于 2019-12-24 10:54:36
问题 I have some requirement to set Copy Local to false for the NuGet dll. Before that, I used the package.config format and everything worked fine. After migration to Package Reference format, I cannot find a way how to do that. Could someone help me? 回答1: You can use PrivateAssets. Copied from the docs <ItemGroup> <!-- ... --> <PackageReference Include="Contoso.Utility.UsefulStuff" Version="3.6.0"> <PrivateAssets>all</PrivateAssets> </PackageReference> <!-- ... --> </ItemGroup> edit: actually,