Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix types wrongly excluded from metadata #241

Merged
merged 1 commit into from
Apr 2, 2025
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
1 change: 0 additions & 1 deletion nanoFramework.CoreLibrary/System/Convert.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ namespace System
/// Specifies whether relevant Convert.ToBase64CharArray and Convert.ToBase64String methods insert line breaks in their output.
/// </summary>
[Flags]
[ExcludeType]
public enum Base64FormattingOptions
{
/// <summary>
Expand Down
1 change: 0 additions & 1 deletion nanoFramework.CoreLibrary/System/DateTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ namespace System
/// nanoFramework doesn't support local time, only UTC, so it's not possible to specify <see cref="Local"/>.
/// </remarks>
[Serializable]
[ExcludeType]
public enum DateTimeKind
{
/// <summary>
Expand Down
1 change: 0 additions & 1 deletion nanoFramework.CoreLibrary/System/DayOfWeek.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ namespace System
/// Specifies the day of the week.
/// </summary>
[Serializable]
[ExcludeType]
public enum DayOfWeek
{
/// <summary>
Expand Down
1 change: 0 additions & 1 deletion nanoFramework.CoreLibrary/System/IO/IOException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public class IOException : SystemException
/// <summary>
/// Provides values for error codes.
/// </summary>
[ExcludeType]
public enum IOExceptionErrorCode
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace System.Reflection
/// </summary>
/// <remarks>Available only in mscorlib build with support for System.Reflection.</remarks>
[Serializable, Flags]
[ExcludeType]
public enum AssemblyNameFlags
{
/// <summary>
Expand Down
1 change: 0 additions & 1 deletion nanoFramework.CoreLibrary/System/Reflection/MemberTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace System.Reflection
/// </summary>
/// <remarks>Available only in mscorlib build with support for System.Reflection.</remarks>
[Serializable]
[ExcludeType]
public enum MemberTypes
{
/// <summary>
Expand Down