Skip to content

Commit 137f848

Browse files
authored
Merge pull request #140 from adrianiftode/features/include-readme-file
Setup the readme file for the FluentAssertions.Web packages
2 parents c2aeabf + 7e15f3a commit 137f848

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

src/FluentAssertions.Web.v8/FluentAssertions.Web.v8.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
<PropertyGroup>
44
<PackageDescription>
5-
This is a FluentAssertions extension over the HttpResponseMessage object. It provides assertions specific to HTTP responses and outputs rich erros messages when the tests fail, so less time with debugging is spent.
5+
This is a FluentAssertions extension over the HttpResponseMessage object.
6+
It provides specific assertions and outputs rich erros messages that include the HTTP Request and Response.
67
This version depends on the commercial version of the FluentAssertions library (&gt;= 8.0.0).
78
</PackageDescription>
9+
<PackageReadmeFile>README.md</PackageReadmeFile>
810
</PropertyGroup>
911

1012
<PropertyGroup>
@@ -23,6 +25,10 @@
2325
<None Include="bin\Release\netstandard2.0\FluentAssertions.Web.Types.xml" Pack="true" PackagePath="lib\netstandard2.0" />
2426
</ItemGroup>
2527

28+
<ItemGroup>
29+
<None Include="../../readme.md" Pack="true" PackagePath="\" />
30+
</ItemGroup>
31+
2632
<ItemGroup>
2733
<Compile Include="..\FluentAssertions.Web\**\*.*" Exclude="**\bin\**;**\obj\**;**\Properties\**;**\*.csproj">
2834
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>

src/FluentAssertions.Web/FluentAssertions.Web.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
<PropertyGroup>
44
<PackageDescription>
5-
This is a FluentAssertions extension over the HttpResponseMessage object. It provides assertions specific to HTTP responses and outputs rich erros messages when the tests fail, so less time with debugging is spent.
5+
This is a FluentAssertions extension over the HttpResponseMessage object.
6+
It provides specific assertions and outputs rich erros messages that include the HTTP Request and Response.
7+
This version **DOES NOT** depend on the commercial version of the FluentAssertions library (&gt;= 8.0.0).
68
</PackageDescription>
9+
<PackageReadmeFile>README.md</PackageReadmeFile>
710
</PropertyGroup>
811

912
<ItemGroup>
@@ -16,5 +19,8 @@
1619
<None Include="bin\Release\netstandard2.0\FluentAssertions.Web.Types.dll" Pack="true" PackagePath="lib\netstandard2.0" />
1720
<None Include="bin\Release\netstandard2.0\FluentAssertions.Web.Types.xml" Pack="true" PackagePath="lib\netstandard2.0" />
1821
</ItemGroup>
22+
<ItemGroup>
23+
<None Include="../../readme.md" Pack="true" PackagePath="\"/>
24+
</ItemGroup>
1925

2026
</Project>

0 commit comments

Comments
 (0)