Skip to content

Commit

Permalink
Don't build non shared framework refs in ref build (#68275)
Browse files Browse the repository at this point in the history
* Don't build non shared framework refs in ref build
  • Loading branch information
ViktorHofer committed Apr 25, 2022
1 parent cb5f0af commit a9d25b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/libraries/System.Net.Http/ref/System.Net.Http.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<ItemGroup>
<ProjectReference Include="..\..\System.Runtime\ref\System.Runtime.csproj" />
<ProjectReference Include="..\..\System.Net.Primitives\ref\System.Net.Primitives.csproj" />
<ProjectReference Include="..\..\System.Net.Quic\ref\System.Net.Quic.csproj" />
<ProjectReference Include="..\..\System.Net.Sockets\ref\System.Net.Sockets.csproj" />
<ProjectReference Include="..\..\System.Net.Security\ref\System.Net.Security.csproj" />
<ProjectReference Include="..\..\System.Security.Cryptography.X509Certificates\ref\System.Security.Cryptography.X509Certificates.csproj" />
Expand Down
3 changes: 2 additions & 1 deletion src/libraries/sfx-ref.proj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<NonNetCoreAppProject Include="@(AnyProject)"
Exclude="@(NetCoreAppLibrary->'%(Identity)\ref\%(Identity).csproj')" />
<ProjectReference Include="@(AnyProject)"
Exclude="@(NonNetCoreAppProject)" />
Exclude="@(NonNetCoreAppProject);
@(NetCoreAppLibraryNoReference->'%(Identity)\ref\%(Identity).csproj')" />
</ItemGroup>

</Project>

0 comments on commit a9d25b6

Please sign in to comment.