From 4f5cdf98648de3aad794d506e779a6b987c0d3e7 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 3 Jun 2021 08:14:07 -0400 Subject: [PATCH] - removes unused property --- src/Kiota.Builder/GenerationConfiguration.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Kiota.Builder/GenerationConfiguration.cs b/src/Kiota.Builder/GenerationConfiguration.cs index b92efadd69..66721c76b5 100644 --- a/src/Kiota.Builder/GenerationConfiguration.cs +++ b/src/Kiota.Builder/GenerationConfiguration.cs @@ -6,7 +6,6 @@ public class GenerationConfiguration { public string OutputPath { get; set; } = "./output"; public string ClientClassName { get; set; } = "ApiClient"; public string ClientNamespaceName { get; set; } = "ApiClient"; - public string SchemaRootNamespaceName { get; set; } = "microsoft.graph"; public GenerationLanguage Language { get; set; } = GenerationLanguage.CSharp; public string ApiRootUrl { get; set; } = "https://graph.microsoft.com/v1.0"; public List PropertiesPrefixToStrip { get; set; } = new() { "@odata."};