diff --git a/src/ErrorProne.NET.Cli/ErrorProne.NET.Cli.csproj b/src/ErrorProne.NET.Cli/ErrorProne.NET.Cli.csproj
index ef75841..3f4e4e9 100644
--- a/src/ErrorProne.NET.Cli/ErrorProne.NET.Cli.csproj
+++ b/src/ErrorProne.NET.Cli/ErrorProne.NET.Cli.csproj
@@ -3,7 +3,7 @@
Exe
- net46
+ net472
true
diff --git a/src/ErrorProne.NET.Core/ErrorProne.NET.Core.csproj b/src/ErrorProne.NET.Core/ErrorProne.NET.Core.csproj
index d2856fc..54c05c7 100644
--- a/src/ErrorProne.NET.Core/ErrorProne.NET.Core.csproj
+++ b/src/ErrorProne.NET.Core/ErrorProne.NET.Core.csproj
@@ -1,7 +1,7 @@
- netstandard1.3
+ netstandard2.0
diff --git a/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj b/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj
index 6c66cc5..7b430b9 100644
--- a/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj
+++ b/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj
@@ -1,7 +1,7 @@
- netstandard1.3
+ netstandard2.0
ErrorProne.Net.CoreAnalyzers.CodeFixes
ErrorProne.NET
false
@@ -10,14 +10,9 @@
true
-
- netstandard1.3
-
-
ErrorProne.NET.CoreAnalyzers
Sergey Teplyakov
- 1.3.0.0
https://github.com/SergeyTeplyakov/ErrorProne.NET/blob/master/LICENSE
https://github.com/SergeyTeplyakov/ErrorProne.NET/
false
diff --git a/src/ErrorProne.NET.CoreAnalyzers/ErrorProne.NET.CoreAnalyzers.csproj b/src/ErrorProne.NET.CoreAnalyzers/ErrorProne.NET.CoreAnalyzers.csproj
index 28e0573..c4b719b 100644
--- a/src/ErrorProne.NET.CoreAnalyzers/ErrorProne.NET.CoreAnalyzers.csproj
+++ b/src/ErrorProne.NET.CoreAnalyzers/ErrorProne.NET.CoreAnalyzers.csproj
@@ -1,7 +1,7 @@
- netstandard1.3
+ netstandard2.0
ErrorProne.Net.CoreAnalyzers
ErrorProne.NET
diff --git a/src/ErrorProne.NET.StructAnalyzers.CodeFixes/ErrorProne.NET.StructAnalyzers.CodeFixes.csproj b/src/ErrorProne.NET.StructAnalyzers.CodeFixes/ErrorProne.NET.StructAnalyzers.CodeFixes.csproj
index 69e71e9..e3d3ef9 100644
--- a/src/ErrorProne.NET.StructAnalyzers.CodeFixes/ErrorProne.NET.StructAnalyzers.CodeFixes.csproj
+++ b/src/ErrorProne.NET.StructAnalyzers.CodeFixes/ErrorProne.NET.StructAnalyzers.CodeFixes.csproj
@@ -1,7 +1,7 @@
- netstandard1.3
+ netstandard2.0
ErrorProne.Net.StructAnalyzers.CodeFixes
ErrorProne.Net.StructAnalyzers
false
diff --git a/src/ErrorProne.NET.StructAnalyzers/ErrorProne.NET.StructAnalyzers.csproj b/src/ErrorProne.NET.StructAnalyzers/ErrorProne.NET.StructAnalyzers.csproj
index a9384ca..77b6cc5 100644
--- a/src/ErrorProne.NET.StructAnalyzers/ErrorProne.NET.StructAnalyzers.csproj
+++ b/src/ErrorProne.NET.StructAnalyzers/ErrorProne.NET.StructAnalyzers.csproj
@@ -1,7 +1,7 @@
- netstandard1.3
+ netstandard2.0
ErrorProne.Net.StructAnalyzers
ErrorProne.Net.StructAnalyzers
diff --git a/src/ErrorProne.NET.StructAnalyzers/ReadOnlinessAnalyzer.cs b/src/ErrorProne.NET.StructAnalyzers/ReadOnlinessAnalyzer.cs
index 295392d..91f21af 100644
--- a/src/ErrorProne.NET.StructAnalyzers/ReadOnlinessAnalyzer.cs
+++ b/src/ErrorProne.NET.StructAnalyzers/ReadOnlinessAnalyzer.cs
@@ -22,7 +22,7 @@ public enum ReadOnlyRefFriendliness
///
/// A struct can be used in readonly ref contexts because the struct has fields only and doesn't have props or methods.
///
- FrienlyPoco,
+ FriendlyPoco,
///
/// A should not be used in readonly ref contexts because it consists of properties and methods,
@@ -32,7 +32,7 @@ public enum ReadOnlyRefFriendliness
///
/// A struct has fields and methods/properties, so it is impossible to decide immediately whether its safe to use it
- /// in readonly ref contexts or not. Further analysis is reuired (based on how variable is used).
+ /// in readonly ref contexts or not. Further analysis is required (based on how variable is used).
///
Unknown,
}
@@ -94,7 +94,7 @@ public static ReadOnlyRefFriendliness AnalyzeReadOnlyFriendliness(this ITypeSymb
if (!hasPropertiesOrMethods)
{
// No methods/properties: POCO or empty
- return ReadOnlyRefFriendliness.FrienlyPoco;
+ return ReadOnlyRefFriendliness.FriendlyPoco;
}
if (!hasFields)
diff --git a/src/ErrorProne.NET.Vsix/ErrorProne.NET.Vsix.csproj b/src/ErrorProne.NET.Vsix/ErrorProne.NET.Vsix.csproj
index 4bd4fc8..04b58d6 100644
--- a/src/ErrorProne.NET.Vsix/ErrorProne.NET.Vsix.csproj
+++ b/src/ErrorProne.NET.Vsix/ErrorProne.NET.Vsix.csproj
@@ -3,7 +3,7 @@
- net46
+ net472
ErrorProne.NET
@@ -35,7 +35,7 @@
-
+
diff --git a/src/RoslynNunitTestRunner/ErrorProne.NET.TestHelpers.csproj b/src/RoslynNunitTestRunner/ErrorProne.NET.TestHelpers.csproj
index 82f8de9..8dda03b 100644
--- a/src/RoslynNunitTestRunner/ErrorProne.NET.TestHelpers.csproj
+++ b/src/RoslynNunitTestRunner/ErrorProne.NET.TestHelpers.csproj
@@ -1,7 +1,7 @@
- netstandard1.6
+ netstandard2.0