Skip to content
This repository was archived by the owner on Oct 6, 2022. It is now read-only.

Commit 03b7612

Browse files
committed
fix solution wide build errors
1 parent ddb0b94 commit 03b7612

5 files changed

Lines changed: 7 additions & 10 deletions

File tree

experiments/EdgeDB.Serializer.Experiments/DummyPacket.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using EdgeDB.Binary;
2-
using EdgeDB.Models;
1+
using EdgeDB.Binary;
32
using System;
43
using System.Collections.Generic;
54
using System.Linq;

experiments/EdgeDB.Serializer.Experiments/Program.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using EdgeDB;
2-
using EdgeDB.Models;
1+
using EdgeDB;
32
using EdgeDB.Utils;
43
using System.Text;
54

@@ -14,4 +13,4 @@
1413
var p = (DummyPacket*)ptr;
1514

1615
}
17-
}
16+
}

experiments/EdgeDB.Serializer.Experiments/Serializer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using EdgeDB.Models;
21
using System;
32
using System.Collections.Generic;
43
using System.Linq;

tools/EdgeDB.BinaryDebugger/DebuggerClient.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using EdgeDB.Binary;
2-
using EdgeDB.Models;
1+
using EdgeDB.Binary;
32
using System;
43
using System.Collections.Generic;
54
using System.Linq;

tools/EdgeDB.DotnetTool/Schemas/ClassBuilder.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System.Globalization;
1+
using EdgeDB.Binary;
2+
using System.Globalization;
23
using System.Text.RegularExpressions;
34

45
namespace EdgeDB.DotnetTool
@@ -141,7 +142,7 @@ public void GenerateType(Type t, string dir, ClassBuilderContext context)
141142
{
142143
// do a reverse lookup on the root function to see if we can decipher the type
143144
computed = Regex.Replace(computed, @"^.+?::", _ => "");
144-
var returnType = QueryBuilder.ReverseLookupFunction(computed);
145+
var returnType = typeof(object); //QueryBuilder.ReverseLookupFunction(computed);
145146

146147
if (returnType != null)
147148
type = returnType.FullName;

0 commit comments

Comments
 (0)