Skip to content

Commit

Permalink
Fix WithReference extension return type (dotnet#3449)
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer authored and eerhardt committed Apr 6, 2024
1 parent b6cd518 commit 7d39f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Qdrant/QdrantBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static IResourceBuilder<QdrantServerResource> WithDataBindMount(this IRes
/// <param name="builder">An <see cref="IResourceBuilder{T}"/> for <see cref="ProjectResource"/></param>
/// <param name="qdrantResource">The Qdrant server resource</param>
/// <returns></returns>
public static IResourceBuilder<IResourceWithEnvironment> WithReference(this IResourceBuilder<ProjectResource> builder, IResourceBuilder<QdrantServerResource> qdrantResource)
public static IResourceBuilder<ProjectResource> WithReference(this IResourceBuilder<ProjectResource> builder, IResourceBuilder<QdrantServerResource> qdrantResource)
{
builder.WithEnvironment(context =>
{
Expand Down

0 comments on commit 7d39f01

Please sign in to comment.