Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Oct 3, 2023
1 parent ce9ec9b commit 9c858bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions AssemblyToProcess/ClassWithNested.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@

class ClassWithNested
{
public class NestedClass
{
}
public class NestedClass;

[CompilerGenerated]
private sealed class NestedCompilerGeneratedClass { }
private sealed class NestedCompilerGeneratedClass;
}

[EditorBrowsable(EditorBrowsableState.Advanced)]
class ClassWithEditorBrowsableAttribute
{
}
class ClassWithEditorBrowsableAttribute;
2 changes: 1 addition & 1 deletion Tests/IntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public IntegrationTests()
{
var weavingTask = new ModuleWeaver
{
Config = XElement.Parse(@"<Publicize IncludeCompilerGenerated=""true"" />")
Config = XElement.Parse("""<Publicize IncludeCompilerGenerated="true" />""")
};
testResult = weavingTask.ExecuteTestRun("AssemblyToProcess.dll");
}
Expand Down

0 comments on commit 9c858bb

Please sign in to comment.