private static async Task WriteAssetContent(IOwinContext context, WebAsset processedAsset)
 {
     using (var assetStream = processedAsset.Content.Stream())
     {
         await StreamUtil.CopyAsync(assetStream, context.Response.Body);
     }
 }