Skip to content

Commit 3a90311

Browse files
committed
Add a ton of documentation
1 parent 3e51c4e commit 3a90311

23 files changed

+1740
-784
lines changed

common/packaging.targets

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,21 @@
66
<Import Project="packageversionfiles.targets" />
77

88
<ItemGroup>
9-
<PackageReference Include="SpoiledCat.MSBuild.Tasks.FileUpdate" Version="1.0.13" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers" />
9+
<PackageReference Include="SpoiledCat.MSBuild.Tasks.FileUpdate" Version="1.0.13" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers" Private="false" />
10+
1011
</ItemGroup>
1112

13+
<Target Name="PreventMSBuildSDKCopyLocal" AfterTargets="ResolveReferences">
14+
<ItemGroup>
15+
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="
16+
$([System.String]::new('%(ReferenceCopyLocalPaths.NuGetPackageId)').StartsWith('Microsoft.Build')) or
17+
$([System.String]::new('%(ReferenceCopyLocalPaths.NuGetPackageId)').StartsWith('Microsoft.Win32')) or
18+
$([System.String]::new('%(ReferenceCopyLocalPaths.NuGetPackageId)').StartsWith('System.Collections.Immutable')) or
19+
$([System.String]::new('%(ReferenceCopyLocalPaths.NuGetPackageId)').StartsWith('System.Text'))
20+
" />
21+
</ItemGroup>
22+
</Target>
23+
1224
<!-- Assemble all sources into a folder called (PackageName) -->
1325
<Target Name="EnumeratePackageFiles" Returns="@(SourcesToCopy)">
1426
<CreateItem

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<LangVersion>7.3</LangVersion>
4-
<GenerateDocumentationFile>false</GenerateDocumentationFile>
4+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
55

66
<RepoRoot>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\'))</RepoRoot>
77
<RepoBuildPath>$(RepoRoot)build\</RepoBuildPath>

0 commit comments

Comments
 (0)