File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 4848 <ItemGroup Condition =" '$(MSBuildProjectExtension)' == '.csproj'" >
4949 <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" PrivateAssets =" All" />
5050
51- <PackageReference Include =" SonarAnalyzer.CSharp" Version =" 10.8 .*" >
51+ <PackageReference Include =" SonarAnalyzer.CSharp" Version =" 10.12 .*" >
5252 <PrivateAssets >all</PrivateAssets >
5353 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
5454 </PackageReference >
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 8.0.407 " ,
4- "rollForward" : " latestMinor " ,
3+ "version" : " 8.0.411 " ,
4+ "rollForward" : " latestFeature " ,
55 "allowPrerelease" : false
66 }
77}
Original file line number Diff line number Diff line change @@ -316,6 +316,12 @@ public NetcodeSessionBuilder<TInput> WithPackageStats(bool enabled = true) =>
316316 public NetcodeSessionBuilder < TInput > WithPlayerStats ( bool enabled = true ) =>
317317 ConfigureProtocol ( o => o . CalculateRemotePlayerStats = enabled ) ;
318318
319+ /// <summary>
320+ /// Sets <see cref="NetcodeOptions.Protocol"/>.<see cref="ProtocolOptions.ConsistencyCheckEnabled" /> option
321+ /// </summary>
322+ public NetcodeSessionBuilder < TInput > WithConsistencyCheck ( bool enabled ) =>
323+ ConfigureProtocol ( o => o . ConsistencyCheckEnabled = enabled ) ;
324+
319325 /// <summary>
320326 /// Set the logger <see cref="ServicesConfig{TInput}.LogWriter" />
321327 /// </summary>
You can’t perform that action at this time.
0 commit comments