Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
RequireAttribute with MeansImplicitUse (#1462)
Browse files Browse the repository at this point in the history
* Add `MeansImplicitUse` to the `RequireAttribute` to reduce some warnings in Rider.

* CHANGELOG.md
  • Loading branch information
zeroZshadow authored Aug 21, 2020
1 parent c8730a4 commit f219927
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Upgrade to Worker SDK v14.8.0. [#1458](https://github.com/spatialos/gdk-for-unity/pull/1458)
- Migrated launch configurations to latest game templates. [#1457](https://github.com/spatialos/gdk-for-unity/pull/1457)
- Added `MeansImplicitUse` attribute to `RequireAttribute` to reduce warnings in Rider IDE. [#1462](https://github.com/spatialos/gdk-for-unity/pull/1462)

## `0.3.10` - 2020-08-18

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System;
using JetBrains.Annotations;

namespace Improbable.Gdk.Subscriptions
{
[AttributeUsage(AttributeTargets.Field)]
[AttributeUsage(AttributeTargets.Field), MeansImplicitUse]
public class RequireAttribute : Attribute
{
}
Expand Down

0 comments on commit f219927

Please sign in to comment.