Move debugger attributes to shared partition (#15100)
authorJan Kotas <jkotas@microsoft.com>
Sun, 19 Nov 2017 15:39:48 +0000 (07:39 -0800)
committerGitHub <noreply@github.com>
Sun, 19 Nov 2017 15:39:48 +0000 (07:39 -0800)
commitb785ee136bb585370b33f3269cfc7ec2b09dd3af
tree4d4efa15404c07b86ee90cd7b3bdfebf19ae0fff
parentafa95ac59db1f23c62972a86e3cae01e5a3466be
Move debugger attributes to shared partition (#15100)

- Break down DebuggerAttributes.cs into more files, apply cleanup done in CoreRT
- Move two outliers (DebuggerStepperBoundaryAttribute, DebuggerVisualizerAttribute) from CoreFX to CoreLib so that all debugger attributes are together
12 files changed:
src/mscorlib/System.Private.CoreLib.csproj
src/mscorlib/shared/System.Private.CoreLib.Shared.projitems
src/mscorlib/shared/System/Diagnostics/DebuggableAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerBrowsableAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerDisplayAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerHiddenAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerNonUserCodeAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerStepThroughAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerStepperBoundaryAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerTypeProxyAttribute.cs [new file with mode: 0644]
src/mscorlib/shared/System/Diagnostics/DebuggerVisualizerAttribute.cs [new file with mode: 0644]
src/mscorlib/src/System/Diagnostics/DebuggerAttributes.cs [deleted file]