-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileCombiner.csproj
More file actions
43 lines (37 loc) · 1.88 KB
/
Copy pathFileCombiner.csproj
File metadata and controls
43 lines (37 loc) · 1.88 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<AssemblyName>filecombiner</AssemblyName>
<Version>2.1.0</Version>
<!-- Debug symbols for code coverage -->
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Remove="FileCombiner.Tests/**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ClosedXML" Version="0.105.0"/>
<PackageReference Include="CommandLineParser" Version="2.9.1"/>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0"/>
<PackageReference Include="HtmlAgilityPack" Version="1.12.4"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.0"/>
<PackageReference Include="Markdig" Version="0.43.0"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.8"/>
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="9.0.8"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.8"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.8"/>
<PackageReference Include="PdfPig" Version="0.1.11"/>
<PackageReference Include="ReverseMarkdown" Version="4.7.1"/>
<PackageReference Include="Spectre.Console" Version="0.50.0"/>
<PackageReference Include="TextCopy" Version="6.2.1"/>
<PackageReference Include="YamlDotNet" Version="16.3.0"/>
<TrimmerRootDescriptor Include="TrimmerRoots.xml"/>
</ItemGroup>
</Project>