Skip to content

Commit f2da05b

Browse files
committed
Upgrade R# SDK
1 parent f85a4f5 commit f2da05b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<SdkVersion>2021.3.0</SdkVersion>
4+
<SdkVersion>2021.3.3</SdkVersion>
55
</PropertyGroup>
66
<!-- https://jetbrains.slack.com/archives/CBZ36NH7C/p1628090127002200 -->
77
<PropertyGroup>

Diff for: build/Build.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ protected override void OnBuildInitialized()
147147
// Gradle writes warnings to stderr
148148
// By default logger will write stderr as errors
149149
// AppVeyor writes errors as special messages and stops the build if such messages more than 500
150-
Logger.Normal(s);
150+
// ReSharper disable once TemplateIsNotCompileTimeConstantProblem
151+
Serilog.Log.Debug(s);
151152
});
152153

153154
CopyFile(RootDirectory / "gradle-build" / "distributions" / $"rider-structured-logging-{ExtensionVersion}.zip", RiderPackagePath, FileExistsPolicy.Overwrite);

Diff for: src/ReSharper.Structured.Logging/Analyzer/ComplexObjectDestructureAnalyzer.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System;
21
using System.Linq;
32

43
using JetBrains.Metadata.Reader.API;

0 commit comments

Comments
 (0)