Skip to content

Commit

Permalink
fix: added missing UniTask.asmdef reference to Mirror.Weaver.asmdef (#…
Browse files Browse the repository at this point in the history
…463)

IDE complains about missing assembly reference in ReaderWriterProcessor.GenerateReadersWriters() because three nameof expressions reference async methods that return UniTask.

Unity Editor doesn't seem to care, but added the UniTask asmdef reference to silence the IDE errors.
  • Loading branch information
Jobus0 committed Nov 3, 2020
1 parent 0c456e1 commit bcb8ae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Mirror/Editor/Weaver/Mirror.Weaver.asmdef
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "Mirror.Weaver",
"references": [
"Mirror"
"Mirror",
"UniTask"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
Expand Down

0 comments on commit bcb8ae7

Please sign in to comment.