Skip to content

Commit 4d08114

Browse files
committed
a bit less warning
1 parent 12670ea commit 4d08114

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[*.cs]
2+
3+
# CS1591:
4+
dotnet_diagnostic.CS1591.severity = none

CodingSeb.ExpressionEvaluator.sln

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodingSeb.ExpressionEvaluat
66
EndProject
77
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CodingSeb.ExpressionEvaluator.Tests", "CodingSeb.ExpressionEvaluator.Tests\CodingSeb.ExpressionEvaluator.Tests.csproj", "{8794CB3B-EAB2-411D-B912-7AD3425D6C62}"
88
EndProject
9-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TryWindow", "TryWindow\TryWindow.csproj", "{D699FC0D-BE4C-4CDD-864F-E4C7821E1A21}"
9+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TryWindow", "TryWindow\TryWindow.csproj", "{D699FC0D-BE4C-4CDD-864F-E4C7821E1A21}"
10+
EndProject
11+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{402E2A75-2113-4744-8251-02E8C6A60BC8}"
12+
ProjectSection(SolutionItems) = preProject
13+
.editorconfig = .editorconfig
14+
EndProjectSection
1015
EndProject
1116
Global
1217
GlobalSection(SolutionConfigurationPlatforms) = preSolution

CodingSeb.ExpressionEvaluator/CodingSeb.ExpressionEvaluator.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
4545
</ItemGroup>
4646
<ItemGroup>
47+
<None Include="..\.editorconfig" Link=".editorconfig" />
4748
<None Include="..\Icon.png">
4849
<Pack>True</Pack>
4950
<PackagePath></PackagePath>

CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs

+1
Original file line numberDiff line numberDiff line change
@@ -4738,6 +4738,7 @@ public static IList<ExpressionOperator> FluidRemove(this IList<ExpressionOperato
47384738
#endregion
47394739

47404740
public partial class ClassOrEnumType
4741+
47414742
{
47424743
public Type Type { get; set; }
47434744
}

CodingSeb.ExpressionEvaluator/GlobalSuppressions.cs

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
using System.Diagnostics.CodeAnalysis;
77

88
[assembly: SuppressMessage("Style", "RE0001:Regex issue: {0}", Justification = "<Pending>", Scope = "member", Target = "~F:CodingSeb.ExpressionEvaluator.ExpressionEvaluator.numberRegexOrigPattern")]
9+
[assembly: SuppressMessage("General", "CS1591:Missing XML comment for publicly visible type or member 'Type_or_Member'", Justification = "<Pending>", Scope = "namespaceanddescendants", Target = "~N:CodingSeb.ExpressionEvaluator")]

0 commit comments

Comments
 (0)