-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Area-CompilersArea-Language DesignFeature - Nullable Reference TypesNullable Reference TypesNullable Reference TypesFeature RequestNeed Design ReviewThe end user experience design needs to be reviewed and approved.The end user experience design needs to be reviewed and approved.
Milestone
Description
Let's bring this up with LDM.
public ITaskItem[]? Sources
{
set
{
if (UsedCommandLineTool)
{
NormalizePaths(value!); // PROTOTYPE(NullableDogfood): value set should be non-null
}
_store[nameof(Sources)] = value;
}
get { return (ITaskItem[])_store[nameof(Sources)]; }
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area-CompilersArea-Language DesignFeature - Nullable Reference TypesNullable Reference TypesNullable Reference TypesFeature RequestNeed Design ReviewThe end user experience design needs to be reviewed and approved.The end user experience design needs to be reviewed and approved.