Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update src/Aspire.Hosting/Codespaces/CodespacesOptions.cs
Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
  • Loading branch information
mitchdenny and eerhardt authored Oct 28, 2024
commit b0edc56098168c659cfb3173f4c178fc27ffcaa7
2 changes: 1 addition & 1 deletion src/Aspire.Hosting/Codespaces/CodespacesOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class CodespacesOptions
/// Maps to the CODESPACE_NAME environment variable.
/// </remarks>
[MemberNotNullWhenAttribute(true, nameof(IsCodespace))]
Comment thread
mitchdenny marked this conversation as resolved.
Outdated
public string? CodespaceName { get; set; } = null;
public string? CodespaceName { get; set; };
}

internal class ConfigureCodespacesOptions(IConfiguration configuration) : IConfigureOptions<CodespacesOptions>
Expand Down