Skip to content

Commit

Permalink
Adding CLI so we can start the docker/helm journey
Browse files Browse the repository at this point in the history
  • Loading branch information
RealOrko committed Oct 16, 2024
1 parent 6ccf77e commit 15a3eea
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sql-d.sln
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{EFEA
scripts\publish.sh = scripts\publish.sh
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqlD.CLI", "src\SqlD.CLI\SqlD.CLI.csproj", "{5956D5E2-4288-4699-9D05-FFC5522D5DC1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -50,6 +52,10 @@ Global
{20B97568-FCD5-46B1-8DD8-07FABB84BE30}.Debug|Any CPU.Build.0 = Debug|Any CPU
{20B97568-FCD5-46B1-8DD8-07FABB84BE30}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20B97568-FCD5-46B1-8DD8-07FABB84BE30}.Release|Any CPU.Build.0 = Release|Any CPU
{5956D5E2-4288-4699-9D05-FFC5522D5DC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5956D5E2-4288-4699-9D05-FFC5522D5DC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5956D5E2-4288-4699-9D05-FFC5522D5DC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5956D5E2-4288-4699-9D05-FFC5522D5DC1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -61,6 +67,7 @@ Global
{D8040485-866E-44E6-84FF-952BE982891E} = {DB96BEEA-88F7-4F28-84CB-08F22F658EAC}
{2AFF609C-37FE-4C8D-87A7-6D9E11D3FDF5} = {D8040485-866E-44E6-84FF-952BE982891E}
{EFEA11FF-147B-425A-8A51-2A5850F2EAAC} = {DB96BEEA-88F7-4F28-84CB-08F22F658EAC}
{5956D5E2-4288-4699-9D05-FFC5522D5DC1} = {243695E0-61E0-4CB5-B032-54167EB126A7}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1A6FCA73-005F-41E0-A9A4-74F58DA42160}
Expand Down
2 changes: 2 additions & 0 deletions src/SqlD.CLI/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
15 changes: 15 additions & 0 deletions src/SqlD.CLI/SqlD.CLI.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>sql_d.cli</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\sql-d\SqlD.csproj" />
</ItemGroup>

</Project>

0 comments on commit 15a3eea

Please sign in to comment.