Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public class TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public class TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public enum TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public enum TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public interface TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public record class TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public struct TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace ClassLib;

public struct TestItem1
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#endif
#if (csharpFeature_FileScopedNamespaces)
namespace Company.ClassLibrary1;

public class Class1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#if (csharpFeature_FileScopedNamespaces)
namespace Company.ClassLibrary1;

public enum Enum1
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#endif
#if (csharpFeature_FileScopedNamespaces)
namespace Company.ClassLibrary1;

public interface Interface1
{

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#if (csharpFeature_RecordClass)
namespace Company.ClassLibrary1;

public record class Record1
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#endif
#if (csharpFeature_FileScopedNamespaces)
namespace Company.ClassLibrary1;

public struct Struct1
{

Expand Down