Do not cache version badges in the blob storage.

This commit is contained in:
Sridhar Periyasamy 2016-03-10 16:03:43 -08:00
parent 5a121215cd
commit dc3c00d660

View file

@ -159,6 +159,7 @@ namespace Microsoft.DotNet.Cli.Build
if (Path.GetExtension(blockBlob.Uri.AbsolutePath.ToLower()) == ".svg")
{
blockBlob.Properties.ContentType = "image/svg+xml";
blockBlob.Properties.CacheControl = "no-cache";
blockBlob.SetPropertiesAsync().Wait();
}
}