We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41b414 commit 3b20ae1Copy full SHA for 3b20ae1
Source/PlanningNode.csproj
@@ -26,7 +26,7 @@
26
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
27
<DebugSymbols>false</DebugSymbols>
28
<DebugType>None</DebugType>
29
- <DocumentationFile>$(OutDir)$(AssemblyName).xml</DocumentationFile>
+ <DocumentationFile>$(IntermediateOutputPath)$(AssemblyName).xml</DocumentationFile>
30
</PropertyGroup>
31
<ItemGroup>
32
<Reference Include="System">
@@ -80,6 +80,9 @@
80
</Reference>
81
</ItemGroup>
82
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
83
+ <Target Name="DeleteXMLDocs" AfterTargets="Build">
84
+ <Delete Files="$(OutDir)$(AssemblyName).xml" />
85
+ </Target>
86
<Target Name="MakeZip">
87
<PropertyGroup>
88
<Changelog>$([System.IO.File]::ReadAllText($(ChangelogFile)))</Changelog>
0 commit comments