Skip to content

Commit

Permalink
Auto: Merge docs website via CI [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Appveyor (on behalf of Craig Fowler) committed Sep 30, 2024
2 parents 6be67bd + 3ecf734 commit f307544
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion docs/docs/StandaloneScreenplay.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,17 @@ <h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<article data-uid="">
<h1 id="using-screenplay-standalone">Using Screenplay standalone</h1>

<p>TODO: Write this docco about how to use Screenplay without a Testing Framework Integration</p>
<p>Screenplay is often used <a href="SuitabilityAsATestingTool.html">as a tool for automating software tests</a>, but it is not limited to only this usage.
Screenplay may be added to any application or library, <em>via dependency injection</em>.</p>
<p>Adding the Screenplay architecture to your apps DI is as simple as installing the <strong><a href="https://www.nuget.org/packages/CSF.Screenplay">CSF.Screenplay</a></strong> NuGet package and:</p>
<pre><code class="lang-csharp">using CSF.Screenplay;
// IServiceCollection services;
services.AddScreenplay();
</code></pre>
<p>For more information, see the documentation for <a class="xref" href="../api/CSF.Screenplay.ScreenplayServiceCollectionExtensions.html"><code>ScreenplayServiceCollectionExtensions</code></a>.</p>
<h2 id="abstractions-package">Abstractions package</h2>
<p>If your solution is separated into multiple projects/assemblies then only your entry-point project needs the full CSF.Screenplay NuGet package.
Once Screenplay has been added to DI, other projects in the solution may consume its logic, only requiring the <a href="https://www.nuget.org/packages/CSF.Screenplay.Abstractions">CSF.Screenplay.Abstractions</a> package.</p>

</article>

Expand Down
2 changes: 1 addition & 1 deletion docs/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@
"docs/StandaloneScreenplay.html": {
"href": "docs/StandaloneScreenplay.html",
"title": "Using Screenplay standalone | Screenplay docs",
"keywords": "Using Screenplay standalone TODO: Write this docco about how to use Screenplay without a Testing Framework Integration"
"keywords": "Using Screenplay standalone Screenplay is often used as a tool for automating software tests, but it is not limited to only this usage. Screenplay may be added to any application or library, via dependency injection. Adding the Screenplay architecture to your apps DI is as simple as installing the CSF.Screenplay NuGet package and: using CSF.Screenplay; // IServiceCollection services; services.AddScreenplay(); For more information, see the documentation for ScreenplayServiceCollectionExtensions. Abstractions package If your solution is separated into multiple projects/assemblies then only your entry-point project needs the full CSF.Screenplay NuGet package. Once Screenplay has been added to DI, other projects in the solution may consume its logic, only requiring the CSF.Screenplay.Abstractions package."
},
"docs/SuitabilityAsATestingTool.html": {
"href": "docs/SuitabilityAsATestingTool.html",
Expand Down

0 comments on commit f307544

Please sign in to comment.