diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-02-13 18:47:26 +0100 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2019-02-16 00:43:56 +0100 |
| commit | e620bb95123f76c6eea92226a1e4c10d094ea65a (patch) | |
| tree | 3dae1d81fcc4c7ddf8d5a461d5dfbd463b45b7af | |
| parent | 8b04fe76332e70ab579f0f9ac84012ef310e73cf (diff) | |
Remove more doc warnings
| -rw-r--r-- | Jellyfin.Server/Jellyfin.Server.csproj | 2 | ||||
| -rw-r--r-- | jellyfin.ruleset | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Jellyfin.Server/Jellyfin.Server.csproj b/Jellyfin.Server/Jellyfin.Server.csproj index a6bf23f5b..1f2287a75 100644 --- a/Jellyfin.Server/Jellyfin.Server.csproj +++ b/Jellyfin.Server/Jellyfin.Server.csproj @@ -12,7 +12,7 @@ <!-- We need C# 7.1 for async main--> <LangVersion>latest</LangVersion> <!-- Disable ducumentation warnings (for now) --> - <NoWarn>SA1600</NoWarn> + <NoWarn>SA1600;CS1591</NoWarn> </PropertyGroup> <ItemGroup> diff --git a/jellyfin.ruleset b/jellyfin.ruleset index 25d11d7d3..4381349ca 100644 --- a/jellyfin.ruleset +++ b/jellyfin.ruleset @@ -14,4 +14,8 @@ <!-- disable warning SA1633: The file header is missing or not located at the top of the file --> <Rule Id="SA1633" Action="None" /> </Rules> + <Rules AnalyzerId="Microsoft.CodeAnalysis.FxCopAnalyzers" RuleNamespace="Microsoft.Design"> + <!-- disable warning CA1054: Change the type of parameter url from string to System.Uri --> + <Rule Id="CA1054" Action="None" /> + </Rules> </RuleSet> |
