Skip to content

Commit

Permalink
Reintroduce a 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 3dd5c9d commit d88d8aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Sharpmake/Project.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2394,6 +2394,11 @@ internal CSharpProject(Type targetType, Type configurationType, bool isInternal)
InitCSharpSpecifics();
}

[Obsolete("This method was meant to only be called internally, think again if you were calling it from your scripts.")]
public static void AddCSharpSpecificPreImportProjects(List<ImportProject> importProjects, DevEnv devEnv)
{
}

public void AddCSharpSpecificImportProjects(List<ImportProject> importProjects, DevEnv devEnv)
{
if (ProjectTypeGuids == CSharpProjectType.Vsix)
Expand Down

0 comments on commit d88d8aa

Please sign in to comment.