-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkdig.Blazor.csproj
More file actions
35 lines (28 loc) · 1.08 KB
/
Markdig.Blazor.csproj
File metadata and controls
35 lines (28 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageId>Valour.Markdig.Blazor</PackageId>
<Company>Valour Software</Company>
<Product>Markdig.Blazor</Product>
<Authors>The Valour Team</Authors>
<Description>Renders Markdig output directly into Blazor</Description>
<PackageTags>Valour, Markdown</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.2.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Markdig" Version="0.45.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Markdig.Blazor.Web\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Markdig.Blazor.Web\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Markdig.Blazor.Web\**" />
</ItemGroup>
</Project>