-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearnDocUtils.csproj
More file actions
42 lines (34 loc) · 1.41 KB
/
LearnDocUtils.csproj
File metadata and controls
42 lines (34 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Remove="templates\index.yml" />
<None Remove="templates\unit.yml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="templates\index.yml">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="templates\unit.yml">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Julmar.DxPlus" Version="1.4.0-preview" />
<PackageReference Include="Julmar.MSLearnCatalogAPI" Version="2.5.0" />
<PackageReference Include="Julmar.MSLearnRepos" Version="2.0.4.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ConvertLearnToDoc.Shared\ConvertLearnToDoc.Shared.csproj" />
<ProjectReference Include="..\Markdig.Renderer.Docx\Markdig.Renderer.Docx.csproj" />
<ProjectReference Include="..\Docx.Renderer.Markdown\Docx.Renderer.Markdown.csproj" />
</ItemGroup>
</Project>