mirror of
https://github.com/tonytins/quickdb.git
synced 2025-07-05 06:00:37 -04:00
Initial commit
This commit is contained in:
commit
e03cd1dcca
14 changed files with 863 additions and 0 deletions
1
QuickDB.Console/GlobalUsing.cs
Normal file
1
QuickDB.Console/GlobalUsing.cs
Normal file
|
@ -0,0 +1 @@
|
|||
global using QuickDB;
|
2
QuickDB.Console/Program.cs
Normal file
2
QuickDB.Console/Program.cs
Normal file
|
@ -0,0 +1,2 @@
|
|||
// See https://aka.ms/new-console-template for more information
|
||||
DemoDB.CreateFetch("quick brown dog");
|
14
QuickDB.Console/QuickDB.Console.csproj
Normal file
14
QuickDB.Console/QuickDB.Console.csproj
Normal file
|
@ -0,0 +1,14 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\QuickDB\QuickDB.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue