Skip to content

Commit

Permalink
suppress warnings in assemblyinfo.cs files
Browse files Browse the repository at this point in the history
  • Loading branch information
aparajit-pratap committed Feb 20, 2024
1 parent 3602390 commit 00c7e56
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/DynamoCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,7 @@
[assembly: InternalsVisibleTo("DocumentationBrowserViewExtension")]
[assembly: InternalsVisibleTo("Notifications")]


// Disable PublicAPIAnalyzer errors for this type as they're already added to the public API text file
#pragma warning disable RS0016
[assembly: TypeForwardedTo(typeof(Dynamo.Scheduler.Disposable))]
#pragma warning restore RS0016
5 changes: 4 additions & 1 deletion src/DynamoCoreWpf/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,11 @@
[assembly: InternalsVisibleTo("DynamoPlayer")]
[assembly: InternalsVisibleTo("DynamoConnector")]


// Disable PublicAPIAnalyzer errors for this type as they're already added to the public API text file
#pragma warning disable RS0016
[assembly: TypeForwardedTo(typeof(Dynamo.Wpf.Interfaces.LayoutSpecification))]
#pragma warning restore RS0016

[assembly: TypeForwardedTo(typeof(Dynamo.Wpf.Interfaces.LayoutSection))]

Check failure on line 66 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 66 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 66 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

[assembly: TypeForwardedTo(typeof(Dynamo.Wpf.Interfaces.LayoutElement))]

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

Check failure on line 67 in src/DynamoCoreWpf/Properties/AssemblyInfo.cs

View workflow job for this annotation

GitHub Actions / analyze

[assembly: TypeForwardedTo(typeof(Dynamo.Wpf.Interfaces.LayoutElementType))]
Expand Down

0 comments on commit 00c7e56

Please sign in to comment.