From 74738ab13e1197b9136c4843fcf89ac5b538ab38 Mon Sep 17 00:00:00 2001 From: Yoshifumi Kawai Date: Thu, 16 Apr 2020 12:28:14 +0900 Subject: [PATCH] disable warning AsyncMethodBuilderAttribute conflict #53 --- .../UniRx.Async/CompilerServices/AsyncMethodBuilderAttribute.cs | 1 + Assets/UniRx.Async/UniTask.cs | 1 + Assets/UniRx.Async/UniTaskVoid.cs | 1 + 3 files changed, 3 insertions(+) diff --git a/Assets/UniRx.Async/CompilerServices/AsyncMethodBuilderAttribute.cs b/Assets/UniRx.Async/CompilerServices/AsyncMethodBuilderAttribute.cs index 06528cf..de7da41 100644 --- a/Assets/UniRx.Async/CompilerServices/AsyncMethodBuilderAttribute.cs +++ b/Assets/UniRx.Async/CompilerServices/AsyncMethodBuilderAttribute.cs @@ -1,6 +1,7 @@ #if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +#pragma warning disable CS0436 namespace System.Runtime.CompilerServices { diff --git a/Assets/UniRx.Async/UniTask.cs b/Assets/UniRx.Async/UniTask.cs index 25c533d..7b80b45 100644 --- a/Assets/UniRx.Async/UniTask.cs +++ b/Assets/UniRx.Async/UniTask.cs @@ -1,5 +1,6 @@ #if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +#pragma warning disable CS0436 using System; using System.Collections.Generic; diff --git a/Assets/UniRx.Async/UniTaskVoid.cs b/Assets/UniRx.Async/UniTaskVoid.cs index 929ac6f..550a55b 100644 --- a/Assets/UniRx.Async/UniTaskVoid.cs +++ b/Assets/UniRx.Async/UniTaskVoid.cs @@ -1,5 +1,6 @@ #if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 +#pragma warning disable CS0436 using System; using System.Diagnostics;