Stop generating docs in samples and tests

Removes generation of documentation files for samples and tests. This is
a vestige from using the older Stylecop tool in this repo, which needs
the doc files to inspect.

The deleterious effect of this is getting warnings about missing
documentation on samples, and forcing contributors and maintainers to
write nonsense comments to workaround the warning.

Also removed references to stylecop, since we no longer use it.
This commit is contained in:
Ryan Nowak 2020-10-09 12:15:51 -07:00
parent aa95b2ffe4
commit 51ab7ff181
3 changed files with 0 additions and 7 deletions

View File

@ -5,8 +5,6 @@
<!-- Set Output Path for samples-->
<OutputPath>$(RepoRoot)bin\$(Configuration)\samples\$(MSBuildProjectName)\</OutputPath>
<!-- Stylecop needs the documentation file to exist -->
<DocumentationFile>$(OutputPath)$(MSBuildProjectName).xml</DocumentationFile>
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>

View File

@ -5,7 +5,6 @@
<PropertyGroup>
<OutputPath>$(RepoRoot)bin\$(Configuration)\prod\$(MSBuildProjectName)\</OutputPath>
<!-- Stylecop needs the documentation file to exist -->
<DocumentationFile>$(OutputPath)$(MSBuildProjectName).xml</DocumentationFile>
</PropertyGroup>

View File

@ -5,10 +5,6 @@
<!-- Set Output Path for tests-->
<OutputPath>$(RepoRoot)bin\$(Configuration)\test\$(MSBuildProjectName)\</OutputPath>
<!-- Stylecop needs the documentation file to exist -->
<DocumentationFile>$(OutputPath)$(MSBuildProjectName).xml</DocumentationFile>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn),1573,1591,1712</NoWarn>
<StylecopSuppressionsFile>$(StylecopSuppressionsFile);$(MSBuildThisFileDirectory)..\properties\stylecop\TestStylecopSuppressions.cs</StylecopSuppressionsFile>
</PropertyGroup>
</Project>