-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVerbytesAssertions.csproj
More file actions
44 lines (39 loc) · 1.72 KB
/
VerbytesAssertions.csproj
File metadata and controls
44 lines (39 loc) · 1.72 KB
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
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageIcon>assertions.png</PackageIcon>
<Description>VerbytesAssertions is a modern, developer-friendly .NET assertion library inspired by FluentAssertions. It offers expressive, readable syntax to streamline automated testing of objects, methods, and systems. Compatible with xUnit, it enhances developer productivity with intuitive assertions and detailed error messages.</Description>
<Authors>Verbytes</Authors>
<Company>Verbytes</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/bbesli/VerbytesAssertions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackAsTool>False</PackAsTool>
<IncludeSymbols>False</IncludeSymbols>
<PackageTags>FluentAssertion, XUnit Assertions, Assertion, Assertions</PackageTags>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyVersion>1.0.5</AssemblyVersion>
<FileVersion>1.0.5</FileVersion>
<Version>1.0.5</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\Users\TR\Downloads\assertions.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MongoDB.Bson" Version="3.1.0" />
<PackageReference Include="xunit.assert" Version="2.9.3" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>