Skip to content

Commit 2cb96ba

Browse files
Remove old TODO
Fixes #65439
1 parent 2fe4cd1 commit 2cb96ba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/VisualStudio/Core/Impl/ProjectSystem/CPS/CPSProjectFactory.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,8 @@ public async Task<IWorkspaceProjectContext> CreateProjectContextAsync(Guid id, s
153153
var values = data.GetItemValues(itemName);
154154
if (values.Length != 1)
155155
{
156-
// TODO: Throw once we update integration tests to the latest VS (https://github.com/dotnet/roslyn/issues/65439)
157-
// var joinedValues = string.Join(";", values);
158-
// throw new InvalidProjectDataException(itemName, joinedValues, $"Item group '{itemName}' is required to specify a single value: '{joinedValues}'.");
156+
var joinedValues = string.Join(";", values);
157+
throw new InvalidProjectDataException(itemName, joinedValues, $"Item group '{itemName}' is required to specify a single value: '{joinedValues}'.");
159158
return null;
160159
}
161160

0 commit comments

Comments
 (0)