Skip to content

Commit c7ff86a

Browse files
Add missing class in .NET for WebWrapper. (#705)
1 parent 24b2bb4 commit c7ff86a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

dotnet/src/dotnetcore/GxClasses.Web/GxClasses.Web.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
<ItemGroup>
1313
<Compile Include="..\..\dotnetframework\GxClasses\Domain\GXGeolocation.cs" Link="Domain\GXGeolocation.cs" />
14+
<Compile Include="..\..\dotnetframework\GxClasses\Domain\GxWebWrapper.cs" Link="Domain\GxWebWrapper.cs" />
1415
<Compile Include="..\..\dotnetframework\GxClasses\Helpers\GxDynamicCall.cs" Link="Helpers\GxDynamicCall.cs" />
1516
<Compile Include="..\..\dotnetframework\GxClasses\Middleware\GXHttp.cs" Link="Middleware\GXHttp.cs" />
1617
<Compile Include="..\..\dotnetframework\GxClasses\Middleware\GXHttpServices.cs" Link="Middleware\GXHttpServices.cs" />

dotnet/src/dotnetframework/GxClasses/Domain/GxWebWrapper.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
namespace GeneXus.Http
22
{
33
using System;
4-
using GeneXus.Application;
5-
using System.Web;
6-
using System.Web.Hosting;
4+
using System.Collections.Specialized;
75
using System.IO;
8-
using GeneXus.Http;
9-
using System.Web.UI;
106
using System.Text;
11-
using System.Collections.Specialized;
7+
#if !NETCORE
8+
using System.Web.UI;
9+
#else
10+
using GeneXus.Utils;
11+
#endif
1212

1313
public class GxWebWrapper
1414
{

0 commit comments

Comments
 (0)