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
Expand Up @@ -6,7 +6,7 @@ namespace System
// Enum used to indicate all the elements of the
// VOS it is valid to attach this element to.

internal enum AttributeTargets
public enum AttributeTargets
{
Assembly = 0x0001,
Module = 0x0002,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace System
{
/* By default, attributes are inherited and multiple attributes are not allowed */
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
internal sealed class AttributeUsageAttribute : Attribute
public sealed class AttributeUsageAttribute : Attribute
{
//Constructors
public AttributeUsageAttribute(AttributeTargets validOn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<TargetFramework>netstandard2.0</TargetFramework>
<!-- Don't add references to the netstandard platform since this is a core assembly -->
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<Features>noRefSafetyRulesAttribute=true</Features>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<Platforms>x86;x64</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Features>noRefSafetyRulesAttribute=true</Features>
</PropertyGroup>

<ItemGroup>
Expand Down