Skip to content

Commit cd85749

Browse files
authored
Merge pull request #128 from tranpl/update_api
update package
2 parents 97badb8 + 8300381 commit cd85749

File tree

4 files changed

+17
-21
lines changed

4 files changed

+17
-21
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,21 +72,21 @@ __Install directly in Package Manager Console or Command Line Interface__
7272
```C#
7373
Package Manager
7474

75-
Install-Package RedcapAPI -Version 1.3.4
75+
Install-Package RedcapAPI -Version 1.3.5
7676

7777
```
7878

7979
```C#
8080
.NET CLI
8181

82-
dotnet add package RedcapAPI --version 1.3.4
82+
dotnet add package RedcapAPI --version 1.3.5
8383

8484
```
8585

8686
```C#
8787
Paket CLI
8888

89-
paket add RedcapAPI --version 1.3.4
89+
paket add RedcapAPI --version 1.3.5
9090

9191
```
9292

RedcapApi/Interfaces/IRedcap.cs

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using Redcap.Models;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Threading;
5-
using System.Threading.Tasks;
62

73
namespace Redcap.Interfaces
84
{

RedcapApi/Redcap.csproj

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
56
<Authors>Michael Tran</Authors>
67
<Company>Virginia Commonwealth University</Company>
78
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
@@ -10,37 +11,36 @@
1011
<Description>This library allows applications on the .NET platform to make http calls to REDCap instances.</Description>
1112
<Product>Redcap Api Library</Product>
1213
<PackageId>RedcapAPI</PackageId>
13-
<Version>1.3.4</Version>
14-
<AssemblyVersion>1.3.4</AssemblyVersion>
14+
<Version>1.3.5</Version>
15+
<AssemblyVersion>1.3.5</AssemblyVersion>
1516
<PackageTags>redcap api library vcu</PackageTags>
1617
<ApplicationIcon />
1718
<OutputType>Library</OutputType>
1819
<NeutralLanguage>en</NeutralLanguage>
19-
<FileVersion>1.3.4</FileVersion>
20+
<FileVersion>1.3.5</FileVersion>
2021
<Copyright>https://github.com/cctrbic/redcap-api/blob/master/LICENSE.md</Copyright>
2122
<icon>https://vortex.cctr.vcu.edu/images/ram_crest_160.png</icon>
2223
<PackageIcon>vcu.png</PackageIcon>
2324
<Title>Redcap Api</Title>
24-
<PackageReleaseNotes>-update api documentation,
25-
-multiple breaking changes
26-
-fix some apis where parameters were behind the releases
27-
-streamline api parameters to match official documentations</PackageReleaseNotes>
28-
<PackageReadmeFile>README.md</PackageReadmeFile>
29-
<GenerateDocumentationFile>True</GenerateDocumentationFile>
30-
<ImplicitUsings>enable</ImplicitUsings>
25+
<PackageReleaseNotes>
26+
-Enhancements: Provide the ability to pass a timeout argument to individual http requests,
27+
-multiple bug fixes
28+
</PackageReleaseNotes>
29+
<PackageReadmeFile>README.md</PackageReadmeFile>
30+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
3131
</PropertyGroup>
3232
<ItemGroup>
3333
<None Include="..\README.md">
3434
<Pack>True</Pack>
3535
<PackagePath>\</PackagePath>
3636
</None>
37+
<None Include="..\vcu.png">
38+
<Pack>True</Pack>
39+
<PackagePath>\</PackagePath>
40+
</None>
3741
<Compile Remove="bin\**" />
3842
<EmbeddedResource Remove="bin\**" />
3943
<None Remove="bin\**" />
40-
<None Include="..\vcu.png">
41-
<Pack>True</Pack>
42-
<PackagePath></PackagePath>
43-
</None>
4444
</ItemGroup>
4545
<ItemGroup>
4646
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

RedcapApi/vcu.png

2.6 KB
Loading

0 commit comments

Comments
 (0)