Click here to Skip to main content
15,884,237 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am facing following issue

NETSDK1064 Package AsyncUsageAnalyzers, version 1.0.0-alpha003 was not found. It might have been deleted since NuGet restore. Otherwise, NuGet restore might have only partially completed, which might have been due to maximum path length restrictions.

Can anyone help me resolve this?

What I have tried:

Actually I cleared the Nuget Cache from my VS 2017, after that i started facing this problem. I tried to install this package using command "Install-Package AsyncUsageAnalyzers -Version 1.0.0-alpha003" but not success.
Posted
Updated 21-Mar-19 6:45am

1 solution

It's a pre-release package, so you'll need the IncludePreRelease flag to install it:
PowerShell
Install-Package AsyncUsageAnalyzers -Version 1.0.0-alpha003 -IncludePrerelease

Pre-release versions in NuGet packages | Microsoft Docs[^]

NB: That package has not been updated in four years, and the GitHub repository[^] has been archived.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900