File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
eFormAPI/eFormAPI.Web/Hosting/Helpers Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -96,18 +96,18 @@ public static List<IEformPlugin> GetAllPlugins()
9696 {
9797 List < string > pluginList ;
9898
99- #if DEBUG
99+ // #if DEBUG
100100 Console . ForegroundColor = ConsoleColor . Red ;
101101 Console . WriteLine ( "RUNNING IN DEBUG MODE!" ) ;
102102 pluginList = Directory . GetFiles ( Path . Combine ( directory , "netcoreapp2.2" ) )
103103 . Where ( x => x . EndsWith ( "Pn.dll" ) && Path . GetFileName ( x ) != "eFormApi.BasePn.dll" )
104104 . ToList ( ) ;
105- #else
106- pluginList = Directory . GetFiles ( directory )
107- . Where ( x => x . EndsWith ( "Pn.dll" ) && Path . GetFileName ( x ) != "eFormApi.BasePn.dll" )
108- . ToList ( ) ;
109-
110- #endif
105+ // #else
106+ // pluginList = Directory.GetFiles(directory)
107+ // .Where(x => x.EndsWith("Pn.dll") && Path.GetFileName(x) != "eFormApi.BasePn.dll")
108+ // .ToList();
109+ //
110+ // #endif
111111
112112 Console . ForegroundColor = ConsoleColor . Green ;
113113 Console . WriteLine ( $ "{ pluginList . Count } number of plugins found") ;
You can’t perform that action at this time.
0 commit comments