マルチポスト

以下のサイトを参考に、UnityでCognito UserPoolsを使って認証機能の実装を試みました。
https://dev.classmethod.jp/client-side/unity-client-side/unity-cognito-authentication/

エディタ上のでテストは成功したのですが、ビルドしようとしたところAWSのdll関係でエラーが出ました。
そこで、シンプルに何も作っていない状態でAWSのSDKをインストールした状態でビルドしようとしたところ、同様に以下のエラーが出ました。

ArgumentException: The Assembly Microsoft.CodeAnalysis is referenced by AWSSDK.CognitoIdentityProvider.CodeAnalysis ('Assets/Packages/AWSSDK.CognitoIdentityProvider.3.3.10.4/analyzers/dotnet/cs/AWSSDK.CognitoIdentityProvider.CodeAnalysis.dll'). But the dll is not allowed to be included or could not be found.
UnityEditor.AssemblyHelper.AddReferencedAssembliesRecurse (System.String assemblyPath, System.Collections.Generic.List1[T] alreadyFoundAssemblies, System.String[] allAssemblyPaths, System.String[] foldersToSearch, System.Collections.Generic.Dictionary2[TKey,TValue] cache, UnityEditor.BuildTarget target) (at /Users/builduser/buildslave/unity/build/Editor/Mono/AssemblyHelper.cs:154)
UnityEditor.AssemblyHelper.FindAssembliesReferencedBy (System.String[] paths, System.String[] foldersToSearch, UnityEditor.BuildTarget target) (at /Users/builduser/buildslave/unity/build/Editor/Mono/AssemblyHelper.cs:194)
UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr)

どうすればビルドできるようになるでしょうか?

何も作っていないUnityのファイルは以下です。
https://drive.google.com/open?id=1RgTpXtdnHzYrHksz9lfjKJ5cnvbhDcVH
このファイルで行ったこと
・Unityを新規作成
・NuGetをアセットストアからインストール
・AWSSDK.CognitoIdentityProvider.3.3.10.4, AWSSDK.Extensions.CognitoAuthentication.0.9.4, AWSSDK.Core.3.3.24.3をNuGetからインストール
・理想はAndroid向けにビルドすることなのでAndroid向けでビルド(ただしどのプラットフォームでもエラーがでる)