-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTk.Toolkit.Cli.csproj
More file actions
42 lines (42 loc) · 1.75 KB
/
Tk.Toolkit.Cli.csproj
File metadata and controls
42 lines (42 loc) · 1.75 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
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Copyright>Copyright 2022 Tony Knight, with contributions</Copyright>
<Authors>Tony Knight</Authors>
<Version>0.0.0</Version>
<Description>Some general dev tools</Description>
<AssemblyName>tktk</AssemblyName>
<PackageId>tktk-cli</PackageId>
<PackAsTool>true</PackAsTool>
<ToolCommandName>tktk</ToolCommandName>
<RepositoryUrl>https://github.com/tonycknight/tktk-cli</RepositoryUrl>
<PackageProjectUrl>https://github.com/tonycknight/tktk-cli</PackageProjectUrl>
<RootNamespace>Tk.Toolkit.Cli</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Update="Resource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Crayon" Version="2.0.69" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.2" />
<PackageReference Include="System.Formats.Asn1" Version="10.0.2" />
<PackageReference Include="spectre.console" Version="0.54.0" />
<PackageReference Include="Tk.Extensions" Version="0.1.237" />
<PackageReference Include="Tk.Nuget" Version="0.1.159" />
</ItemGroup>
</Project>