Google Cloud プロジェクトで利用可能なトピックを一覧表示する非常に単純なプログラムを作成しました。コードは簡単です:
using System;
using Google.Pubsub.V1;
public class Test
{
static void Main()
{
var projectId = "(fill in project ID here...)";
var projectName = PublisherClient.FormatProjectName(projectId);
var client = PublisherClient.Create();
foreach (var topic in client.ListTopics(projectName))
{
Console.WriteLine(topic.Name);
}
}
}
.NET 4.5 をターゲットとする「通常の」msbuild プロジェクトからこれを実行すると、正常に動作します。次のproject.json
ファイルで dotnet cli (1.0.0-preview2-003121) を使用しようとすると:
{
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Google.Pubsub.V1": "1.0.0-beta01"
},
"frameworks": {
"net45": { }
}
}
... 例外があります:
Unhandled Exception: System.IO.FileNotFoundException: Error loading native library.
Not found in any of the possible locations c:\[...]\Pubsub.Demo\bin\Debug\net45\win7-x64\nativelibs\windows_x64\grpc_csharp_ext.dll
at Grpc.Core.Internal.UnmanagedLibrary.FirstValidLibraryPath(String[] libraryPathAlternatives)
at Grpc.Core.Internal.UnmanagedLibrary..ctor(String[] libraryPathAlternatives)
at ...
.NET Core をターゲットにしようとしているわけではないので、これはサポートされるべきではありませんか?