rspec/rules/S3904/vbnet/rule.adoc

42 lines
619 B
Plaintext
Raw Normal View History

2021-01-23 04:07:47 +00:00
include::../description.adoc[]
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,vbnet]
2021-01-23 04:07:47 +00:00
----
Imports System.Reflection
<Assembly: AssemblyTitle("MyAssembly")> ' Noncompliant
Namespace MyLibrary
End Namespace
----
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,vbnet]
2021-01-23 04:07:47 +00:00
----
Imports System.Reflection
<Assembly: AssemblyTitle("MyAssembly")>
<Assembly: AssemblyVersion("1.1.125.0")>
Namespace MyLibrary
End Namespace
----
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
endif::env-github,rspecator-view[]