Skip to content

Commit

Permalink
Include XML documentation in build output
Browse files Browse the repository at this point in the history
  • Loading branch information
crozone committed Dec 6, 2017
1 parent a94007e commit 4194c5b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion FormatWith/FormatWith.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>FormatWith</Title>
Expand All @@ -23,6 +24,15 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/crozone/FormatWith</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Added handler overload to FormatWith and FormattableWith.</PackageReleaseNotes>
<PackageReleaseNotes>Include XML documentation in package.</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\FormatWith.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\FormatWith.xml</DocumentationFile>
</PropertyGroup>

</Project>

0 comments on commit 4194c5b

Please sign in to comment.