diff options
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> |
