Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

feat(cli): create a better command line interface #9

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Unige.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OgeSharp", "OgeSharp\OgeSha
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnigeWebUtility", "UnigeWebUtility\UnigeWebUtility.csproj", "{3568E75E-90CB-4A03-B2E3-D8F413ABF68E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnigeCLI", "UnigeCLI\UnigeCLI.csproj", "{153AF047-93F9-4987-BBF1-88687237A290}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,6 +23,10 @@ Global
{3568E75E-90CB-4A03-B2E3-D8F413ABF68E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3568E75E-90CB-4A03-B2E3-D8F413ABF68E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3568E75E-90CB-4A03-B2E3-D8F413ABF68E}.Release|Any CPU.Build.0 = Release|Any CPU
{153AF047-93F9-4987-BBF1-88687237A290}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{153AF047-93F9-4987-BBF1-88687237A290}.Debug|Any CPU.Build.0 = Debug|Any CPU
{153AF047-93F9-4987-BBF1-88687237A290}.Release|Any CPU.ActiveCfg = Release|Any CPU
{153AF047-93F9-4987-BBF1-88687237A290}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
9 changes: 9 additions & 0 deletions UnigeCLI/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;

namespace UnigeCLI {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}
}
21 changes: 21 additions & 0 deletions UnigeCLI/UnigeCLI.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<Version>0.0.1</Version>
<Authors>NaolShow</Authors>
<Company>Towolf</Company>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\OgeSharp\OgeSharp.csproj" />
</ItemGroup>

</Project>