forked from zoosk/testrail-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestRail.csproj
75 lines (70 loc) · 2.69 KB
/
TestRail.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461;net45</TargetFrameworks>
<PackageId>TestRail</PackageId>
<Version>2.0</Version>
<PackageVersion>$(Version)</PackageVersion>
<Title>TestRail Client</Title>
<Authors>TestRail Client Committers</Authors>
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</PackageLicenseUrl>
<RepositoryUrl>https://github.com/zoosk/testrail-client</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>.Net Standard 2.0 implementation of the TestRail API</Description>
<PackageReleaseNotes>
##2.0
- Converted the application to .Net Standard 2.0
- The client should work with any project on: .Net Framework 4.5, 4.6.1, .Net Core >= 2.0, and .Net Standard >= 2.0.
##1.0.0.15
- Bug Fix
- Timespan field for Result class
- Add isStarted property to Milestone class
- Update Newtonsoft.Json NuGet package
##1.0.0.12
- Bug Fix
- Run's JSON Parse method threw possible ArgumentNullException on created_on field
##1.0.0.11
- Update for VS 2015 and C# 6
- Update Nuget packages
- Features
- Add CreatedOn property to Run class
##1.0.0.10
- TestRail types contain the Raw JSON object received
##1.0.0.9
- Add more fields into Plan
- Update Nuget libraries
##1.0.0.8
- Fix Nuget spec file
##1.0.0.7
- Update dependencies for this package
##1.0.0.6
- Bug
- Result Status Enum for Untested had wrong ID
- Feature
- Get Plan now populates complete run objects
- Get for Configs
- Ability to create a test plan with configs
- Config Ids added to plan entry
##1.0.0.5
- Update Json.net Nuget Package
</PackageReleaseNotes>
<Copyright>Copyright 2017</Copyright>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' Or '$(TargetFramework)' == 'net45'">
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.Http.WebRequest" />
<Reference Include="System.Reflection" />
<Reference Include="System.Runtime" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Web" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Folder Include="Types\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
</Project>