Initial commit

This commit is contained in:
Tony Bark 2025-03-23 00:56:57 -04:00
commit e03cd1dcca
14 changed files with 863 additions and 0 deletions

View file

@ -0,0 +1 @@
global using QuickDB;

View file

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
DemoDB.CreateFetch("quick brown dog");

View 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>