Skip to content

Commit fd526d9

Browse files
author
Sabrina Juarez Garcia
committed
Some methods need to be public
1 parent b282763 commit fd526d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dotnet/src/dotnetcore/GxClasses.Web/Middleware/GXRouting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace GxClasses.Web.Middleware
2424
{
25-
internal class GXRouting : IGXRouting
25+
public class GXRouting : IGXRouting
2626
{
2727

2828
private static readonly IGXLogger log = GXLoggerFactory.GetLogger<IGXRouting>();

dotnet/src/dotnetframework/GxClasses/Core/GXApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3040,7 +3040,7 @@ public static bool IsRestService
30403040
}
30413041
#if NETCORE
30423042
static bool _isHttpContext;
3043-
internal static bool IsAzureContext
3043+
public static bool IsAzureContext
30443044
{ get; set; }
30453045
#endif
30463046
public static bool IsHttpContext

dotnet/src/extensions/Azure/Handlers/GeneXus.Deploy.AzureFunctions.Handlers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</PropertyGroup>
2929

3030
<ItemGroup>
31-
<Compile Include="Helpers\*;Functions\**\*.cs;Program.cs" />
31+
<Compile Include="Helpers\*;Functions\*;Program.cs" />
3232
</ItemGroup>
3333

3434
<ItemGroup Condition="'$(BlobSupport)' == 'true'">

0 commit comments

Comments
 (0)