Skip to content

Commit 1e11eb0

Browse files
committed
Enable XML comments for documentation
1 parent 4e4c68f commit 1e11eb0

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ _ReSharper*
1616
/Tools/*/*
1717
project.lock.json
1818
project.fragment.lock.json
19-
.vs
19+
.vs
20+
/CSharpFunctionalExtensions/CSharpFunctionalExtensions.xml

CSharpFunctionalExtensions/CSharpFunctionalExtensions.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PackageId>CSharpFunctionalExtensions</PackageId>
66
<PackageVersion>2.0.0</PackageVersion>
77
<Authors>Vladimir Khorikov</Authors>
8-
<Description>CSharpFunctionalExtensions - functional extensions for C#.</Description>
8+
<Description>CSharpFunctionalExtensions - functional extensions for C#</Description>
99
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1010
<PackageTags>C# Functional</PackageTags>
1111
<PackageLicenseUrl>https://github.com/vkhorikov/CSharpFunctionalExtensions/blob/master/LICENSE</PackageLicenseUrl>
@@ -19,12 +19,18 @@
1919

2020
<PropertyGroup Condition="'$(TargetFramework)'=='net45'">
2121
<AssemblyTitle>CSharpFunctionalExtensions .NET 4.5</AssemblyTitle>
22+
<DocumentationFile>CSharpFunctionalExtensions.xml</DocumentationFile>
23+
<NoWarn>1591;1701;1702</NoWarn>
2224
</PropertyGroup>
2325
<PropertyGroup Condition="'$(TargetFramework)'=='net461'">
2426
<AssemblyTitle>CSharpFunctionalExtensions .NET 4.6.1</AssemblyTitle>
27+
<DocumentationFile>CSharpFunctionalExtensions.xml</DocumentationFile>
28+
<NoWarn>1591;1701;1702</NoWarn>
2529
</PropertyGroup>
2630
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
2731
<AssemblyTitle>CSharpFunctionalExtensions .NET Standard 2.0</AssemblyTitle>
32+
<DocumentationFile>CSharpFunctionalExtensions.xml</DocumentationFile>
33+
<NoWarn>1591;1701;1702</NoWarn>
2834
</PropertyGroup>
2935

3036
</Project>

0 commit comments

Comments
 (0)