Skip to content
Merged

1.3.7 #134

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,21 @@ __Install directly in Package Manager Console or Command Line Interface__
```C#
Package Manager

Install-Package RedcapAPI -Version 1.3.6
Install-Package RedcapAPI -Version 1.3.7

```

```C#
.NET CLI

dotnet add package RedcapAPI --version 1.3.6
dotnet add package RedcapAPI --version 1.3.7

```

```C#
Paket CLI

paket add RedcapAPI --version 1.3.6
paket add RedcapAPI --version 1.3.7

```

Expand Down
10 changes: 5 additions & 5 deletions RedcapApi.Tests/RedcapApi.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -14,10 +14,10 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit.ConsoleRunner" Version="3.17.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit.ConsoleRunner" Version="3.18.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
695 changes: 370 additions & 325 deletions RedcapApi/Api/RedcapApi.cs

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions RedcapApi/Models/RedcapAction.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Text;
using System.ComponentModel.DataAnnotations;

namespace Redcap.Models
{
Expand Down Expand Up @@ -51,6 +47,12 @@ public enum RedcapAction
/// Rename
/// </summary>
[Display(Name = "rename")]
Rename
Rename,

/// <summary>
/// Randomize
/// </summary>
[Display(Name = "randomize")]
Randomize
}
}
14 changes: 7 additions & 7 deletions RedcapApi/Redcap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
<Description>This library allows applications on the .NET platform to make http calls to REDCap instances.</Description>
<Product>Redcap Api Library</Product>
<PackageId>RedcapAPI</PackageId>
<Version>1.3.6</Version>
<AssemblyVersion>1.3.6</AssemblyVersion>
<Version>1.3.7</Version>
<AssemblyVersion>1.3.7</AssemblyVersion>
<PackageTags>redcap api library vcu</PackageTags>
<ApplicationIcon />
<OutputType>Library</OutputType>
<NeutralLanguage>en</NeutralLanguage>
<FileVersion>1.3.6</FileVersion>
<FileVersion>1.3.7</FileVersion>
<Copyright>https://github.com/cctrbic/redcap-api/blob/master/LICENSE.md</Copyright>
<icon>https://vortex.cctr.vcu.edu/images/ram_crest_160.png</icon>
<PackageIcon>vcu.png</PackageIcon>
<Title>Redcap Api</Title>
<PackageReleaseNotes>
-Enhancements: Provide the ability to pass a timeout argument to individual http requests,
-multiple bug fixes
<PackageReleaseNotes>Add support for new API Method:
- RandomizeRecord - This method allows the current API user to randomize a record. This follows the Randomization 2.0 Update in REDCap v14.7.0

</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
Expand All @@ -49,6 +49,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog" Version="4.1.0" />
</ItemGroup>
</Project>
Loading