-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFoundation.Data.Doublets.Cli.csproj
More file actions
36 lines (32 loc) · 1.43 KB
/
Foundation.Data.Doublets.Cli.csproj
File metadata and controls
36 lines (32 loc) · 1.43 KB
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
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>clink</ToolCommandName>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RootNamespace>Foundation.Data.Doublets.Cli</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<Authors>link-foundation</Authors>
<Description>A CLI tool for links manipulation.</Description>
<PackageId>clink</PackageId>
<Version>2.2.2</Version>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<RepositoryUrl>https://github.com/link-foundation/link-cli</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Platform.Data" Version="0.16.1" />
<PackageReference Include="Platform.Data.Doublets" Version="0.18.1" />
<PackageReference Include="Platform.Data.Doublets.Sequences" Version="0.6.5" />
<PackageReference Include="Platform.Protocols.Lino" Version="0.4.5" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="StreamJsonRpc" Version="2.22.11" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>