-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fix for file namespaces .net 6 (#8)
Co-authored-by: DanTurco <[email protected]>
- Loading branch information
1 parent
d46223b
commit f18df25
Showing
7 changed files
with
66 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ public class TestClassWithNoUsings | |
public int MyProperty11 { get; set; } | ||
} | ||
} | ||
|
13 changes: 13 additions & 0 deletions
13
ProtoAttributor.Tests/Mocks/TestClassWithNoBracketNamespace.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace ProtoAttributor.Tests.Mocks; | ||
/// <summary> TestClass </summary> | ||
public class TestClassWithNoBracketNamespace | ||
{ | ||
/// <summary> Gets or sets my property. </summary> | ||
/// <value> My property. </value> | ||
public int MyProperty { get; set; } | ||
|
||
/// <summary> Gets or sets my property11. </summary> | ||
/// <value> My property11. </value> | ||
public int MyProperty11 { get; set; } | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters