File tree Expand file tree Collapse file tree 6 files changed +18
-10
lines changed Expand file tree Collapse file tree 6 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -295,6 +295,9 @@ dotnet_diagnostic.IDE0049.severity = suggestion
295
295
# Use compound assignment
296
296
dotnet_diagnostic.IDE0054.severity = suggestion
297
297
298
+ # Fix formatting
299
+ dotnet_diagnostic.IDE0055.severity = suggestion
300
+
298
301
# Indexing can be simplified
299
302
dotnet_diagnostic.IDE0056.severity = suggestion
300
303
@@ -387,6 +390,9 @@ dotnet_diagnostic.IDE0241.severity = suggestion
387
390
# Struct can be made 'readonly'
388
391
dotnet_diagnostic.IDE0250.severity = suggestion
389
392
393
+ # Struct methods can be made 'readonly'
394
+ dotnet_diagnostic.IDE0251.severity = suggestion
395
+
390
396
# Null check can be simplified
391
397
dotnet_diagnostic.IDE0270.severity = suggestion
392
398
Original file line number Diff line number Diff line change 13
13
<PackageVersion Include =" Microsoft.CodeAnalysis.Collections" Version =" $(MicrosoftCodeAnalysisCollectionsVersion)" />
14
14
<PackageVersion Include =" Microsoft.DotNet.XUnitExtensions" Version =" $(MicrosoftDotNetXUnitExtensionsVersion)" />
15
15
<PackageVersion Include =" Microsoft.IO.Redist" Version =" $(MicrosoftIORedistVersion)" />
16
+ <PackageVersion Include =" Microsoft.Net.Compilers.Toolset" Version =" $(MicrosoftNetCompilersToolsetVersion)" Condition =" '$(UsingToolMicrosoftNetCompilers)' != 'true'" />
16
17
<PackageVersion Include =" NuGet.Build.Tasks" Version =" $(NuGetBuildTasksVersion)" />
17
18
<PackageVersion Include =" NuGet.Frameworks" Version =" $(NuGetBuildTasksVersion)" />
18
19
<PackageVersion Include =" System.Collections.Immutable" Version =" $(SystemCollectionsImmutableVersion)" />
Original file line number Diff line number Diff line change 6
6
<Sha >91616785a1a6578c83f7e93d98c34a1eb83d6223</Sha >
7
7
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
8
8
</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 " >
10
10
<Uri >https://github.com/nuget/nuget.client</Uri >
11
- <Sha >d22c6743bf6237c39b98d5d680e06e6c33e97f1c </Sha >
11
+ <Sha >f3bb337e310ce44abda4ad73cdb0755ed940809d </Sha >
12
12
</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 " >
14
14
<Uri >https://github.com/dotnet/roslyn</Uri >
15
- <Sha >85f9dbfea5955ec9cdad3417dba40034da74fb93</Sha >
15
+ <Sha >4cbfec964e59687cd9cc8601df42b936c9c06f63</Sha >
16
+ <SourceBuild RepoName =" roslyn" ManagedOnly =" true" />
16
17
</Dependency >
17
18
<Dependency Name =" Microsoft.DotNet.XUnitExtensions" Version =" 6.0.0-beta.23313.5" >
18
19
<Uri >https://github.com/dotnet/arcade</Uri >
Original file line number Diff line number Diff line change 49
49
Otherwise, this version of dotnet will not be installed and the build will error out. -->
50
50
<DotNetCliVersion >$([System.Text.RegularExpressions.Regex]::Match($([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)..\global.json')), '"dotnet": "([^"]*)"').Groups.get_Item(1))</DotNetCliVersion >
51
51
<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 >
53
53
<MicrosoftExtensionsDependencyModelVersion >7.0.0</MicrosoftExtensionsDependencyModelVersion >
54
54
<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 >
57
57
<SystemRuntimeCompilerServicesUnsafeVersion >6.0.0</SystemRuntimeCompilerServicesUnsafeVersion >
58
58
<SystemTextJsonVersion >7.0.0</SystemTextJsonVersion >
59
59
<SystemThreadingTasksDataflowVersion >7.0.0</SystemThreadingTasksDataflowVersion >
Original file line number Diff line number Diff line change 3
3
"allowPrerelease" : true
4
4
},
5
5
"tools" : {
6
- "dotnet" : " 7.0.200 " ,
6
+ "dotnet" : " 7.0.304 " ,
7
7
"vs" : {
8
8
"version" : " 17.4.1"
9
9
},
10
10
"xcopy-msbuild" : " 17.4.1"
11
11
},
12
12
"msbuild-sdks" : {
13
- "Microsoft.DotNet.Arcade.Sdk" : " 6.0.0-beta.23167.1 "
13
+ "Microsoft.DotNet.Arcade.Sdk" : " 6.0.0-beta.23313.5 "
14
14
}
15
15
}
Original file line number Diff line number Diff line change 1016
1016
<PackageReference Include =" System.Security.Permissions" />
1017
1017
<PackageReference Include =" System.Threading.Tasks.Dataflow" />
1018
1018
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" />
1020
1020
</ItemGroup >
1021
1021
1022
1022
<ItemGroup Condition =" '$(MonoBuild)' == 'true'" >
You can’t perform that action at this time.
0 commit comments