We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc4f8fa commit 9211294Copy full SHA for 9211294
2 files changed
src/GenericSQLEntityHandler/GenericSQLEntityHandler.csproj
@@ -43,6 +43,7 @@
43
<Compile Include="Enums.cs" />
44
<Compile Include="GenericSQLEntityHandler.cs" />
45
<Compile Include="Properties\AssemblyInfo.cs" />
46
+ <Compile Include="SQLHandler.cs" />
47
<Compile Include="SQLTableCreator.cs" />
48
</ItemGroup>
49
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
src/GenericSQLEntityHandler/SQLHandler.cs
@@ -0,0 +1,12 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Linq;
4
+using System.Text;
5
+using System.Threading.Tasks;
6
+
7
+namespace GenericSQLEntityHandler
8
+{
9
+ public static class SQLHandler
10
+ {
11
+ }
12
+}
0 commit comments