-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Content.Markdown.Xamarin.csproj
More file actions
42 lines (41 loc) · 1.88 KB
/
Waher.Content.Markdown.Xamarin.csproj
File metadata and controls
42 lines (41 loc) · 1.88 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>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Extends the rendering capabilities of the Markdown library defined in Waher.Content.Markdown, by providing a renderer to XAML (Xamarin Forms flavour).
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>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Content/Waher.Content.Markdown.Xamarin</PackageProjectUrl>
<PackageIcon>Icon_64x64.png</PackageIcon>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>Markdown XAML Xamarin Forms</PackageTags>
<AssemblyVersion>5.0.1</AssemblyVersion>
<FileVersion>5.0.1</FileVersion>
<Version>5.0.1</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Waher.Content.Markdown\Waher.Content.Markdown.csproj" />
<ProjectReference Include="..\Waher.Content.Xml\Waher.Content.Xml.csproj" />
</ItemGroup>
</Project>