-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Content.Markdown.csproj
More file actions
61 lines (60 loc) · 3.34 KB
/
Waher.Content.Markdown.csproj
File metadata and controls
61 lines (60 loc) · 3.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Can be used to parse Markdown documents and transforms them to other formats. Rendering architecture is pluggable, extensible and customizable. This library includes rendering to HTML, plain text, and portable Markdown. Additional libraries provide rendering support to other formats. The library can also compare Markdown documents, and provide Markdown-based difference documents, showing how one version of a document is edited to produce a second version.
For a description of the Markdown flavour supported by the parser, see:
https://waher.se/Markdown.md</Description>
<Copyright>Copyright © Waher Data AB 2016-2026. All rights reserved.</Copyright>
<PackageLicenseUrl />
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Content/Waher.Content.Markdown</PackageProjectUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>Markdown Parser Text HTML Difference History</PackageTags>
<NeutralLanguage>English</NeutralLanguage>
<AssemblyVersion>6.2.1</AssemblyVersion>
<FileVersion>6.2.1</FileVersion>
<Version>6.2.1</Version>
<PackageIconUrl />
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\My Projects\IoTGateway\Backup\Content\Waher.Content.Markdown\</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>Icon_64x64.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.9" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Cache\Waher.Runtime.Cache.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Inventory\Waher.Runtime.Inventory.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Text\Waher.Runtime.Text.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Threading\Waher.Runtime.Threading.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script.Graphs\Waher.Script.Graphs.csproj" />
<ProjectReference Include="..\..\Script\Waher.Script\Waher.Script.csproj" />
<ProjectReference Include="..\Waher.Content.Emoji\Waher.Content.Emoji.csproj" />
<ProjectReference Include="..\Waher.Content.Html\Waher.Content.Html.csproj" />
<ProjectReference Include="..\Waher.Content\Waher.Content.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath />
</None>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath />
</None>
</ItemGroup>
</Project>