Skip to content

Commit 1260e8d

Browse files
committedJan 13, 2019
Added xmldocs
1 parent b4b8e07 commit 1260e8d

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed
 

‎TestStack.Dossier/EquivalenceClasses/FinanceEquivalence.cs

-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public FinanceEquivalence(AnonymousValueFixture fixture)
2222
/// <summary>
2323
/// Generate and return a finance credit card number.
2424
/// </summary>
25-
/// <param name="fixture">The fixture to generate a value for.</param>
2625
/// <returns>The generated value.</returns>
2726
public string CreditCardNumber()
2827
{
@@ -32,7 +31,6 @@ public string CreditCardNumber()
3231
/// <summary>
3332
/// Generate and return a finance credit card type.
3433
/// </summary>
35-
/// <param name="fixture">The fixture to generate a value for.</param>
3634
/// <returns>The generated value.</returns>
3735
public string CreditCardType()
3836
{
@@ -42,7 +40,6 @@ public string CreditCardType()
4240
/// <summary>
4341
/// Generate and return a finance currency name.
4442
/// </summary>
45-
/// <param name="fixture">The fixture to generate a value for.</param>
4643
/// <returns>The generated value.</returns>
4744
public string Currency()
4845
{
@@ -52,7 +49,6 @@ public string Currency()
5249
/// <summary>
5350
/// Generate and return a finance currency code.
5451
/// </summary>
55-
/// <param name="fixture">The fixture to generate a value for.</param>
5652
/// <returns>The generated value.</returns>
5753
public string CurrencyCode()
5854
{

‎TestStack.Dossier/TestStack.Dossier.csproj

+13-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,19 @@
1212
<PackageTags>testing data-generation test-fixture nbuilder nsubstitute autofixture mocking equivalence-class test-data-builder anonymous-value ntestdatabuilder</PackageTags>
1313
<RepositoryUrl>https://github.com/TestStack/TestStack.Dossier</RepositoryUrl>
1414
</PropertyGroup>
15-
15+
16+
<PropertyGroup>
17+
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
18+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
19+
</PropertyGroup>
20+
21+
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
22+
<ItemGroup>
23+
<DocFile Include="bin\$(Configuration)\$(TargetFramework)\$(TargetName).xml" />
24+
</ItemGroup>
25+
<Copy SourceFiles="@(DocFile)" DestinationFolder="$(PublishDir)" SkipUnchangedFiles="false" />
26+
</Target>
27+
1628
<ItemGroup>
1729
<None Remove="DataSources\Dictionaries\Resources\AddressAusCity.txt" />
1830
<None Remove="DataSources\Dictionaries\Resources\AddressAusCompany.txt" />

0 commit comments

Comments
 (0)