Skip to content

Commit

Permalink
Reintroduce yet another method as Obsolete to prevent breaking the API
Browse files Browse the repository at this point in the history
  • Loading branch information
belkiss committed Oct 12, 2020
1 parent d88d8aa commit d49b34d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Sharpmake.Generators/VisualStudio/ProjectOptionsGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d49b34d

Please sign in to comment.