From 6f64ef4626142cc65fe5f67ec8ba6306de6cbcc5 Mon Sep 17 00:00:00 2001 From: haiyuan_zhang Date: Fri, 27 Jun 2025 14:03:42 +0800 Subject: [PATCH 1/4] refine new project scaffolding. --- .../Primitives/NewAzureProjectScaffolding.cs | 84 ++++++++++++------- 1 file changed, 56 insertions(+), 28 deletions(-) diff --git a/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs b/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs index b1c42427d9c2..8f636559958f 100644 --- a/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs +++ b/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs @@ -20,6 +20,9 @@ public class NewAzureProjectScaffolding : NewProjectScaffolding private const string ParentDirectory = "../"; private const string SharedSourceLinkBase = "Shared/Core"; + private int PathSegmentCount => _pathSegmentCount ??= GetPathSegmentCount(); + private int? _pathSegmentCount; + /// protected override string GetSourceProjectFileContent() { @@ -37,33 +40,9 @@ protected override string GetSourceProjectFileContent() builder.PackageReferences.Add(packages); } - int pathSegmentCount = GetPathSegmentCount(); - if (AzureClientGenerator.Instance.InputLibrary.InputNamespace.Auth?.ApiKey is not null) - { - builder.CompileIncludes.Add(new CSharpProjectCompileInclude(GetCompileInclude("AzureKeyCredentialPolicy.cs", pathSegmentCount), SharedSourceLinkBase)); - } - - bool hasOperation = false; - bool hasLongRunningOperation = false; - foreach (var client in AzureClientGenerator.Instance.InputLibrary.InputNamespace.Clients) - { - TraverseInput(client, ref hasOperation, ref hasLongRunningOperation); - } - - if (hasOperation) - { - foreach (var file in _operationSharedFiles) - { - builder.CompileIncludes.Add(new CSharpProjectCompileInclude(GetCompileInclude(file, pathSegmentCount), SharedSourceLinkBase)); - } - } - - if (hasLongRunningOperation) + foreach (var compileInclude in BuildCompileIncludes()) { - foreach (var file in _lroSharedFiles) - { - builder.CompileIncludes.Add(new CSharpProjectCompileInclude(GetCompileInclude(file, pathSegmentCount), SharedSourceLinkBase)); - } + builder.CompileIncludes.Add(compileInclude); } return builder.Write(); @@ -141,9 +120,58 @@ private static int GetPathSegmentCount() return pathSegmentCount; } - private string GetCompileInclude(string fileName, int pathSegmentCount) + /// + /// Constructs a relative path for a compile include file based on the project structure. + /// + /// The name of the file to include. + /// The relative path segment to the shared source files (defaults to RelativeCoreSegment). + /// A relative path string for the compile include file. + protected string GetCompileInclude(string fileName, string relativeSegment = RelativeCoreSegment) + { + return $"{MSBuildThisFileDirectory}{string.Concat(Enumerable.Repeat(ParentDirectory, PathSegmentCount))}{relativeSegment}{fileName}"; + } + + /// + /// Gets the list of required CompileInclude files based on the project's requirements. + /// + /// A list of CSharpProjectCompileInclude files that should be included in the project. + protected override IReadOnlyList BuildCompileIncludes() { - return $"{MSBuildThisFileDirectory}{string.Concat(Enumerable.Repeat(ParentDirectory, pathSegmentCount))}{RelativeCoreSegment}{fileName}"; + var compileIncludes = new List(); + + // Add API key credential policy if API key authentication is configured + if (AzureClientGenerator.Instance.InputLibrary.InputNamespace.Auth?.ApiKey is not null) + { + compileIncludes.Add(new CSharpProjectCompileInclude(GetCompileInclude("AzureKeyCredentialPolicy.cs"), SharedSourceLinkBase)); + } + + // Analyze clients to determine what shared files are needed + bool hasOperation = false; + bool hasLongRunningOperation = false; + foreach (var client in AzureClientGenerator.Instance.InputLibrary.InputNamespace.Clients) + { + TraverseInput(client, ref hasOperation, ref hasLongRunningOperation); + } + + // Add operation-related shared files if operations are present + if (hasOperation) + { + foreach (var file in _operationSharedFiles) + { + compileIncludes.Add(new CSharpProjectCompileInclude(GetCompileInclude(file), SharedSourceLinkBase)); + } + } + + // Add long-running operation shared files if LRO operations are present + if (hasLongRunningOperation) + { + foreach (var file in _lroSharedFiles) + { + compileIncludes.Add(new CSharpProjectCompileInclude(GetCompileInclude(file), SharedSourceLinkBase)); + } + } + + return compileIncludes; } } } \ No newline at end of file From f94c311b737dd5f4697eed01bfdc3af2be969491 Mon Sep 17 00:00:00 2001 From: haiyuan_zhang Date: Mon, 30 Jun 2025 16:36:03 +0800 Subject: [PATCH 2/4] address review comments. --- .../src/Primitives/NewAzureProjectScaffolding.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs b/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs index 8f636559958f..631a6ecdc3f7 100644 --- a/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs +++ b/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs @@ -20,9 +20,6 @@ public class NewAzureProjectScaffolding : NewProjectScaffolding private const string ParentDirectory = "../"; private const string SharedSourceLinkBase = "Shared/Core"; - private int PathSegmentCount => _pathSegmentCount ??= GetPathSegmentCount(); - private int? _pathSegmentCount; - /// protected override string GetSourceProjectFileContent() { @@ -58,8 +55,7 @@ protected override string GetSourceProjectFileContent() "DiagnosticScopeFactory.cs", "DiagnosticScope.cs", "HttpMessageSanitizer.cs", - "TrimmingAttribute.cs", - "NoValueResponseOfT.cs", + "TrimmingAttribute.cs" ]; private static readonly IReadOnlyList _lroSharedFiles = @@ -128,7 +124,7 @@ private static int GetPathSegmentCount() /// A relative path string for the compile include file. protected string GetCompileInclude(string fileName, string relativeSegment = RelativeCoreSegment) { - return $"{MSBuildThisFileDirectory}{string.Concat(Enumerable.Repeat(ParentDirectory, PathSegmentCount))}{relativeSegment}{fileName}"; + return $"{MSBuildThisFileDirectory}{string.Concat(Enumerable.Repeat(ParentDirectory, GetPathSegmentCount()))}{relativeSegment}{fileName}"; } /// From b8b7301d0eaf5dcb1d48639d2f08c1bb6fdbccbf Mon Sep 17 00:00:00 2001 From: haiyuan_zhang Date: Mon, 30 Jun 2025 16:41:32 +0800 Subject: [PATCH 3/4] resolve conflicts. --- .../src/Primitives/NewAzureProjectScaffolding.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs b/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs index 631a6ecdc3f7..084467c51137 100644 --- a/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs +++ b/eng/packages/http-client-csharp/generator/Azure.Generator/src/Primitives/NewAzureProjectScaffolding.cs @@ -37,7 +37,7 @@ protected override string GetSourceProjectFileContent() builder.PackageReferences.Add(packages); } - foreach (var compileInclude in BuildCompileIncludes()) + foreach (var compileInclude in CompileIncludes) { builder.CompileIncludes.Add(compileInclude); } From 31d3c003bfc1a8301487ed1353c9a2878da0f9cc Mon Sep 17 00:00:00 2001 From: haiyuan_zhang Date: Mon, 30 Jun 2025 20:20:53 +0800 Subject: [PATCH 4/4] regen after removing complie include needed by managment generator. --- .../TestProjects/Local/Basic-TypeSpec/src/BasicTypeSpec.csproj | 1 - .../http/authentication/api-key/src/Authentication.ApiKey.csproj | 1 - .../http/custom/src/Authentication.Http.Custom.csproj | 1 - .../http/authentication/oauth2/src/Authentication.OAuth2.csproj | 1 - .../http/authentication/union/src/Authentication.Union.csproj | 1 - .../_Specs_.Azure.ClientGenerator.Core.FlattenProperty.csproj | 1 - .../usage/src/_Specs_.Azure.ClientGenerator.Core.Usage.csproj | 1 - .../azure/core/lro/rpc/src/_Specs_.Azure.Core.Lro.Rpc.csproj | 1 - .../core/lro/standard/src/_Specs_.Azure.Core.Lro.Standard.csproj | 1 - .../http/azure/core/model/src/_Specs_.Azure.Core.Model.csproj | 1 - .../src/Azure.SpecialHeaders.XmsClientRequestId.csproj | 1 - .../client/structure/default/src/Client.Structure.Service.csproj | 1 - .../Spector/http/encode/bytes/src/Encode.Bytes.csproj | 1 - .../Spector/http/encode/datetime/src/Encode.Datetime.csproj | 1 - .../Spector/http/encode/duration/src/Encode.Duration.csproj | 1 - .../Spector/http/encode/numeric/src/Encode.Numeric.csproj | 1 - .../Spector/http/parameters/basic/src/Parameters.Basic.csproj | 1 - .../body-optionality/src/Parameters.BodyOptionality.csproj | 1 - .../collection-format/src/Parameters.CollectionFormat.csproj | 1 - .../Spector/http/parameters/path/src/Parameters.Path.csproj | 1 - .../Spector/http/parameters/spread/src/Parameters.Spread.csproj | 1 - .../content-negotiation/src/Payload.ContentNegotiation.csproj | 1 - .../payload/json-merge-patch/src/Payload.JsonMergePatch.csproj | 1 - .../Spector/http/payload/media-type/src/Payload.MediaType.csproj | 1 - .../Spector/http/payload/multipart/src/Payload.MultiPart.csproj | 1 - .../Spector/http/payload/pageable/src/Payload.Pageable.csproj | 1 - .../generator/TestProjects/Spector/http/routes/src/Routes.csproj | 1 - .../encoded-name/json/src/Serialization.EncodedName.Json.csproj | 1 - .../endpoint/not-defined/src/Server.Endpoint.NotDefined.csproj | 1 - .../http/server/path/multiple/src/Server.Path.Multiple.csproj | 1 - .../http/server/path/single/src/Server.Path.Single.csproj | 1 - .../not-versioned/src/Server.Versions.NotVersioned.csproj | 1 - .../versions/versioned/src/Server.Versions.Versioned.csproj | 1 - .../src/SpecialHeaders.ConditionalRequest.csproj | 1 - .../repeatability/src/SpecialHeaders.Repeatability.csproj | 1 - .../Spector/http/special-words/src/SpecialWords.csproj | 1 - .../Spector/http/streaming/jsonl/src/Streaming.Jsonl.csproj | 1 - .../TestProjects/Spector/http/type/array/src/Type.Array.csproj | 1 - .../Spector/http/type/dictionary/src/Type.Dictionary.csproj | 1 - .../http/type/enum/extensible/src/Type.Enum.Extensible.csproj | 1 - .../Spector/http/type/enum/fixed/src/Type.Enum.Fixed.csproj | 1 - .../Spector/http/type/model/empty/src/Type.Model.Empty.csproj | 1 - .../src/Type.Model.Inheritance.EnumDiscriminator.csproj | 1 - .../src/Type.Model.Inheritance.NestedDiscriminator.csproj | 1 - .../src/Type.Model.Inheritance.NotDiscriminated.csproj | 1 - .../recursive/src/Type.Model.Inheritance.Recursive.csproj | 1 - .../src/Type.Model.Inheritance.SingleDiscriminator.csproj | 1 - .../Spector/http/type/model/usage/src/Type.Model.Usage.csproj | 1 - .../http/type/model/visibility/src/Type.Model.Visibility.csproj | 1 - .../src/Type.Property.AdditionalProperties.csproj | 1 - .../type/property/nullable/src/Type.Property.Nullable.csproj | 1 - .../type/property/optionality/src/Type.Property.Optional.csproj | 1 - .../property/value-types/src/Type.Property.ValueTypes.csproj | 1 - .../TestProjects/Spector/http/type/scalar/src/Type.Scalar.csproj | 1 - .../TestProjects/Spector/http/type/union/src/Type.Union.csproj | 1 - 55 files changed, 55 deletions(-) diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Local/Basic-TypeSpec/src/BasicTypeSpec.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Local/Basic-TypeSpec/src/BasicTypeSpec.csproj index e7654ba03c25..96622e110669 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Local/Basic-TypeSpec/src/BasicTypeSpec.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Local/Basic-TypeSpec/src/BasicTypeSpec.csproj @@ -18,7 +18,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/api-key/src/Authentication.ApiKey.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/api-key/src/Authentication.ApiKey.csproj index 0078e5004f56..9ac5ee3eb00f 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/api-key/src/Authentication.ApiKey.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/api-key/src/Authentication.ApiKey.csproj @@ -18,7 +18,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/http/custom/src/Authentication.Http.Custom.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/http/custom/src/Authentication.Http.Custom.csproj index 527d8d3d03b7..3f3a25e7d88c 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/http/custom/src/Authentication.Http.Custom.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/http/custom/src/Authentication.Http.Custom.csproj @@ -18,7 +18,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/oauth2/src/Authentication.OAuth2.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/oauth2/src/Authentication.OAuth2.csproj index 75ac6e65c5be..633d29a6f926 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/oauth2/src/Authentication.OAuth2.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/oauth2/src/Authentication.OAuth2.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/union/src/Authentication.Union.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/union/src/Authentication.Union.csproj index 0c8555f8cba7..4018e6294285 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/union/src/Authentication.Union.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/authentication/union/src/Authentication.Union.csproj @@ -18,7 +18,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/flatten-property/src/_Specs_.Azure.ClientGenerator.Core.FlattenProperty.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/flatten-property/src/_Specs_.Azure.ClientGenerator.Core.FlattenProperty.csproj index 9bbfd83a0258..3bb5f904456e 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/flatten-property/src/_Specs_.Azure.ClientGenerator.Core.FlattenProperty.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/flatten-property/src/_Specs_.Azure.ClientGenerator.Core.FlattenProperty.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/usage/src/_Specs_.Azure.ClientGenerator.Core.Usage.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/usage/src/_Specs_.Azure.ClientGenerator.Core.Usage.csproj index 7c0a5873765c..35b3695c3298 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/usage/src/_Specs_.Azure.ClientGenerator.Core.Usage.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/client-generator-core/usage/src/_Specs_.Azure.ClientGenerator.Core.Usage.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/rpc/src/_Specs_.Azure.Core.Lro.Rpc.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/rpc/src/_Specs_.Azure.Core.Lro.Rpc.csproj index 51f52f699679..8baf878d3736 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/rpc/src/_Specs_.Azure.Core.Lro.Rpc.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/rpc/src/_Specs_.Azure.Core.Lro.Rpc.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/standard/src/_Specs_.Azure.Core.Lro.Standard.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/standard/src/_Specs_.Azure.Core.Lro.Standard.csproj index d0a9740315d4..6b4c8ba3b329 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/standard/src/_Specs_.Azure.Core.Lro.Standard.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/lro/standard/src/_Specs_.Azure.Core.Lro.Standard.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/model/src/_Specs_.Azure.Core.Model.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/model/src/_Specs_.Azure.Core.Model.csproj index 2c4a8d5c7bcd..97f3966ea4d8 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/model/src/_Specs_.Azure.Core.Model.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/core/model/src/_Specs_.Azure.Core.Model.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/special-headers/client-request-id/src/Azure.SpecialHeaders.XmsClientRequestId.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/special-headers/client-request-id/src/Azure.SpecialHeaders.XmsClientRequestId.csproj index ff64531d0c98..f782016d5386 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/special-headers/client-request-id/src/Azure.SpecialHeaders.XmsClientRequestId.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/azure/special-headers/client-request-id/src/Azure.SpecialHeaders.XmsClientRequestId.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/client/structure/default/src/Client.Structure.Service.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/client/structure/default/src/Client.Structure.Service.csproj index 3e154927e676..316747881622 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/client/structure/default/src/Client.Structure.Service.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/client/structure/default/src/Client.Structure.Service.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/bytes/src/Encode.Bytes.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/bytes/src/Encode.Bytes.csproj index dce9844f416d..f0b4bf9705f5 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/bytes/src/Encode.Bytes.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/bytes/src/Encode.Bytes.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/datetime/src/Encode.Datetime.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/datetime/src/Encode.Datetime.csproj index ee85371d2cf0..8495253fb07f 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/datetime/src/Encode.Datetime.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/datetime/src/Encode.Datetime.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/duration/src/Encode.Duration.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/duration/src/Encode.Duration.csproj index 0d9dfa38bd4e..c713f22897d3 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/duration/src/Encode.Duration.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/duration/src/Encode.Duration.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/numeric/src/Encode.Numeric.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/numeric/src/Encode.Numeric.csproj index 4bc332cf25e4..25ea805fa0dc 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/numeric/src/Encode.Numeric.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/encode/numeric/src/Encode.Numeric.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/basic/src/Parameters.Basic.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/basic/src/Parameters.Basic.csproj index 0aad98e42703..04c3cb1d7b88 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/basic/src/Parameters.Basic.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/basic/src/Parameters.Basic.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/body-optionality/src/Parameters.BodyOptionality.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/body-optionality/src/Parameters.BodyOptionality.csproj index a6e2700d2f41..4ee515ff2cc9 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/body-optionality/src/Parameters.BodyOptionality.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/body-optionality/src/Parameters.BodyOptionality.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/collection-format/src/Parameters.CollectionFormat.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/collection-format/src/Parameters.CollectionFormat.csproj index d99b865cf4d1..2541107eac37 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/collection-format/src/Parameters.CollectionFormat.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/collection-format/src/Parameters.CollectionFormat.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/path/src/Parameters.Path.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/path/src/Parameters.Path.csproj index f64be2e184e2..22cd077f688f 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/path/src/Parameters.Path.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/path/src/Parameters.Path.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/spread/src/Parameters.Spread.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/spread/src/Parameters.Spread.csproj index c664fb161527..3c9ddc1fb374 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/spread/src/Parameters.Spread.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/parameters/spread/src/Parameters.Spread.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/content-negotiation/src/Payload.ContentNegotiation.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/content-negotiation/src/Payload.ContentNegotiation.csproj index 4949def38e20..c644c4891a04 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/content-negotiation/src/Payload.ContentNegotiation.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/content-negotiation/src/Payload.ContentNegotiation.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/json-merge-patch/src/Payload.JsonMergePatch.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/json-merge-patch/src/Payload.JsonMergePatch.csproj index 1e6865f5805a..3ef41acc03d7 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/json-merge-patch/src/Payload.JsonMergePatch.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/json-merge-patch/src/Payload.JsonMergePatch.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/media-type/src/Payload.MediaType.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/media-type/src/Payload.MediaType.csproj index 4ae897dd3903..7377ef3df6e8 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/media-type/src/Payload.MediaType.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/media-type/src/Payload.MediaType.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/multipart/src/Payload.MultiPart.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/multipart/src/Payload.MultiPart.csproj index 74e6cee11657..ff54d119cba7 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/multipart/src/Payload.MultiPart.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/multipart/src/Payload.MultiPart.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/pageable/src/Payload.Pageable.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/pageable/src/Payload.Pageable.csproj index 7bd0df5949e1..bd4ad68e0e21 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/pageable/src/Payload.Pageable.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/payload/pageable/src/Payload.Pageable.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/routes/src/Routes.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/routes/src/Routes.csproj index e585657e1db3..a224da1a05d5 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/routes/src/Routes.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/routes/src/Routes.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/serialization/encoded-name/json/src/Serialization.EncodedName.Json.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/serialization/encoded-name/json/src/Serialization.EncodedName.Json.csproj index ca576dd59fa6..15f93b953ddd 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/serialization/encoded-name/json/src/Serialization.EncodedName.Json.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/serialization/encoded-name/json/src/Serialization.EncodedName.Json.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/endpoint/not-defined/src/Server.Endpoint.NotDefined.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/endpoint/not-defined/src/Server.Endpoint.NotDefined.csproj index 23aac72f03df..cb5a88a1406f 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/endpoint/not-defined/src/Server.Endpoint.NotDefined.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/endpoint/not-defined/src/Server.Endpoint.NotDefined.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/multiple/src/Server.Path.Multiple.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/multiple/src/Server.Path.Multiple.csproj index 989db1d84476..8d96b3a3cac6 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/multiple/src/Server.Path.Multiple.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/multiple/src/Server.Path.Multiple.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/single/src/Server.Path.Single.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/single/src/Server.Path.Single.csproj index e57c1d8e493c..9c4ca9003c4d 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/single/src/Server.Path.Single.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/path/single/src/Server.Path.Single.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/not-versioned/src/Server.Versions.NotVersioned.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/not-versioned/src/Server.Versions.NotVersioned.csproj index 94f367f3b8c2..34a9b1ed450b 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/not-versioned/src/Server.Versions.NotVersioned.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/not-versioned/src/Server.Versions.NotVersioned.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/versioned/src/Server.Versions.Versioned.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/versioned/src/Server.Versions.Versioned.csproj index 8ea9284f4df9..064cb50453a3 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/versioned/src/Server.Versions.Versioned.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/server/versions/versioned/src/Server.Versions.Versioned.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/conditional-request/src/SpecialHeaders.ConditionalRequest.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/conditional-request/src/SpecialHeaders.ConditionalRequest.csproj index 0b8fbbd27bcd..407df16f85e8 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/conditional-request/src/SpecialHeaders.ConditionalRequest.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/conditional-request/src/SpecialHeaders.ConditionalRequest.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/repeatability/src/SpecialHeaders.Repeatability.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/repeatability/src/SpecialHeaders.Repeatability.csproj index d3b14bc84779..9427ccd4fce1 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/repeatability/src/SpecialHeaders.Repeatability.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-headers/repeatability/src/SpecialHeaders.Repeatability.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-words/src/SpecialWords.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-words/src/SpecialWords.csproj index 61a9ebaa2e71..d68c7d6ed547 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-words/src/SpecialWords.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/special-words/src/SpecialWords.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/streaming/jsonl/src/Streaming.Jsonl.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/streaming/jsonl/src/Streaming.Jsonl.csproj index 89ee8566535c..3a5dad3ca1b6 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/streaming/jsonl/src/Streaming.Jsonl.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/streaming/jsonl/src/Streaming.Jsonl.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/array/src/Type.Array.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/array/src/Type.Array.csproj index 5a4ee8671c9e..ad4a6c93bc0f 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/array/src/Type.Array.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/array/src/Type.Array.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/dictionary/src/Type.Dictionary.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/dictionary/src/Type.Dictionary.csproj index 533caa990972..b88c48a7b6a0 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/dictionary/src/Type.Dictionary.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/dictionary/src/Type.Dictionary.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/extensible/src/Type.Enum.Extensible.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/extensible/src/Type.Enum.Extensible.csproj index d7198bf21f2a..839748db4cf1 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/extensible/src/Type.Enum.Extensible.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/extensible/src/Type.Enum.Extensible.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/fixed/src/Type.Enum.Fixed.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/fixed/src/Type.Enum.Fixed.csproj index 6efb235c8a27..1c595b8cd9a7 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/fixed/src/Type.Enum.Fixed.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/enum/fixed/src/Type.Enum.Fixed.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/empty/src/Type.Model.Empty.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/empty/src/Type.Model.Empty.csproj index a331bd86935e..8e3cd57ec3b0 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/empty/src/Type.Model.Empty.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/empty/src/Type.Model.Empty.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/enum-discriminator/src/Type.Model.Inheritance.EnumDiscriminator.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/enum-discriminator/src/Type.Model.Inheritance.EnumDiscriminator.csproj index 0a6cae8ab1d8..348be784f8de 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/enum-discriminator/src/Type.Model.Inheritance.EnumDiscriminator.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/enum-discriminator/src/Type.Model.Inheritance.EnumDiscriminator.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/nested-discriminator/src/Type.Model.Inheritance.NestedDiscriminator.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/nested-discriminator/src/Type.Model.Inheritance.NestedDiscriminator.csproj index edceed456345..bb62ad06ec8b 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/nested-discriminator/src/Type.Model.Inheritance.NestedDiscriminator.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/nested-discriminator/src/Type.Model.Inheritance.NestedDiscriminator.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/not-discriminated/src/Type.Model.Inheritance.NotDiscriminated.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/not-discriminated/src/Type.Model.Inheritance.NotDiscriminated.csproj index a816c778105a..bef4713a9a25 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/not-discriminated/src/Type.Model.Inheritance.NotDiscriminated.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/not-discriminated/src/Type.Model.Inheritance.NotDiscriminated.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/recursive/src/Type.Model.Inheritance.Recursive.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/recursive/src/Type.Model.Inheritance.Recursive.csproj index 64761f45b3b1..132308916ae1 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/recursive/src/Type.Model.Inheritance.Recursive.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/recursive/src/Type.Model.Inheritance.Recursive.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/single-discriminator/src/Type.Model.Inheritance.SingleDiscriminator.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/single-discriminator/src/Type.Model.Inheritance.SingleDiscriminator.csproj index 3473e5b7cffc..bb9afe3367fe 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/single-discriminator/src/Type.Model.Inheritance.SingleDiscriminator.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/inheritance/single-discriminator/src/Type.Model.Inheritance.SingleDiscriminator.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/usage/src/Type.Model.Usage.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/usage/src/Type.Model.Usage.csproj index 4ab49a821260..83f9ae5a8526 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/usage/src/Type.Model.Usage.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/usage/src/Type.Model.Usage.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/visibility/src/Type.Model.Visibility.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/visibility/src/Type.Model.Visibility.csproj index 162c10ae8563..c42d3fb9c535 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/visibility/src/Type.Model.Visibility.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/model/visibility/src/Type.Model.Visibility.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/additional-properties/src/Type.Property.AdditionalProperties.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/additional-properties/src/Type.Property.AdditionalProperties.csproj index 096e78ade150..312a0b285333 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/additional-properties/src/Type.Property.AdditionalProperties.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/additional-properties/src/Type.Property.AdditionalProperties.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/nullable/src/Type.Property.Nullable.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/nullable/src/Type.Property.Nullable.csproj index b9dfe404aeaf..7fe36a751730 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/nullable/src/Type.Property.Nullable.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/nullable/src/Type.Property.Nullable.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/optionality/src/Type.Property.Optional.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/optionality/src/Type.Property.Optional.csproj index 7f080aa274fc..601f2f3b3673 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/optionality/src/Type.Property.Optional.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/optionality/src/Type.Property.Optional.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/value-types/src/Type.Property.ValueTypes.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/value-types/src/Type.Property.ValueTypes.csproj index fc406b6bc7f5..93f9b5b42e60 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/value-types/src/Type.Property.ValueTypes.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/property/value-types/src/Type.Property.ValueTypes.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/scalar/src/Type.Scalar.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/scalar/src/Type.Scalar.csproj index baeafd9d3e53..2a024ee9314a 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/scalar/src/Type.Scalar.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/scalar/src/Type.Scalar.csproj @@ -17,7 +17,6 @@ - diff --git a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/union/src/Type.Union.csproj b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/union/src/Type.Union.csproj index b38aca1c3c82..b8b71d588836 100644 --- a/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/union/src/Type.Union.csproj +++ b/eng/packages/http-client-csharp/generator/TestProjects/Spector/http/type/union/src/Type.Union.csproj @@ -17,7 +17,6 @@ -