|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <Project Sdk="Microsoft.NET.Sdk">
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TargetFramework>netstandard2.1</TargetFramework> |
5 | 5 | <Authors>Michael Tran</Authors>
|
6 | 6 | <Company>Virginia Commonwealth University</Company>
|
7 | 7 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
10 | 10 | <Description>This library allows applications on the .NET platform to make http calls to REDCap instances.</Description>
|
11 | 11 | <Product>Redcap Api Library</Product>
|
12 | 12 | <PackageId>RedcapAPI</PackageId>
|
13 |
| - <Version>1.0.9</Version> |
14 |
| - <AssemblyVersion>1.0.9.0</AssemblyVersion> |
| 13 | + <Version>1.1.0</Version> |
| 14 | + <AssemblyVersion>1.1.0.0</AssemblyVersion> |
15 | 15 | <PackageTags>redcap api library vcu</PackageTags>
|
16 |
| - <PackageReleaseNotes>- add improvements to 'ImportRecordsAsync' |
17 |
| - Add ability to declare csv delimiter to match REDCap's API paramters |
18 |
| -- minor update documentation |
19 |
| -- Minor version bump |
20 |
| -</PackageReleaseNotes> |
| 16 | + <PackageReleaseNotes>New APIs have been added! |
| 17 | +-ExportLoggingAsync |
| 18 | +-ExportDagsAsync |
| 19 | +-ImportDagsAsync |
| 20 | +-DeleteDagsAsync |
| 21 | +-ExportUserDagAssignmentAsync |
| 22 | +-ImportUserDagAssignmentAsync |
| 23 | +-Added models to support new APIs |
| 24 | +Minor bugs fixes to existing APIs regarding optional parameters.</PackageReleaseNotes> |
21 | 25 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
22 | 26 | <ApplicationIcon />
|
23 | 27 | <OutputType>Library</OutputType>
|
24 | 28 | <StartupObject />
|
25 | 29 | <NeutralLanguage>en</NeutralLanguage>
|
26 |
| - <FileVersion>1.0.9.0</FileVersion> |
| 30 | + <FileVersion>1.1.0.0</FileVersion> |
27 | 31 | <license>https://github.com/cctrbic/redcap-api/blob/master/LICENSE.md</license>
|
28 | 32 | <Copyright>https://github.com/cctrbic/redcap-api/blob/master/LICENSE.md</Copyright>
|
29 | 33 | <icon>https://vortex.cctr.vcu.edu/images/ram_crest_160.png</icon>
|
30 | 34 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
31 |
| - <PackageIcon>ram_crest_160.png</PackageIcon> |
| 35 | + <PackageIcon>vcu.png</PackageIcon> |
32 | 36 | </PropertyGroup>
|
33 | 37 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
34 | 38 | <Optimize>false</Optimize>
|
35 |
| - <DocumentationFile>bin\Debug\netcoreapp2.0\Redcap.xml</DocumentationFile> |
| 39 | + <DocumentationFile></DocumentationFile> |
36 | 40 | <DebugType>portable</DebugType>
|
37 | 41 | <DebugSymbols>true</DebugSymbols>
|
38 | 42 | <PlatformTarget>AnyCPU</PlatformTarget>
|
39 | 43 | </PropertyGroup>
|
40 | 44 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
41 |
| - <DocumentationFile>D:\Github\redcap-api\RedcapApi\Redcap.xml</DocumentationFile> |
| 45 | + <DocumentationFile></DocumentationFile> |
42 | 46 | </PropertyGroup>
|
43 | 47 | <ItemGroup>
|
44 | 48 | <Compile Remove="bin\**" />
|
45 | 49 | <EmbeddedResource Remove="bin\**" />
|
46 | 50 | <None Remove="bin\**" />
|
47 |
| - <None Include="..\ram_crest_160.png"> |
| 51 | + <None Include="..\vcu.png"> |
48 | 52 | <Pack>True</Pack>
|
49 | 53 | <PackagePath></PackagePath>
|
50 | 54 | </None>
|
51 | 55 | </ItemGroup>
|
52 | 56 | <ItemGroup>
|
53 |
| - <PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> |
54 |
| - <PackageReference Include="Serilog" Version="2.7.1" /> |
55 |
| - <PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" /> |
| 57 | + <PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> |
| 58 | + <PackageReference Include="RestSharp" Version="106.11.7" /> |
| 59 | + <PackageReference Include="Serilog" Version="2.10.0" /> |
| 60 | + <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" /> |
| 61 | + <PackageReference Include="System.Text.Json" Version="5.0.1" /> |
56 | 62 | <PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
57 |
| - <PackageReference Include="xunit.extensibility.core" Version="2.4.0" /> |
| 63 | + <PackageReference Include="xunit.extensibility.core" Version="2.4.1" /> |
58 | 64 | <Content Include="Models\RedcapMetaData.cs" />
|
59 | 65 | <Content Include="Models\RecordStatus.cs" />
|
60 | 66 | </ItemGroup>
|
|
0 commit comments