Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion src/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,21 @@ dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case

#### The Nullable Knights ####

dotnet_diagnostic.CS8625.severity = none
dotnet_diagnostic.CS8603.severity = none
dotnet_diagnostic.CS8618.severity = none
dotnet_diagnostic.CS8600.severity = none
dotnet_diagnostic.CS8602.severity = none
dotnet_diagnostic.CS8604.severity = none
dotnet_diagnostic.CS8622.severity = none
dotnet_diagnostic.CS8601.severity = none
dotnet_diagnostic.CS8605.severity = none
dotnet_diagnostic.CS0649.severity = none
dotnet_diagnostic.CS0169.severity = none
dotnet_diagnostic.CS1591.severity = none

#### Analyzers Rules ####

## Microsoft.CodeAnalysis.CSharp.CodeStyle
Expand Down Expand Up @@ -4849,4 +4864,4 @@ dotnet_diagnostic.xUnit2019.severity = none
dotnet_diagnostic.xUnit3000.severity = warning

# xUnit3001: Classes that implement Xunit.Abstractions.IXunitSerializable must have a public parameterless constructor
dotnet_diagnostic.xUnit3001.severity = warning
dotnet_diagnostic.xUnit3001.severity = warning
3 changes: 1 addition & 2 deletions src/ColumnizerLib/ColumnizerLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
<RootNamespace>LogExpert</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<DocumentationFile>$(SolutionDir)..\bin\Docs\ColumnizerLib.xml</DocumentationFile>
<IsTestProject>false</IsTestProject>
<IsTestProject>false</IsTestProject>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>
<NoWarn>CS1591;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>False</Optimize>
Expand Down
1 change: 0 additions & 1 deletion src/LogExpert.Core/LogExpert.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\Solution Items\Key.snk</AssemblyOriginatorKeyFile>
<PublishAot>false</PublishAot>
<NoWarn>CS8625;CS8603;CS8618;CS8600;CS8603;CS8602;CS8604;CS8622;CS8601;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/LogExpert.UI/LogExpert.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<ForceDesignerDPIUnaware>true</ForceDesignerDPIUnaware>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>CS8625;CS8603;CS8618;CS8600;CS8603;CS8602;CS8604;CS8622;CS8601;CS8605;</NoWarn>
<Nullable>enable</Nullable>
<PublishAot>false</PublishAot>
<SignAssembly>True</SignAssembly>
Expand Down
1 change: 0 additions & 1 deletion src/LogExpert/LogExpert.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<ImplicitUsings>enable</ImplicitUsings>
<IsTestProject>False</IsTestProject>
<NoWarn>CS1591;</NoWarn>
<OutputPath>$(SolutionDir)..\bin\$(Configuration)</OutputPath>
<OutputType>WinExe</OutputType>
<SignAssembly>True</SignAssembly>
Expand Down
1 change: 0 additions & 1 deletion src/PluginRegistry/LogExpert.PluginRegistry.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\Solution Items\Key.snk</AssemblyOriginatorKeyFile>
<NoWarn>CS8600;CS8603;CS8618;</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading