diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-27 02:06:02 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-05-27 02:06:26 +1000 |
| commit | 0d4efb175c6538af3f750e3342295a9b0e8b5b43 (patch) | |
| tree | 44cb047f3ebd3d6a02d75a2540f17aaca0bb4dc1 /CommandLine.csproj | |
Initial commitdev
Diffstat (limited to 'CommandLine.csproj')
| -rw-r--r-- | CommandLine.csproj | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/CommandLine.csproj b/CommandLine.csproj new file mode 100644 index 0000000..ce65ff8 --- /dev/null +++ b/CommandLine.csproj @@ -0,0 +1,27 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net10.0</TargetFramework> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + <AssemblyName>HyperBooru.CommandLine</AssemblyName> + <RootNamespace>HyperBooru.CommandLine</RootNamespace> + <Authors>Jake Mannens</Authors> + <Company /> + </PropertyGroup> + + <PropertyGroup Condition="'$(Configuration)' == 'Release'"> + <DebugSymbols>false</DebugSymbols> + <DebugType>none</DebugType> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="System.CommandLine" Version="2.0.8" /> + </ItemGroup> + + <ItemGroup> + <ProjectReference Include="..\ApiClient\ApiClient.csproj" /> + </ItemGroup> + +</Project> |
