Skip to content

Commit

Permalink
Merge pull request #25 from natsnudasoft/inheritdoc-inliner-fix
Browse files Browse the repository at this point in the history
Fix InheritdocInliner task execution
  • Loading branch information
natsnudasoft committed Apr 4, 2019
2 parents ae53238 + 20866e2 commit 73916f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/NatsnudaLibrary/NatsnudaLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
</PackageReference>
</ItemGroup>
<Target Name="ReplaceInheritdoc" AfterTargets="Build" Condition="'$(TargetFramework)' != ''">
<Exec Command='"$(PkgInheritdocInliner)\tools\InheritdocInliner.exe" "$(OutputPath)Natsnudasoft.NatsnudaLibrary.xml"' />
<Exec
Command='"$(PkgInheritdocInliner)\tools\InheritdocInliner.exe" "$(OutputPath)Natsnudasoft.NatsnudaLibrary.xml"'
IgnoreStandardErrorWarningFormat="true"
StandardOutputImportance="low" />
</Target>
</Project>
5 changes: 4 additions & 1 deletion src/TestExtensions/TestExtensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@
<ProjectReference Include="..\NatsnudaLibrary\NatsnudaLibrary.csproj" />
</ItemGroup>
<Target Name="ReplaceInheritdoc" AfterTargets="Build" Condition="'$(TargetFramework)' != ''">
<Exec Command='"$(PkgInheritdocInliner)\tools\InheritdocInliner.exe" "$(OutputPath)Natsnudasoft.NatsnudaLibrary.xml"' />
<Exec
Command='"$(PkgInheritdocInliner)\tools\InheritdocInliner.exe" "$(OutputPath)Natsnudasoft.NatsnudaLibrary.TestExtensions.xml"'
IgnoreStandardErrorWarningFormat="true"
StandardOutputImportance="low" />
</Target>
</Project>

0 comments on commit 73916f1

Please sign in to comment.