Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
50d8a9f
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 13, 2022
f4b957c
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 14, 2022
9f9464b
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 15, 2022
c830a4f
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 16, 2022
149b6d3
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 17, 2022
7d38384
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 18, 2022
d3fc84d
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 18, 2022
8119940
Fix consumption of dotnet/runtime after branding switch to 8.0
jkoritzinsky Aug 18, 2022
3ed958e
Remove pinned package references. Now that HostModel is using 6.0.0 a…
jkoritzinsky Aug 18, 2022
c237c8e
Merge branch 'main' of github.com:dotnet/sdk into darc-main-b89ef279-…
jkoritzinsky Aug 18, 2022
4ddab3c
Update Blazor WASM Baselines for new files (#27201)
TanayParikh Aug 18, 2022
37f6666
Revert "Remove pinned package references. Now that HostModel is using…
jkoritzinsky Aug 19, 2022
d9a2f43
Rev HostModel dependencies' versions
am11 Aug 18, 2022
c53cffb
Bump global SystemReflectionMetadataVersion
MichalStrehovsky Aug 19, 2022
954e9bc
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 20, 2022
c3a59e8
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 21, 2022
c1b3ba8
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 22, 2022
92d7d09
Fix mismatched runtime versions
jkoritzinsky Aug 22, 2022
2d19ab8
Remove js-module-crypto handling in the SDK
eerhardt Aug 19, 2022
3308817
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] Aug 23, 2022
a3d3230
Update ASP.NET baselines for latest runtime version
eerhardt Aug 23, 2022
098e370
Fix mismatched runtime versions
eerhardt Aug 23, 2022
eb5ed3b
Revert "Bump global SystemReflectionMetadataVersion"
eerhardt Aug 23, 2022
e552c9b
Pin version to 6.0.0. This solves the binding redirect issue by ensur…
jkoritzinsky Aug 23, 2022
8cd88bb
Merge branch 'darc-main-b89ef279-c278-4e48-9a05-29840bb46c47' of gith…
jkoritzinsky Aug 23, 2022
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
Prev Previous commit
Next Next commit
Revert "Remove pinned package references. Now that HostModel is using…
… 6.0.0 and MSBuild has the binding redirects for SCI, we can remove these references."

This reverts commit 3ed958e.
  • Loading branch information
jkoritzinsky committed Aug 19, 2022
commit 37f6666939c26c2a207e7b135d93f34b195f297b
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@
<ProjectReference Include="..\..\ApiCompat\Microsoft.DotNet.ApiCompat.Task\Microsoft.DotNet.ApiCompat.Task.csproj" OutputItemType="ReferenceCopyLocalPaths" ReferenceOutputAssembly="false" />
</ItemGroup>


<!-- Packages that are in-box for .NET Core, so we only need to reference them for .NET Framework -->
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(DotNetBuildFromSource)' != 'true'">
<!--
MSBuild depends on a new version of SRM/SCI; HostModel a very old one.
In order to keep working with MSBuild 17.2, which had binding redirects
for SCI 0-5.0.0.0 but not 6, this task must compile against 5, even
though that's not the very latest. -->
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" />
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" />
</ItemGroup>

<!-- These are loaded from the CLI's copy on .NET Core, we don't need to duplicate them on disk -->
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
<PackageReference Update="Microsoft.Extensions.DependencyModel" ExcludeAssets="Runtime" />
Expand Down