From d88d8aaa6419d308c34e9f59eeb02ce75101a703 Mon Sep 17 00:00:00 2001 From: Lambert Clara Date: Mon, 12 Oct 2020 11:36:42 +0200 Subject: [PATCH] Reintroduce a method as Obsolete to prevent breaking the API --- Sharpmake/Project.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sharpmake/Project.cs b/Sharpmake/Project.cs index b0e6decf8..098b594ef 100644 --- a/Sharpmake/Project.cs +++ b/Sharpmake/Project.cs @@ -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 importProjects, DevEnv devEnv) + { + } + public void AddCSharpSpecificImportProjects(List importProjects, DevEnv devEnv) { if (ProjectTypeGuids == CSharpProjectType.Vsix)