From d49b34da4ea3008cb71cf347ae4e3a12b35f082a Mon Sep 17 00:00:00 2001 From: Lambert Clara Date: Mon, 12 Oct 2020 11:56:43 +0200 Subject: [PATCH] Reintroduce yet another method as Obsolete to prevent breaking the API --- .../VisualStudio/ProjectOptionsGenerator.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Sharpmake.Generators/VisualStudio/ProjectOptionsGenerator.cs b/Sharpmake.Generators/VisualStudio/ProjectOptionsGenerator.cs index 40baec315..0d6280e41 100644 --- a/Sharpmake.Generators/VisualStudio/ProjectOptionsGenerator.cs +++ b/Sharpmake.Generators/VisualStudio/ProjectOptionsGenerator.cs @@ -1990,6 +1990,12 @@ private void GenerateLLVMOptions(IGenerationContext context, ProjectOptionsGener ); } + [Obsolete("Use MakeBuildStepName taking the 2 extra arguments projectRootPath and rootPath", error: true)] + public static string MakeBuildStepName(Project.Configuration conf, Project.Configuration.BuildStepBase eventBuildStep, Vcxproj.BuildStep buildStep) + { + return null; + } + public static string MakeBuildStepName(Project.Configuration conf, Project.Configuration.BuildStepBase eventBuildStep, Vcxproj.BuildStep buildStep, string projectRootPath, string projectPath) { if (!eventBuildStep.IsResolved)