Microsoft.WindowsAzure.ServiceRuntime analog for netstandard

301 Views Asked by At

I'm migrate my project to netstandard. In one library I used Microsoft.WindowsAzure.ServiceRuntime library but I can't find analog for netstandard. I need RoleEnvironment.GetLocalResource("storage") data.

using Microsoft.WindowsAzure.ServiceRuntime;

...

LocalResource storage = RoleEnvironment.GetLocalResource("storage");
string tmpFilename = Path.GetFileName(Path.GetTempFileName());
var path = Path.Combine(storage.RootPath, tmpFilename);
0

There are 0 best solutions below