Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/frontend/src/content/docs/get-started/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,18 @@ Also verify:
[Service discovery](/fundamentals/service-discovery/).
</LearnMore>

## `aspire add` finds no packages with an Azure Artifacts feed

**Symptoms**: When an authenticated Azure DevOps or Azure Artifacts NuGet feed is configured, `aspire add` reports that no packages were found or the Aspire CLI logs a `JsonReaderException`.

**Cause**: The NuGet Azure Artifacts Credential Provider can write `[CredentialProvider]` progress text to standard output before the `dotnet package search --format json` response. Older Aspire CLI versions tried to parse all of that output as JSON.

**Solution**: Update to the latest Aspire CLI:

```bash title="Update the Aspire CLI"
aspire update --self
```

## TypeScript AppHost issues

### "Command not found" errors
Expand Down
Loading