我正在将项目迁移到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);