blob: ce65ff8254cdd93998f22673b05fad72a04b995d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>
|