Exemple #1
0
        private void CreateReport_RecentPopularityDetail()
        {
            Log.Info("CreateReport_RecentPopularityDetail");

            Tuple <string[], List <object[]> > report = ExecuteSql("NuGetGallery.Operations.Scripts.DownloadReport_RecentPopularityDetail.sql");

            CreateBlob(RecentPopularityDetail + ".json", JsonContentType, ReportHelpers.ToJson(report));
        }
Exemple #2
0
        private void CreateReport_Last6Weeks()
        {
            Log.Info("CreateReport_Last6Weeks");

            Tuple <string[], List <object[]> > report = ExecuteSql("NuGetGallery.Operations.Scripts.DownloadReport_Last6Weeks.sql");

            CreateBlob(Last6Weeks + ".json", JsonContentType, ReportHelpers.ToJson(report));
        }