You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicDownloadException(stringpackageIdentifier,stringpackageVersion,stringfilePath):base($"Failed to download {packageIdentifier}::{packageVersion} from {filePath}")
8
+
publicDownloadException(stringpackageIdentifier,stringpackageVersion,stringfilePath):base($"Failed to download {packageIdentifier}@{packageVersion} from {filePath}")
9
9
{
10
10
PackageIdentifier=packageIdentifier;
11
11
PackageVersion=packageVersion;
12
12
PackageLocation=filePath;
13
13
}
14
14
15
-
publicDownloadException(stringpackageIdentifier,stringpackageVersion,IEnumerable<string>attemptedSources):base($"Failed to download {packageIdentifier}::{packageVersion} from NuGet feeds {string.Join(";",attemptedSources)}")
15
+
publicDownloadException(stringpackageIdentifier,stringpackageVersion,IEnumerable<string>attemptedSources):base($"Failed to download {packageIdentifier}@{packageVersion} from NuGet feeds {string.Join(";",attemptedSources)}")
16
16
{
17
17
PackageIdentifier=packageIdentifier;
18
18
PackageVersion=packageVersion;
19
19
SourcesList=attemptedSources;
20
20
}
21
21
22
-
publicDownloadException(stringpackageIdentifier,stringpackageVersion,IEnumerable<string>attemptedSources,Exceptioninner):base($"Failed to download {packageIdentifier}::{packageVersion} from NuGet feeds {string.Join(";",attemptedSources)}",inner)
22
+
publicDownloadException(stringpackageIdentifier,stringpackageVersion,IEnumerable<string>attemptedSources,Exceptioninner):base($"Failed to download {packageIdentifier}@{packageVersion} from NuGet feeds {string.Join(";",attemptedSources)}",inner)
Copy file name to clipboardExpand all lines: src/Microsoft.TemplateEngine.Edge/Installers/NuGet/Exceptions/PackageNotFoundException.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ internal class PackageNotFoundException : Exception
13
13
SourcesList=attemptedSources;
14
14
}
15
15
16
-
publicPackageNotFoundException(stringpackageIdentifier,NuGetVersionpackageVersion,IEnumerable<string>attemptedSources):base($"{packageIdentifier}::{packageVersion} was not found in NuGet feeds {string.Join(";",attemptedSources)}")
16
+
publicPackageNotFoundException(stringpackageIdentifier,NuGetVersionpackageVersion,IEnumerable<string>attemptedSources):base($"{packageIdentifier}@{packageVersion} was not found in NuGet feeds {string.Join(";",attemptedSources)}")
0 commit comments