You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
I have installed the extension but within my projects there is no analyze output to see.
I copied the example code for testing the extension: static void ParamsMethod(params string[] a) { ParamsMethod("Hello world!"); ParamsMethod(new[] { "blubb" }); } static void SoManyObjects() { var words = new[] { "foo", "bar", "baz", "beer" }; var actions = new List<Action>(); foreach (string word in words) { actions.Add(() => Trace.WriteLine(word)); } }
But within the editor or during the build the expected "warning" are not shown.
All I get are the default warnings of Resharper.
Additonal information:
In a simple "Hello world"-console app the warnings are showing up.
Within my legacy solution with several c# projects no warnings show up.
Does it only work with specific .net framework and c# language versions?
The text was updated successfully, but these errors were encountered:
VS 2017 15.8.1
I have installed the extension but within my projects there is no analyze output to see.
I copied the example code for testing the extension:
static void ParamsMethod(params string[] a) { ParamsMethod("Hello world!"); ParamsMethod(new[] { "blubb" }); } static void SoManyObjects() { var words = new[] { "foo", "bar", "baz", "beer" }; var actions = new List<Action>(); foreach (string word in words) { actions.Add(() => Trace.WriteLine(word)); } }
But within the editor or during the build the expected "warning" are not shown.
All I get are the default warnings of Resharper.
Additonal information:
In a simple "Hello world"-console app the warnings are showing up.
Within my legacy solution with several c# projects no warnings show up.
Does it only work with specific .net framework and c# language versions?
The text was updated successfully, but these errors were encountered: