Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
61 views

In our team, we use a "NamingAnalyzer" that automatically warns and fixes about the use of names specified in a dictionary. Our code base kept mixing two languages together. Now we want to ...
CaseyHofland's user avatar
2 votes
1 answer
102 views

I have a legacy monolithic application with 180 projects. All of these projects are in the SDK format, although some of them still use the .NET 4.8 target framework. I want to add a package reference ...
isxpjm's user avatar
  • 369
0 votes
0 answers
25 views

I have a class library project targeting .net standard 2.0 that I pack into a nuget package; we'll call it Package.A. Inside of the project, it has a folder called Special with the following folder + ...
pfinferno's user avatar
  • 2,041
-1 votes
1 answer
69 views

My project is able to build and run, but when I want to publish the project, I get this : Warning As Error: Detected package downgrade: System.Net.NameResolution from 4.3.0 to 4.0.0. Reference the ...
hmmmmm's user avatar
  • 1
2 votes
2 answers
140 views

We use an internal Artifactory NuGet feed inside our organization. Here is my NuGet.Config: <?xml version="1.0" encoding="utf-8"?> <configuration> <...
Aisa Asghari's user avatar
1 vote
1 answer
108 views

I'm running into a conflict when trying to include both of the following packages in a project: <PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.0" /&...
RandomSkinCreator's user avatar
-3 votes
0 answers
42 views

I am getting a version mismatch error when using MediatR in my .NET project. What happened: Yesterday my project worked correctly with no errors. Today I updated some NuGet packages by mistake. After ...
YunusTemel's user avatar
1 vote
1 answer
86 views

When I added the following package reference to my project: <ItemGroup> <PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" /> </ItemGroup&...
Weifen Luo's user avatar
0 votes
0 answers
130 views

I have created a NuGet package containing a .NET Core library for Tesseract OCR, which I then added to my C# project via the NuGet Package Manager in Visual Studio. After building the solution, a ...
Jan021981's user avatar
  • 553
0 votes
0 answers
20 views

I have a 3rd party SDK which was installed via VSIX / NuGet package. Let's call it FoodFight/CoolKids for Windows. I'm working on a VSIX that does a wizard implementation of this SDK as part of its ...
CatAtGat's user avatar
0 votes
2 answers
76 views

I am trying to update a legacy ASP.NET 4.6 app to .NET 4.8. The app contains 2 class library projects as well. I'm now using VS2022 for the updating instead of VS2017/2019 that I was using before. For ...
user877247's user avatar
0 votes
1 answer
162 views

We have a Visual Studio solution which has multiple class library projects. Historically these class libraries were built only to .NET 8.0. Some of the library projects have Windows-specific features, ...
Dib's user avatar
  • 2,117
1 vote
0 answers
59 views

So I have a package that I'm generating in C#. This package depends on another nuget package (that I don't own), and is meant for C++, so the folder layout is alien. I'm currently handling this by ...
Mike's user avatar
  • 308
2 votes
0 answers
69 views

Recently, I've worked on upgrading all of the projects in our main application to SDK style projects. This was done in order to enable the feature to auto generate a NuGet package for each project on ...
Lucas Clandfield's user avatar
0 votes
0 answers
75 views

I'm unable to find NuGet packages originally deployed to a local repository in JFrog Artifactory from a virtual repository. The local repo is bound/associated to the virtual repo. For the local repo, ...
falken's user avatar
  • 158
0 votes
1 answer
96 views

I have an ASP.NET website (not ASP.NET application) with the target framework set to .NET 4.8. I recently updated the packages using Nuget. Now, when I Start without Debugging in VS 2022, I get the ...
Sunil's user avatar
  • 21.6k
0 votes
0 answers
26 views

C:\Users\pradeep.tyagi>dotnet new install GM.MicroService.Template::1.1.2482 The following template packages will be installed: GM.MicroService.Template::1.1.2482 Warning: GM.MicroService.Template::...
Pradeep Tyagi's user avatar
1 vote
1 answer
133 views

Setup We have internal NuGet packages consumed in other solutions, that we would like to package and debug locally in those other solutions, before we push both the code changes to Git and NuGet ...
Lukas Willin's user avatar
0 votes
0 answers
44 views

I'm getting build error as mentioned below while publishing web project to root directory. Anybody facing same issue? Publish has encountered an error. Build failed. Check the Output window for more ...
Sukhjeevan's user avatar
  • 3,154
0 votes
0 answers
69 views

I created a nuget package library called FeatureLibrary. I added this nuget package in a another project. At run time getting below error. "Description": "Unhandled exception in ...
Shakeer Hussain's user avatar
0 votes
1 answer
105 views

I do have multiple projects in one solutions. Some of them are in .NET Core 2.1, 3.1 and 5.0. My main project is in .NET 5.0 and it has multiple projects as dependencies (.NET Core 2.1, 3.1). I get ...
Heena Padshala's user avatar
0 votes
1 answer
86 views

Lets assume my project based on .NET Framework 4.0 and requires the NuGet package GuardClauses. Currently GuardClauses' latest version is 5.0.0, which supports .NET Framework 4.6.1 and higher. So ...
Dmitry's user avatar
  • 456
0 votes
1 answer
135 views

I've had this several times now with different packages (Latest was System.ValueTuple) installed using the nuget package manager in Visual Studio. After doing some upgrading of various packages I find ...
CCarter's user avatar
  • 89
1 vote
0 answers
103 views

I develop an DirectX12 application. When I create a MSIX package with the nuget Microsoft.Direct3D.D3D12, MakeAppx.exe pack exists with an error 0x8007007b. Publishing package without this nuget works ...
Włodzimierz O. Kubera's user avatar
1 vote
0 answers
79 views

I'm facing an issue while trying to restore NuGet packages in Visual Studio. The error message is as follows: Unable to load the service index for source https://api.nuget.org/v3/index.json. An error ...
Usman Ali's user avatar
0 votes
0 answers
32 views

I have a github workflow that builds a nuget package using the OctopusDeploy/create-nuget-package-action@v3 action. I need to refactor this to use the dotnet pack command, but I am getting a different ...
Don Chambers's user avatar
  • 4,375
0 votes
0 answers
47 views

Our build machine is adding our own nuget packages to a UNC based nuget feed (i.e. \\myserver\packages) using the nuget add command... e.g. nuget add OurPackage.1.2.3.nupkg -source \\myserver\packages ...
Fetchez la vache's user avatar
0 votes
0 answers
34 views

I have VS solution with approx 50 projects. The application runs in PROD environment and it targets framework NET 8.0. I regularly check for nugets updates to keep my app up-to-date and without ...
eXavier's user avatar
  • 5,011
1 vote
1 answer
148 views

Loading all these package dependencies with repetitive try/ catch blocks: $libPath = ".\packages\DocumentFormat.OpenXml.3.3.0\lib\netstandard2.0" $libFPath = ".\packages\DocumentFormat....
Rich's user avatar
  • 27
1 vote
1 answer
267 views

I have installed the MimeKit and the MailKit in my PC using: Install-Package -Name 'MimeKit' -Source "https://www.nuget.org/api/v2" -SkipDependencies Install-Package -Name 'MailKit' -Source &...
Davide Rigato's user avatar
0 votes
0 answers
52 views

I'm creating a NuGet package in an Azure DevOps pipeline from a multi-targeted .NET library that targets .NET Standard 2.0 and .NET 4.5. The pipeline sets the version dynamically using a variable (...
Luandersonn Airton's user avatar
0 votes
0 answers
75 views

I am supporting an ASP.NET MVC 5-based web project in Visual Studio 2022. I am attempting to add SignalR support, following the instructions at https://enlightsolution.com/asp-net-mvc-5/signalr-with-...
David W's user avatar
  • 10.2k
0 votes
0 answers
43 views

I am using Visual Studio 2022 v17.13.5. I have many desktop (Winforms) and ASP.NET MVC web application projects. For some time now, I have a problem with Visual Studio and it is affecting all the ...
Archana's user avatar
  • 85
0 votes
0 answers
141 views

I have a nuget package that was packed using the binaries published from an .net 8 project. I have used nuget pack command. Basically this is a tool(Authentication tool), which will be used by many ...
Sandeep Bhat's user avatar
0 votes
1 answer
64 views

