Skip to content

Commit 62a80fe

Browse files
committed
docs: Provide additional information about ResideInAssembly function
Signed-off-by: Paweł Łukasik <[email protected]>
1 parent 98f7f0e commit 62a80fe

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

ArchUnitNET/ArchUnitNET.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<IncludeSymbols>true</IncludeSymbols>
1717
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
19+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1920
</PropertyGroup>
2021

2122
<ItemGroup>

ArchUnitNET/Fluent/Syntax/Elements/Types/GivenTypesThat.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,10 @@ public TGivenRuleTypeConjunction ResideInNamespace(
183183
return Create<TGivenRuleTypeConjunction, TRuleType>(_ruleCreator);
184184
}
185185

186+
/// <summary>Matches the types that reside in the assembly.</summary>
187+
/// <param name="pattern">Name of the assembly to match.</param>
188+
/// <param name="useRegularExpressions">Indicates if pattern shall be considered a regular expression.</param>
189+
/// <remarks>In case of not using regular expression pattern has to be Assembly Full Name.</remarks>
186190
public TGivenRuleTypeConjunction ResideInAssembly(
187191
string pattern,
188192
bool useRegularExpressions = false

0 commit comments

Comments
 (0)