-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathCommonMark.Base.csproj
More file actions
87 lines (74 loc) · 3.43 KB
/
CommonMark.Base.csproj
File metadata and controls
87 lines (74 loc) · 3.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<_Profile328>portable-net4+sl5+win+wpa+wp8</_Profile328>
<_Profile259>portable-net45+win+wpa+wp8</_Profile259>
<TargetFrameworks>net45;$(_Profile328);$(_Profile259);netstandard1.0;net40-client;net35-client;net20</TargetFrameworks>
<RootNamespace>CommonMark</RootNamespace>
<AssemblyName>CommonMark</AssemblyName>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>CommonMark.NET</AssemblyTitle>
<Company>CommonMark.NET</Company>
<Product>CommonMark.NET</Product>
<Description>https://github.com/Knagis/CommonMark.NET</Description>
<Copyright>Copyright © Kārlis Gaņģis 2014-2016</Copyright>
<PackageId>CommonMark.NET</PackageId>
<Title>CommonMark.NET</Title>
<Authors>Kārlis Gaņģis</Authors>
<PackageLicenseUrl>https://raw.githubusercontent.com/Knagis/CommonMark.NET/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Knagis/CommonMark.NET/</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/dcurtis/markdown-mark/master/png/32x20.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageDescription>.NET library for converting Markdown documents to HTML according to the CommonMark specification. Optimized for maximum performance and targets every .NET version since 2.0, including PCL, Mono and .NET Core.</PackageDescription>
<PackageReleaseNotes>Fixed lists with tab characters and double trailing newlines.</PackageReleaseNotes>
<PackageTags>CommonMark Markdown</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyCultureAttribute">
<_Parameter1></_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Reflection.AssemblyTrademarkAttribute">
<_Parameter1></_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Properties\public.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Choose>
<When Condition="'$(TargetFramework)' == 'net20'">
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
</When>
<When Condition="'$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'netstandard1.0'">
<PropertyGroup>
<DefineConstants>$(DefineConstants),OptimizeFor45</DefineConstants>
</PropertyGroup>
</When>
<When Condition="'$(TargetFramework)' == '$(_Profile259)'">
<PropertyGroup>
<DefineConstants>$(DefineConstants),portable_259,OptimizeFor45</DefineConstants>
</PropertyGroup>
</When>
</Choose>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.2.13" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Content Include="..\LICENSE.md" PackagePath="/" />
</ItemGroup>
</Project>