|
2 | 2 | <Project Sdk="Microsoft.NET.Sdk">
|
3 | 3 | <PropertyGroup>
|
4 | 4 | <TargetFramework>net8.0</TargetFramework>
|
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
5 | 6 | <Authors>Michael Tran</Authors>
|
6 | 7 | <Company>Virginia Commonwealth University</Company>
|
7 | 8 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
10 | 11 | <Description>This library allows applications on the .NET platform to make http calls to REDCap instances.</Description>
|
11 | 12 | <Product>Redcap Api Library</Product>
|
12 | 13 | <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> |
15 | 16 | <PackageTags>redcap api library vcu</PackageTags>
|
16 | 17 | <ApplicationIcon />
|
17 | 18 | <OutputType>Library</OutputType>
|
18 | 19 | <NeutralLanguage>en</NeutralLanguage>
|
19 |
| - <FileVersion>1.3.4</FileVersion> |
| 20 | + <FileVersion>1.3.5</FileVersion> |
20 | 21 | <Copyright>https://github.com/cctrbic/redcap-api/blob/master/LICENSE.md</Copyright>
|
21 | 22 | <icon>https://vortex.cctr.vcu.edu/images/ram_crest_160.png</icon>
|
22 | 23 | <PackageIcon>vcu.png</PackageIcon>
|
23 | 24 | <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> |
31 | 31 | </PropertyGroup>
|
32 | 32 | <ItemGroup>
|
33 | 33 | <None Include="..\README.md">
|
34 | 34 | <Pack>True</Pack>
|
35 | 35 | <PackagePath>\</PackagePath>
|
36 | 36 | </None>
|
| 37 | + <None Include="..\vcu.png"> |
| 38 | + <Pack>True</Pack> |
| 39 | + <PackagePath>\</PackagePath> |
| 40 | + </None> |
37 | 41 | <Compile Remove="bin\**" />
|
38 | 42 | <EmbeddedResource Remove="bin\**" />
|
39 | 43 | <None Remove="bin\**" />
|
40 |
| - <None Include="..\vcu.png"> |
41 |
| - <Pack>True</Pack> |
42 |
| - <PackagePath></PackagePath> |
43 |
| - </None> |
44 | 44 | </ItemGroup>
|
45 | 45 | <ItemGroup>
|
46 | 46 | <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
0 commit comments