-
Notifications
You must be signed in to change notification settings - Fork 0
/
JoanComas.ScenarioUnitTesting.nuspec
33 lines (33 loc) · 1.97 KB
/
JoanComas.ScenarioUnitTesting.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>JoanComas.ScenarioUnitTesting</id>
<version>1.2.6</version>
<title>Scenario Unit Testing by Joan Comas</title>
<authors>Joan Comas</authors>
<projectUrl>https://github.com/JoanComasFdz/dotnet-scenario-unittesting</projectUrl>
<description>Simplify your unit tests with a Scenario<T> class as a single point to access the class under test and its dependencies, leveraging xUnit, AutoFixture and NSubstitute.</description>
<summary>A Scenario<T> class as a single point to access the class under test and its dependencies, leveraging xUnit, AutoFixture and NSubstitute</summary>
<releaseNotes>Upgraded to .NET 8.</releaseNotes>
<readme>README-net.md</readme>
<copyright>Joan Comas 2024</copyright>
<language>en-US</language>
<tags>unittesting, scenario</tags>
<dependencies>
<group targetFramework="net8.0">
<dependency id="AutoFixture" version="4.18.1" exclude="Build,Analyzers" />
<dependency id="AutoFixture.AutoNSubstitute" version="4.18.1" exclude="Build,Analyzers" />
<dependency id="AutoFixture.Xunit2" version="4.18.1" exclude="Build,Analyzers" />
<dependency id="FluentAssertions" version="6.12.0" exclude="Build,Analyzers" />
<dependency id="NSubstitute" version="5.1.0" exclude="Build,Analyzers" />
<dependency id="Newtonsoft.Json" version="13.0.3" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
<file src="JoanComas.ScenarioUnitTesting\bin\Release\net8.0\JoanComas.ScenarioUnitTesting.dll" target="lib\net8.0" />
<file src="JoanComas.ScenarioUnitTesting\bin\Release\net8.0\JoanComas.ScenarioUnitTesting.pdb" target="lib\net8.0" />
<file src="JoanComas.ScenarioUnitTesting\bin\Release\net8.0\JoanComas.ScenarioUnitTesting.xml" target="lib\net8.0" />
<file src="docs\README-net.md" target="." />
</files>
</package>