Skip to content

Commit de64a16

Browse files
docs(troubleshooting): cannot find spreadstreamprocessing nuget
1 parent 24fca4a commit de64a16

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

troubleshooting/general-issues.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ This page provides solutions for common issues you may encounter while working w
1414

1515
* [Popups Do Not Work](#popups-do-not-work)
1616
* [Wrong Popup Position](#wrong-popup-position)
17+
* [Unable to find package Telerik.Documents.SpreadsheetStreaming](#unable-to-find-package-telerikdocumentsspreadsheetstreaming)
18+
1719

1820
## Popups Do Not Work
1921

@@ -59,6 +61,23 @@ There are several common cases when such a mismatch occurs:
5961

6062
You can check the application for such issues and ensure that the `<app>` element size and position matches the `<body>` and the browser viewport, and that the `<TelerikRootComponent>` is a direct child of the `<app>` element and encompasses the `@Body` in the main layout.
6163

64+
65+
## Unable to find package Telerik.Documents.SpreadsheetStreaming
66+
67+
When attempting to restore packages or build a solution with the `Telerik.UI.for.Blazor` NuGet package, you may get an error similar to
68+
69+
>warning `Unable to find package Telerik.Documents.SpreadsheetStreaming. No packages exist with this id in source(s) Microsoft Visual Studio Offline Packages, nuget.org, Telerik, MyOfflinePackages`
70+
71+
The `Telerik.Documents.SpreadsheetStreaming` package is used internally for exporting and the main package references it. It is also available from our online feed and it is in the `dpl` folder of your offline installation.
72+
73+
The most common reasons and solutions for seeing this error (being unable to restore this particular package) are:
74+
75+
* An offline package source is being used that does not contain it. Make sure that you add the packages from both the `packages` and `dpl` folders to such a custom local feed.
76+
77+
* There is an issue with connecting to our online feed. For example, a firewall, network downtime or wrong credentials are used. Check the [Troubleshooting NuGet Feed Issues]({%slug installation/nuget%}#troubleshooting) section of the documentation to see how to handle that.
78+
79+
* There is a mismatch between the versions available for restore and the referenced versions, while the Visual Studio "treat warnings as errors" setting is turned on. This can happen if one version is referenced, but another is available (for example, only certain versions are available in a custom local feed for the [Document Processing]({%slug common-features-dpl%}) packages, but the main package references an older version). In such cases, the tooling would usually resolve the newest version, but it will show a warning and VS can treat it as an error and not let you build. The solution is to check the version that is referenced by `Telerik.UI.for.Blazor` and ensure you can access that. Cleaning the solution, manually restoring the packages and re-building can also help.
80+
6281
## See Also
6382

6483
* [JavaScript Errors Troubleshooting]({%slug troubleshooting-js-errors%})

0 commit comments

Comments
 (0)