Skip to content

Commit b60bb83

Browse files
dellis1972jonpryor
authored andcommitted
[Xamarin.Android.Build.Tasks] Allow Debugging.Tasks to access GetPaths (#858)
Commit b16ee55 made `GdbPaths` private. But it is needed/used by the monodroid repo. This commit makes it `public` and allows the `Xamarin.Android.Build.Debugging.Tasks` access it.
1 parent cce8e70 commit b60bb83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Xamarin.Android.Build.Tasks/Utilities/GdbPaths.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Xamarin.Android.Tools
55
{
6-
enum AndroidDebugServer
6+
public enum AndroidDebugServer
77
{
88
/// GNU's GDB debug server (provided by Android NDK)
99
Gdb,
@@ -13,7 +13,7 @@ enum AndroidDebugServer
1313
Llgs
1414
}
1515

16-
class GdbPaths
16+
public class GdbPaths
1717
{
1818
public static AndroidDebugServer? GetAndroidDebugServer (string name)
1919
{

0 commit comments

Comments
 (0)