From 5bcd40d57a864632425fda72846dd192523f1654 Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Thu, 16 May 2024 18:50:46 +0300 Subject: [PATCH] Changed url location --- tools/OpenApiInfoGenerator/OpenApiInfoGenerator/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/OpenApiInfoGenerator/OpenApiInfoGenerator/Program.cs b/tools/OpenApiInfoGenerator/OpenApiInfoGenerator/Program.cs index 36e9f6c094..ee50699142 100644 --- a/tools/OpenApiInfoGenerator/OpenApiInfoGenerator/Program.cs +++ b/tools/OpenApiInfoGenerator/OpenApiInfoGenerator/Program.cs @@ -6,8 +6,8 @@ internal class Program { public static string openApiInfoFile = "openApiInfo.json"; public static string openApiFileError = "openAPIErrors.csv"; - private const string openApiInfoMetadataUrl_v1 = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/metadata-changes-detection/docs/OpenApiInfo/v1.0/openApiInfo.json"; - private const string openApiInfoMetadataUrl_beta = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/metadata-changes-detection/docs/OpenApiInfo/beta/openApiInfo.json"; + private const string openApiInfoMetadataUrl_v1 = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/dev/docs/OpenApiInfo/v1.0/openApiInfo.json"; + private const string openApiInfoMetadataUrl_beta = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/dev/docs/OpenApiInfo/beta/openApiInfo.json"; private static IList openApiInfo_v1 = new OriginalMetadata(openApiInfoMetadataUrl_v1).GetOpenApiInfo(); private static IList openApiInfo_beta = new OriginalMetadata(openApiInfoMetadataUrl_beta).GetOpenApiInfo(); private static IDictionary> openApiVersions = new Dictionary>();