-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathElastic.Documentation.Configuration.csproj
More file actions
38 lines (34 loc) · 1.67 KB
/
Elastic.Documentation.Configuration.csproj
File metadata and controls
38 lines (34 loc) · 1.67 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- CS0618: Obsolete members - DisplayName is deprecated but still used by YAML deserialization -->
<NoWarn>$(NoWarn);CS0618</NoWarn>
<IsAotCompatible>true</IsAotCompatible>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591;CS1573;CS1572;CS1571;CS1570;CS1574</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Elastic.Documentation\Elastic.Documentation.csproj" />
<ProjectReference Include="..\Elastic.Documentation.Tooling\Elastic.Documentation.Tooling.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.Glob" />
<PackageReference Include="NetEscapades.EnumGenerators" />
<PackageReference Include="Nullean.Argh.Interfaces" />
<PackageReference Include="Nullean.ScopedFileSystem" />
<PackageReference Include="Samboy063.Tomlet" />
<PackageReference Include="Vecc.YamlDotNet.Analyzers.StaticGenerator" />
<PackageReference Include="YamlDotNet" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Abstractions" />
<EmbeddedResource Include="$(SolutionRoot)\config\versions.yml" />
<EmbeddedResource Include="$(SolutionRoot)\config\products.yml" />
<EmbeddedResource Include="$(SolutionRoot)\config\assembler.yml" />
<EmbeddedResource Include="$(SolutionRoot)\config\navigation.yml" />
<EmbeddedResource Include="$(SolutionRoot)\config\legacy-url-mappings.yml" />
<EmbeddedResource Include="$(SolutionRoot)\config\search.yml" />
</ItemGroup>
</Project>