我正在将我的项目迁移到 netstandard。在一个库中,我使用了 Microsoft.WindowsAzure.ServiceRuntime 库,但我找不到 netstandard 的模拟。我需要 RoleEnvironment.GetLocalResource("storage") 数据。
using Microsoft.WindowsAzure.ServiceRuntime;
...
LocalResource storage = RoleEnvironment.GetLocalResource("storage");
string tmpFilename = Path.GetFileName(Path.GetTempFileName());
var path = Path.Combine(storage.RootPath, tmpFilename);