Skip to content

Commit

Permalink
changes required for launch.json UI to work properly
Browse files Browse the repository at this point in the history
  • Loading branch information
emfisch committed Dec 12, 2024
1 parent 86d2ef6 commit b0c1b13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Microsoft.VisualStudio.ProjectSystem.VS.Query;
/// to pass the state their child producers will need, but allows the actual binding
/// of the <see cref="Rule"/> to be delayed until needed.
/// </summary>
internal sealed class ContextAndRuleProviderState
public sealed class ContextAndRuleProviderState
{
public ContextAndRuleProviderState(IProjectState projectState, QueryProjectPropertiesContext propertiesContext, Rule rule)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Microsoft.VisualStudio.ProjectSystem.VS.Query;
/// significantly reduce the amount of work we need to do.
/// </para>
/// </remarks>
internal interface IProjectState
public interface IProjectState
{
/// <summary>
/// Binds the specified schema to a particular context within the given project configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.VisualStudio.ProjectSystem.VS.Query;
/// manner that can be passed from one provider to another and is also suitable as a
/// key into a cache (such as the <see cref="IProjectState"/>).
/// </remarks>
internal sealed class QueryProjectPropertiesContext : IProjectPropertiesContext, IEquatable<QueryProjectPropertiesContext>
public sealed class QueryProjectPropertiesContext : IProjectPropertiesContext, IEquatable<QueryProjectPropertiesContext>
{
/// <summary>
/// A well-known context representing the project file as a whole.
Expand Down Expand Up @@ -84,7 +84,7 @@ public override int GetHashCode()
/// Creates a <see cref="QueryProjectPropertiesContext"/> from a Project Query API
/// <see cref="EntityIdentity"/>.
/// </summary>
public static bool TryCreateFromEntityId(EntityIdentity id, [NotNullWhen(true)] out QueryProjectPropertiesContext? propertiesContext)
internal static bool TryCreateFromEntityId(EntityIdentity id, [NotNullWhen(true)] out QueryProjectPropertiesContext? propertiesContext)
{
if (id.TryGetValue(ProjectModelIdentityKeys.ProjectPath, out string? projectPath))
{
Expand Down

0 comments on commit b0c1b13

Please sign in to comment.