0

私はしばらくこれに取り組んでいましたが、原因が何であるかを理解できません。

Error 1 The type 'Google.Apis.Requests.IErrorResponseHandler' is defined in an assembly that is not referenced. You must add a reference to assembly 'Google.Apis, Version=1.2.4737.25313, Culture=neutral, PublicKeyToken=null'.
Error 2 The type 'Google.Apis.Authentication.IAuthenticator' is defined in an assembly that is not referenced. You must add a reference to assembly 'Google.Apis, Version=1.2.4737.25313, Culture=neutral, PublicKeyToken=null'.
Error 3 The type 'Google.Apis.Discovery.IRequestProvider' is defined in an assembly that is not referenced. You must add a reference to assembly 'Google.Apis, Version=1.2.4737.25316, Culture=neutral, PublicKeyToken=null'.

4

2 に答える 2

0

SSIS が DLL を見つけるには、GAC、SSIS がコンポーネントを見つけるために使用するパスのどこかに存在する必要があります。フレームワークの特定のバージョンの.NET Framework フォルダーは、それを配置するのに適した場所です。それは、.NET Framework 2.0 (SSIS 2005 および 2008R2 が使用するもの) または.NET Framework 4.0 (SSIS 2012 が使用するものだと思います) 用です。C:\Windows\Microsoft.NET\Framework\v2.0.50727C:\Windows\Microsoft.NET\Framework\v4.0.30319

于 2013-03-26T15:27:34.103 に答える
0

プロジェクトへの参照を追加する必要があります。

ウィンドウに移動しSolution Explorer、プロジェクトのノードを展開し (まだ展開されていない場合)、 を右クリックしReferences、アセンブリが配置されている場所を参照し (既に GAC にある場合は、フレームワーク リストから選択します)、参照を追加します。

于 2013-03-26T13:40:50.597 に答える