Skip to content

Commit 821ac7b

Browse files
authored
Fix types wrongly excluded from metadata (#241)
***NO_CI***
1 parent 981cb43 commit 821ac7b

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

nanoFramework.CoreLibrary/System/Convert.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ namespace System
99
/// Specifies whether relevant Convert.ToBase64CharArray and Convert.ToBase64String methods insert line breaks in their output.
1010
/// </summary>
1111
[Flags]
12-
[ExcludeType]
1312
public enum Base64FormattingOptions
1413
{
1514
/// <summary>

nanoFramework.CoreLibrary/System/DateTime.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ namespace System
1717
/// nanoFramework doesn't support local time, only UTC, so it's not possible to specify <see cref="Local"/>.
1818
/// </remarks>
1919
[Serializable]
20-
[ExcludeType]
2120
public enum DateTimeKind
2221
{
2322
/// <summary>

nanoFramework.CoreLibrary/System/DayOfWeek.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ namespace System
99
/// Specifies the day of the week.
1010
/// </summary>
1111
[Serializable]
12-
[ExcludeType]
1312
public enum DayOfWeek
1413
{
1514
/// <summary>

nanoFramework.CoreLibrary/System/IO/IOException.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ public class IOException : SystemException
1414
/// <summary>
1515
/// Provides values for error codes.
1616
/// </summary>
17-
[ExcludeType]
1817
public enum IOExceptionErrorCode
1918
{
2019
/// <summary>

nanoFramework.CoreLibrary/System/Reflection/AssemblyNameFlags.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ namespace System.Reflection
1313
/// </summary>
1414
/// <remarks>Available only in mscorlib build with support for System.Reflection.</remarks>
1515
[Serializable, Flags]
16-
[ExcludeType]
1716
public enum AssemblyNameFlags
1817
{
1918
/// <summary>

nanoFramework.CoreLibrary/System/Reflection/MemberTypes.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ namespace System.Reflection
1313
/// </summary>
1414
/// <remarks>Available only in mscorlib build with support for System.Reflection.</remarks>
1515
[Serializable]
16-
[ExcludeType]
1716
public enum MemberTypes
1817
{
1918
/// <summary>

0 commit comments

Comments
 (0)