-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
roslyn-ls: 4.13.0-3.24577.4 -> 4.13.0-3.25051.1
Added a git-patch to drop net6.0 dependency, which is now EOL. See #372476 (comment)
- Loading branch information
1 parent
0581f46
commit d9b2b97
Showing
3 changed files
with
64 additions
and
24 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
diff --git a/eng/targets/TargetFrameworks.props b/eng/targets/TargetFrameworks.props | ||
index 2dddaff1560..bc8fd1938d5 100644 | ||
--- a/eng/targets/TargetFrameworks.props | ||
+++ b/eng/targets/TargetFrameworks.props | ||
@@ -17,7 +17,7 @@ | ||
<NetVS>net8.0</NetVS> | ||
<NetVSCode>net8.0</NetVSCode> | ||
<NetVSShared>net8.0</NetVSShared> | ||
- <NetRoslynBuildHostNetCoreVersion>net6.0</NetRoslynBuildHostNetCoreVersion> | ||
+ <NetRoslynBuildHostNetCoreVersion>net8.0</NetRoslynBuildHostNetCoreVersion> | ||
<NetRoslynNext>net9.0</NetRoslynNext> | ||
</PropertyGroup> | ||
|
||
diff --git a/src/Workspaces/Core/MSBuild.BuildHost/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.csproj b/src/Workspaces/Core/MSBuild.BuildHost/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.csproj | ||
index 8101f56b8be..1733955dc3d 100644 | ||
--- a/src/Workspaces/Core/MSBuild.BuildHost/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.csproj | ||
+++ b/src/Workspaces/Core/MSBuild.BuildHost/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.csproj | ||
@@ -28,6 +28,12 @@ | ||
--> | ||
<_MsbuildVersion>17.3.4</_MsbuildVersion> | ||
</PropertyGroup> | ||
+ <PropertyGroup> | ||
+ <_MsbuildFramework>$(TargetFramework)</_MsbuildFramework> | ||
+ </PropertyGroup> | ||
+ <PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
+ <_MsbuildFramework>net6.0</_MsbuildFramework> | ||
+ </PropertyGroup> | ||
<ItemGroup Condition="'$(DotNetBuildSourceOnly)' == 'true'"> | ||
<PackageReference Include="Microsoft.Build" VersionOverride="$(_MsbuildVersion)" ExcludeAssets="Runtime" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.Build.Framework" VersionOverride="$(_MsbuildVersion)" ExcludeAssets="Runtime" /> | ||
@@ -36,10 +42,10 @@ | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(DotNetBuildSourceOnly)' != 'true'"> | ||
<!-- Reference MSBuild directly to avoid redistributing its package closure and including the dependencies in deps.json file. --> | ||
- <PackageDownloadAndReference Include="Microsoft.Build" Version="$(_MsbuildVersion)" Folder="ref/$(TargetFramework)" /> | ||
- <PackageDownloadAndReference Include="Microsoft.Build.Framework" Version="$(_MsbuildVersion)" Folder="ref/$(TargetFramework)" /> | ||
- <PackageDownloadAndReference Include="Microsoft.Build.Tasks.Core" Version="$(_MsbuildVersion)" Folder="ref/$(TargetFramework)" /> | ||
- <PackageDownloadAndReference Include="Microsoft.Build.Utilities.Core" Version="$(_MsbuildVersion)" Folder="ref/$(TargetFramework)" /> | ||
+ <PackageDownloadAndReference Include="Microsoft.Build" Version="$(_MsbuildVersion)" Folder="ref/$(_MsbuildFramework)" /> | ||
+ <PackageDownloadAndReference Include="Microsoft.Build.Framework" Version="$(_MsbuildVersion)" Folder="ref/$(_MsbuildFramework)" /> | ||
+ <PackageDownloadAndReference Include="Microsoft.Build.Tasks.Core" Version="$(_MsbuildVersion)" Folder="ref/$(_MsbuildFramework)" /> | ||
+ <PackageDownloadAndReference Include="Microsoft.Build.Utilities.Core" Version="$(_MsbuildVersion)" Folder="ref/$(_MsbuildFramework)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Build.Locator" PrivateAssets="All" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters