-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConvertDocx.csproj
More file actions
28 lines (22 loc) · 864 Bytes
/
ConvertDocx.csproj
File metadata and controls
28 lines (22 loc) · 864 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Copyright>(c) 2021-2024, julmar.com</Copyright>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\lib\DocsToMarkdown\DocsToMarkdown.csproj" />
<ProjectReference Include="..\..\lib\LearnDocUtils\LearnDocUtils.csproj" />
</ItemGroup>
</Project>