-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Remove temporary .NET 9 workarounds (#2925)
* Remove installation of .NET 9 preview from workflows * Remove temp workaround for Visual Studio issue * Removed a stray .NET 9 preview install step * Centos 9 updated to .NET 9 finally * Tried enabling the Centos ARM64 test but it failed with a QEMU issue * Add back .NET 9 (not preview) install on Ubuntu --------- Co-authored-by: Marty Tippin <120425148+tippmar-nr@users.noreply.github.com>
- Loading branch information
1 parent
a75c81a
commit df366ea
Showing
6 changed files
with
14 additions
and
82 deletions.
There are no files selected for viewing
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
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
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
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
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 |
---|---|---|
@@ -1,27 +1,3 @@ | ||
<Project> | ||
<Import Project="$(MSBuildThisFileDirectory)\build\Versioning.targets" Condition="Exists('$(MSBuildThisFileDirectory)\build\Versioning.targets')" /> | ||
<!-- BEGIN workaround for https://github.com/dotnet/sdk/issues/43339; remove after updated to VS 17.12 or a future 17.11 patch --> | ||
<Target Name="WorkaroundDotnetSdk43339" BeforeTargets="ResolvePackageAssets" Condition=" '$(MSBuildRuntimeType)' == 'Full' and $([MSBuild]::VersionLessThan($(MSBuildVersion), 17.12.0))"> | ||
<PrimeSystemTextJson804 /> | ||
</Target> | ||
<UsingTask | ||
TaskName="PrimeSystemTextJson804" | ||
TaskFactory="RoslynCodeTaskFactory" | ||
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll" > | ||
<Task> | ||
<Code Type="Fragment" Language="cs"> | ||
<![CDATA[ | ||
try | ||
{ | ||
System.Reflection.Assembly.LoadFrom(@"$(MicrosoftNETBuildTasksDirectoryRoot)\..\..\..\DotnetTools\dotnet-format\BuildHost-net472\System.Text.Json.dll"); | ||
} | ||
catch | ||
{ | ||
// Best effort: if something moves in the SDK don't break the build. | ||
} | ||
]]> | ||
</Code> | ||
</Task> | ||
</UsingTask> | ||
<!-- END workaround for https://github.com/dotnet/sdk/issues/43339 --> | ||
</Project> |
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