Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release/dev17.6 to release/dev17.8 #73978

Merged
merged 28 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0b97669
Update dependencies from https://github.com/dotnet/arcade build 20240…
dotnet-maestro[bot] Jun 5, 2024
1276451
Backport test fixes from #70248
JoeRobich Jun 5, 2024
5e7daff
Backport pragma disable from #70248
JoeRobich Jun 5, 2024
e7ebb8a
Pass Refs as ref
JoeRobich Jun 5, 2024
7efe8d8
Backport XUnit.targets change from #68573
JoeRobich Jun 5, 2024
d0fc8b7
Revert "Pass Refs as ref"
JoeRobich Jun 6, 2024
544f07f
Backport removing xunit.assert from #68573
JoeRobich Jun 6, 2024
3333f90
Disable a warning.
JoeRobich Jun 6, 2024
8f8e3d1
Revert "Disable a warning."
JoeRobich Jun 6, 2024
995239d
Restore newline
JoeRobich Jun 6, 2024
de68f73
Move to a newer SDK
JoeRobich Jun 6, 2024
119a8d4
Fix sdk version
JoeRobich Jun 6, 2024
8644b2c
Use a more recent VS
JoeRobich Jun 6, 2024
91a5a0f
Revert to the SDK used in Arcade and update VS version
JoeRobich Jun 6, 2024
01c7636
Go back to the .NET 8p7 SDK which predates the ref readonly changes m…
JoeRobich Jun 6, 2024
f435dbb
Revert "Backport test fixes from #70428"
JoeRobich Jun 7, 2024
b9076bb
Require VS 17.6 for build
JoeRobich Jun 7, 2024
1c9c747
Backport test fixes from #68212
JoeRobich Jun 7, 2024
a254870
Merge remote-tracking branch 'origin/release/dev17.6' into darc-relea…
JoeRobich Jun 10, 2024
7cdcef3
Skip failing test.
JoeRobich Jun 11, 2024
30c81a5
Backport RestoreSource from #73532
JoeRobich Jun 11, 2024
be2743f
Merge branch 'release/dev17.6' into darc-release/dev17.6-f1969d28-bf0…
JoeRobich Jun 12, 2024
e58065d
Merge pull request #73864 from dotnet/darc-release/dev17.6-f1969d28-b…
JoeRobich Jun 12, 2024
fbce284
Move builds to 1ES PT
JoeRobich Jun 12, 2024
ac1154a
Upgrade MicrosoftCodeAnalysisTestingVersion to 1.1.2-beta1.24121.1 (#…
akhera99 Jun 13, 2024
553f618
Merge pull request #73973 from dotnet/dev/jorobich/17.6-1espt
JoeRobich Jun 13, 2024
9645d13
Update version for system.data.sqlclient to 4.8.6 (#73975)
akhera99 Jun 13, 2024
074c7c1
Merge branch 'release/dev17.6' into release/dev17.8
jjonescz Jun 13, 2024
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
2 changes: 1 addition & 1 deletion eng/InternalTools.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
https://devdiv.pkgs.visualstudio.com/_packaging/Engineering/nuget/v3/index.json;
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json;
</RestoreSources>
<RestoreSources>
<RestoreSources>
$(RestoreSources);
https://pkgs.dev.azure.com/devdiv/_packaging/dotnet-core-internal-tooling/nuget/v3/index.json
</RestoreSources>
Expand Down
2 changes: 1 addition & 1 deletion src/Compilers/CSharp/Test/EndToEnd/EndToEndTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ bool runTestAndCatch(int depth)
// This test is a canary attempting to make sure that we don't regress the # of fluent calls that
// the compiler can handle.
[WorkItem(16669, "https://github.com/dotnet/roslyn/issues/16669")]
[ConditionalFact(typeof(WindowsOrLinuxOnly)), WorkItem(34880, "https://github.com/dotnet/roslyn/issues/34880")]
[ConditionalFact(typeof(WindowsOrLinuxOnly), AlwaysSkip = "https://github.com/dotnet/roslyn/issues/67912"), WorkItem(34880, "https://github.com/dotnet/roslyn/issues/34880")]
public void OverflowOnFluentCall()
{
int numberFluentCalls = (IntPtr.Size, ExecutionConditionUtil.Configuration) switch
Expand Down
Loading