Azure / azure-sdk-for-net

This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
MIT License
5.19k stars 4.55k forks source link

Storage SDKs use deprecated snippet syntax #33875

Open heaths opened 1 year ago

heaths commented 1 year ago

The snippet syntax //@@ and /*@@*/ is deprecated in favor of:

#if SNIPPET
  Uri uri = new Uri("https://myresource.azure.net");
#else
  Uri uri = TestEnvironment.ResourceUri;
#endif

Please use this new syntax so we can stop supporting the old syntax in snippet-generator. See #20431 for more information.

pallavit commented 4 months ago

@jsquire, @schaabs any chance we can get storage migrated over?