forked from BrianSchroer/sparky-test-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SparkyTestHelpers.csproj
30 lines (26 loc) · 1.37 KB
/
SparkyTestHelpers.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.3</TargetFramework>
<Company>Brian Schroer</Company>
<Description>.NET Unit test helpers for asserting that exceptions were / weren't thrown, and for "scenario tests".</Description>
<PackageLicenseUrl>https://github.com/BrianSchroer/sparky-test-helpers/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/BrianSchroer/sparky-test-helpers</PackageProjectUrl>
<RepositoryUrl>https://github.com/BrianSchroer/sparky-test-helpers</RepositoryUrl>
<Authors>Brian Schroer</Authors>
<PackageIconUrl>https://raw.githubusercontent.com/BrianSchroer/sparky-test-helpers/master/SparkyTestHelpers/Sparky.png</PackageIconUrl>
<Copyright>Copyright © Brian Schroer 2018</Copyright>
<PackageTags>test, testing, unittest, rowtest</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<FileVersion>1.2.2.0</FileVersion>
<Version>1.2.2</Version>
<PackageReleaseNotes>v1.2.2: Upgrade to Newtonsoft.Json 11
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile></DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
</ItemGroup>
</Project>