-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShellDocs.Site.csproj
More file actions
38 lines (33 loc) · 1.7 KB
/
Copy pathShellDocs.Site.csproj
File metadata and controls
38 lines (33 loc) · 1.7 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.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<UserSecretsId>shelldocs-site</UserSecretsId>
<RootNamespace>ShellDocs.Site</RootNamespace>
<AssemblyName>ShellDocs.Site</AssemblyName>
<!--
AutoTypeTable (added in ShellDocs 0.1.6-alpha) reads XML doc <summary>
comments off registered components' [Parameter] props to fill the
description column. Turning generation on ships a sidecar .xml next to
the .dll so the reflection lookup at render time finds descriptions
instead of em-dashes. CS1591 is "missing XML comment" — noisy while
backfilling docs, keep it suppressed until every prop has one.
-->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ShellDocs.Components" Version="0.1.6-alpha" />
<PackageReference Include="ShellDocs.Core" Version="0.1.6-alpha" />
<PackageReference Include="ShellDocs.Markdown" Version="0.1.6-alpha" />
<PackageReference Include="ShellDocs.Tokens" Version="0.1.6-alpha" />
</ItemGroup>
<ItemGroup>
<!-- .md isn't auto-included by the Web SDK — Include adds it. -->
<Content Include="content/**/*.md" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
<!-- .json IS auto-included by the Web SDK — Update just adds the copy metadata. -->
<Content Update="content/**/meta.json" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
</Project>