Skip to content

Commit

Permalink
Merge pull request #1 from olivegamestudio/release/1.1.0
Browse files Browse the repository at this point in the history
Add SetsRequiredMembersAttribute class
  • Loading branch information
olivegamestudio authored Nov 26, 2024
2 parents d67a73e + 7477b7d commit afc9a2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions MissingAttributes/MissingAttributes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<None Include="CompilerFeatureRequiredAttribute.cs" />
<None Include="IsExternalInit.cs" />
<None Include="RequiredMemberAttribute.cs" />
<None Include="SetsRequiredMembersAttribute.cs" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions MissingAttributes/SetsRequiredMembersAttribute.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace System.Diagnostics.CodeAnalysis;

[System.AttributeUsage(System.AttributeTargets.Constructor, AllowMultiple = false, Inherited = false)]
public sealed class SetsRequiredMembersAttribute : Attribute
{
}

0 comments on commit afc9a2c

Please sign in to comment.