Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ApiMark.MSBuild/ApiMark.MSBuild.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
</ItemGroup>

<ItemGroup>
<!-- MSBuild host provides these assemblies at runtime; compile-only references keep them out of output -->
<PackageReference Include="Microsoft.Build.Framework" Version="17.8.43" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.8.43" ExcludeAssets="runtime" />
<!-- MSBuild host provides these assemblies at runtime; PrivateAssets="all" keeps them out of the packed .nuspec -->
<PackageReference Include="Microsoft.Build.Framework" Version="17.8.43" ExcludeAssets="runtime" PrivateAssets="all" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.8.43" ExcludeAssets="runtime" PrivateAssets="all" />
Comment thread
Malcolmnixon marked this conversation as resolved.
Outdated
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.7.0" PrivateAssets="All" />
</ItemGroup>
Expand Down
Loading