rspec/rules/S3904/vbnet/rule.adoc
2022-02-04 16:28:24 +00:00

42 lines
619 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
[source,vbnet]
----
Imports System.Reflection
<Assembly: AssemblyTitle("MyAssembly")> ' Noncompliant
Namespace MyLibrary
End Namespace
----
== Compliant Solution
[source,vbnet]
----
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[]