Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwalchadha committed Feb 14, 2022
1 parent abbdac9 commit de4ff53
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@ public static IProjectRootElement RemoveDefaultedProperties(this IProjectRootEle

if (propDiff.DefaultedProperties.Select(p => p.Name).Contains(prop.Name, StringComparer.OrdinalIgnoreCase))
{
if (prop.Name == "RootNamespace")
{
var x = 1;
}
propGroup.RemoveChild(prop);
}
}
Expand All @@ -122,11 +118,6 @@ public static IProjectRootElement RemoveUnnecessaryPropertiesNotInSDKByDefault(t
{
foreach (var prop in propGroup.Properties)
{
if (prop.Name == "RootNamespace")
{
var x = 1;
}

if (MSBuildFacts.UnnecessaryProperties.Contains(prop.Name, StringComparer.OrdinalIgnoreCase))
{
propGroup.RemoveChild(prop);
Expand Down

0 comments on commit de4ff53

Please sign in to comment.