-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDidot.Cli.csproj
More file actions
51 lines (44 loc) · 1.93 KB
/
Didot.Cli.csproj
File metadata and controls
51 lines (44 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Didot</AssemblyName>
<ApplicationIcon>didot.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<PackAsTool>true</PackAsTool>
<ToolCommandName>didot</ToolCommandName>
<PackageOutputPath>./.nupkg</PackageOutputPath>
<PackageId>Didot-cli</PackageId>
</PropertyGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="didot.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.8" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.8" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.8" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Domemtech.StringTemplate4" Version="4.3.0" />
<PackageReference Include="DotLiquid" Version="2.3.197" />
<PackageReference Include="Fluid.Core" Version="2.25.0" />
<PackageReference Include="Handlebars.Net" Version="2.1.6" />
<PackageReference Include="Handlebars.Net.Helpers" Version="2.5.2" />
<PackageReference Include="Morestachio" Version="5.0.1.631" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="PocketCsvReader" Version="2.36.9" />
<PackageReference Include="Scriban" Version="6.2.1" />
<PackageReference Include="SmartFormat.NET" Version="3.6.1" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Didot.Core\Didot.Core.csproj" />
</ItemGroup>
</Project>