Unable to resolve 'Microsoft.NETCore.App.Runtime.win-x86 (= 8.0.14)' for 'net8.0-windows10.0.19041'. PackageSourceMapping is enabled, the following source(s) were not considered: Microsoft Visual ...
ASP's user avatar
  • 1
6 votes
2 answers
5k views

All of a sudden my solution which is 3 or 4 years old...is throwing errors. I was never using this feature. My solution has 10 projects in it, and I had made no code changes, visual studio updates, ...
Tom Crosman's user avatar
  • 1,335
0 votes
0 answers
185 views

I'm creating a nuget package in a project built in SDK style. The project targets net472 & net8.0 and uses the nuget package IKVM 8.11.2. When I install IKVM, it generates the IKVM dll's and also ...
zhrgci's user avatar
  • 716
0 votes
0 answers
428 views

I have a solution with 5 projects: Project 1-3 are SDK-style projects with PackageReference. Project 4 is a legacy .csproj project with packages.config (.NET Framework 4.7.2. WebForms + MVC 5 project ...
Kjell Rilbe's user avatar
  • 1,623
0 votes
1 answer
1k views

After switching from System.Data.SqlClient to Microsoft.Data.SqlClient in one of my solutions I am unable to permanently remove unused System.Data.SqlClient from the solution as it keeps getting ...
Dean's user avatar
  • 12.2k
1 vote
0 answers
395 views

After updating my NuGet package of system.diagnostics.diagnosticsource from 6.0.2 to 9.0.2 my build pipeline in Azure DevOps (self-hosted agent) can no longer build my solution, as the path to ...
Rasmus4J's user avatar
0 votes
0 answers
36 views

I have a scenario where we are using nuget snapshot repo in jfrog and we are using snapshot versions for the develop branch builds. The requirement is that for develop branch build the version will ...
JV44's user avatar
  • 11
2 votes
1 answer
1k views

There's a lot of older posts about the way that NuGet defaults to the lowest compatible version for transitive packages, and thus creates vulnerabilities in your code. It looks like until recently, ...
Bob Tway's user avatar
  • 9,693
0 votes
1 answer
96 views

I have a github action that creates a release for Octopus deploy using the "OctopusDeploy/create-release-action@v3" action. - name: Create Octopus Release uses: OctopusDeploy/create-...
Don Chambers's user avatar
  • 4,375
0 votes
1 answer
84 views

I am unable to create a nuget package using below azure devops yml pipeline Variables buildPlatform: 'x86' buildConfiguration: 'Debug' - task: NuGetCommand@2 displayName: 'NuGet Pack' inputs: ...
sreenadh's user avatar
1 vote
0 answers
621 views

For the past couple of days, I've been trying to run a company-made solution in Visual Studio. Normally, you build and everything works. In this case, I am getting a: Retrying 'FindPackageByIdAsync' ...
Mitchell Mastromonaco's user avatar
0 votes
0 answers
191 views

What should we pack in nuget package for a MAUI class library such that no private, internal or implementation detail is embeded in nuget package i.e. the user should not be able to navigate to the ...
Shantanu Methikar's user avatar
0 votes
3 answers
1k views

I'm trying to integrate Firebase Cloud Messaging (FCM) into my .NET MAUI app, but I keep running into an issue when installing the Plugin.Firebase.CloudMessaging package via NuGet. Issue: When ...
Bryy Gast's user avatar
0 votes
1 answer
355 views

A couple years ago, I set up my build to create separate packages for a main library a number of language resource files. Project structure: - proj - localization - lib.nuspec - lib.de....
gregsdennis's user avatar
  • 8,520
0 votes
2 answers
240 views

I want to make a NuGet package A that depends on NuGet package B. Projects that will use package A will always have package B as a direct dependency. Hence, I believe that package B does not need to ...
Alexandre's user avatar
  • 581
1 vote
1 answer
156 views

I have a class library project which has the following extension method - public static async Task DoSomethingAsync(this WebApplication app) { // } I was curious how a class library project is ...
atiyar's user avatar
  • 8,405

1
2 3 4 5
76