Skip to content

Commit e1b829c

Browse files
authored
Merge pull request #8906 from dotnet/JanKrivanek-patch-6
[vs17.6] Update sdk version to bump pulled runtime
2 parents 096e00a + 51f1b16 commit e1b829c

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,9 @@ dotnet_diagnostic.IDE0049.severity = suggestion
295295
# Use compound assignment
296296
dotnet_diagnostic.IDE0054.severity = suggestion
297297

298+
# Fix formatting
299+
dotnet_diagnostic.IDE0055.severity = suggestion
300+
298301
# Indexing can be simplified
299302
dotnet_diagnostic.IDE0056.severity = suggestion
300303

@@ -387,6 +390,9 @@ dotnet_diagnostic.IDE0241.severity = suggestion
387390
# Struct can be made 'readonly'
388391
dotnet_diagnostic.IDE0250.severity = suggestion
389392

393+
# Struct methods can be made 'readonly'
394+
dotnet_diagnostic.IDE0251.severity = suggestion
395+
390396
# Null check can be simplified
391397
dotnet_diagnostic.IDE0270.severity = suggestion
392398

eng/Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<PackageVersion Include="Microsoft.CodeAnalysis.Collections" Version="$(MicrosoftCodeAnalysisCollectionsVersion)" />
1414
<PackageVersion Include="Microsoft.DotNet.XUnitExtensions" Version="$(MicrosoftDotNetXUnitExtensionsVersion)" />
1515
<PackageVersion Include="Microsoft.IO.Redist" Version="$(MicrosoftIORedistVersion)" />
16+
<PackageVersion Include="Microsoft.Net.Compilers.Toolset" Version="$(MicrosoftNetCompilersToolsetVersion)" Condition="'$(UsingToolMicrosoftNetCompilers)' != 'true'" />
1617
<PackageVersion Include="NuGet.Build.Tasks" Version="$(NuGetBuildTasksVersion)" />
1718
<PackageVersion Include="NuGet.Frameworks" Version="$(NuGetBuildTasksVersion)" />
1819
<PackageVersion Include="System.Collections.Immutable" Version="$(SystemCollectionsImmutableVersion)" />

eng/Version.Details.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
<Sha>91616785a1a6578c83f7e93d98c34a1eb83d6223</Sha>
77
<SourceBuild RepoName="arcade" ManagedOnly="true" />
88
</Dependency>
9-
<Dependency Name="NuGet.Build.Tasks" Version="6.4.0-preview.3.74">
9+
<Dependency Name="NuGet.Build.Tasks" Version="6.7.0-preview.2.51">
1010
<Uri>https://github.com/nuget/nuget.client</Uri>
11-
<Sha>d22c6743bf6237c39b98d5d680e06e6c33e97f1c</Sha>
11+
<Sha>f3bb337e310ce44abda4ad73cdb0755ed940809d</Sha>
1212
</Dependency>
13-
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.4.0-2.22458.3">
13+
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.7.0-3.23311.1">
1414
<Uri>https://github.com/dotnet/roslyn</Uri>
15-
<Sha>85f9dbfea5955ec9cdad3417dba40034da74fb93</Sha>
15+
<Sha>4cbfec964e59687cd9cc8601df42b936c9c06f63</Sha>
16+
<SourceBuild RepoName="roslyn" ManagedOnly="true" />
1617
</Dependency>
1718
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="6.0.0-beta.23313.5">
1819
<Uri>https://github.com/dotnet/arcade</Uri>

eng/Versions.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
Otherwise, this version of dotnet will not be installed and the build will error out. -->
5050
<DotNetCliVersion>$([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)..\global.json')), '"dotnet": "([^"]*)"').Groups.get_Item(1))</DotNetCliVersion>
5151
<MicrosoftCodeAnalysisCollectionsVersion>4.2.0-1.22102.8</MicrosoftCodeAnalysisCollectionsVersion>
52-
<MicrosoftDotNetXUnitExtensionsVersion>6.0.0-beta.23167.1</MicrosoftDotNetXUnitExtensionsVersion>
52+
<MicrosoftDotNetXUnitExtensionsVersion>6.0.0-beta.23313.5</MicrosoftDotNetXUnitExtensionsVersion>
5353
<MicrosoftExtensionsDependencyModelVersion>7.0.0</MicrosoftExtensionsDependencyModelVersion>
5454
<MicrosoftIORedistVersion>6.0.0</MicrosoftIORedistVersion>
55-
<MicrosoftNetCompilersToolsetVersion>4.6.0-2.23166.9</MicrosoftNetCompilersToolsetVersion>
56-
<NuGetBuildTasksVersion>6.5.0-rc.149</NuGetBuildTasksVersion>
55+
<MicrosoftNetCompilersToolsetVersion>4.7.0-3.23311.1</MicrosoftNetCompilersToolsetVersion>
56+
<NuGetBuildTasksVersion>6.7.0-preview.2.51</NuGetBuildTasksVersion>
5757
<SystemRuntimeCompilerServicesUnsafeVersion>6.0.0</SystemRuntimeCompilerServicesUnsafeVersion>
5858
<SystemTextJsonVersion>7.0.0</SystemTextJsonVersion>
5959
<SystemThreadingTasksDataflowVersion>7.0.0</SystemThreadingTasksDataflowVersion>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"allowPrerelease": true
44
},
55
"tools": {
6-
"dotnet": "7.0.200",
6+
"dotnet": "7.0.304",
77
"vs": {
88
"version": "17.4.1"
99
},
1010
"xcopy-msbuild": "17.4.1"
1111
},
1212
"msbuild-sdks": {
13-
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.23167.1"
13+
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.23313.5"
1414
}
1515
}

src/Tasks/Microsoft.Build.Tasks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@
10161016
<PackageReference Include="System.Security.Permissions" />
10171017
<PackageReference Include="System.Threading.Tasks.Dataflow" />
10181018

1019-
<Content Include="$(NuGetPackageRoot)microsoft.net.compilers.toolset\$(MicrosoftNetCompilersToolsetVersion)\tasks\net6.0\**\*" CopyToOutputDirectory="PreserveNewest" LinkBase="Roslyn" />
1019+
<Content Include="$(NuGetPackageRoot)microsoft.net.compilers.toolset\$(MicrosoftNetCompilersToolsetVersion)\tasks\netcore\**\*" CopyToOutputDirectory="PreserveNewest" LinkBase="Roslyn" />
10201020
</ItemGroup>
10211021

10221022
<ItemGroup Condition="'$(MonoBuild)' == 'true'">

0 commit comments

Comments
 (0)