This repository has been archived by the owner on Oct 27, 2022. It is now read-only.
forked from zoosk/testrail-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestRail.csproj
101 lines (95 loc) · 3.87 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net461;net45</TargetFrameworks>
<PackageId>TestRail</PackageId>
<Version>2.0.6</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/DeverJylha/testrail-client.git</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>.Net Standard implementation of the TestRail API</Description>
<PackageReleaseNotes>
##2.0.6
- Added Batch Results by Test Ids
- Added Batch Results by Case Ids
-modified the Result Class to contain CaseIds
- Modified the Command Result To return the exception thrown (allowing for throttle cap to be dealt with)
- Allowed for collections of items to be returned instead of the command result.
##2.0.5
- Make GetSections's suiteID parameter optional.
##2.0.4
- Add offset parameter to GetRuns method (allows ability to get more than 250 most recent runs)
##2.0.3
- Add the ability to delete a test run.
##2.0.2
- add Milestones property to handle sub-milestones in GetMilestone call
##2.0.1
- add description to Section and add custom to run, plan, and other APIs
- Fix dotnet core bug with HttpWebRequest
##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>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
<WarningLevel>0</WarningLevel>
</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>