Skip to content

Commit 3b20ae1

Browse files
committed
Don't ship the XML docs
1 parent c41b414 commit 3b20ae1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Source/PlanningNode.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2727
<DebugSymbols>false</DebugSymbols>
2828
<DebugType>None</DebugType>
29-
<DocumentationFile>$(OutDir)$(AssemblyName).xml</DocumentationFile>
29+
<DocumentationFile>$(IntermediateOutputPath)$(AssemblyName).xml</DocumentationFile>
3030
</PropertyGroup>
3131
<ItemGroup>
3232
<Reference Include="System">
@@ -80,6 +80,9 @@
8080
</Reference>
8181
</ItemGroup>
8282
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
83+
<Target Name="DeleteXMLDocs" AfterTargets="Build">
84+
<Delete Files="$(OutDir)$(AssemblyName).xml" />
85+
</Target>
8386
<Target Name="MakeZip">
8487
<PropertyGroup>
8588
<Changelog>$([System.IO.File]::ReadAllText($(ChangelogFile)))</Changelog>

0 commit comments

Comments
 (0)