1
- <Project Sdk =" Microsoft.NET.Sdk" >
2
-
3
- <PropertyGroup >
4
- <TargetFramework >netstandard2.0</TargetFramework >
5
- <Authors >Michael Tran</Authors >
6
- <Company >Virginia Commonwealth University</Company >
7
- <GeneratePackageOnBuild >True</GeneratePackageOnBuild >
8
- <RepositoryUrl >https://github.com/cctrbic/redcap-api</RepositoryUrl >
9
- <PackageProjectUrl >https://github.com/cctrbic/redcap-api</PackageProjectUrl >
10
- <Description >This library allows applications on the .NET platform to make http calls to REDCap instances.</Description >
11
- <Product >Redcap Api Library</Product >
12
- <PackageId >RedcapAPI</PackageId >
13
- <Version >1.0.4-beta</Version >
14
- <AssemblyVersion >1.0.4.0</AssemblyVersion >
15
- <PackageTags >redcap api library</PackageTags >
16
- <PackageReleaseNotes >quality of life changes for methods
17
- updated documents
18
- bug fixes</PackageReleaseNotes >
19
- <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
20
- <ApplicationIcon />
21
- <OutputType >Library</OutputType >
22
- <StartupObject />
23
- <NeutralLanguage >en</NeutralLanguage >
24
- </PropertyGroup >
25
-
26
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
27
- <Optimize >false</Optimize >
28
- <DocumentationFile >bin\Debug\netcoreapp2.0\Redcap.xml</DocumentationFile >
29
- <DebugType >portable</DebugType >
30
- <DebugSymbols >true</DebugSymbols >
31
- <PlatformTarget >AnyCPU</PlatformTarget >
32
- </PropertyGroup >
33
-
34
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
35
- <DocumentationFile >bin\Release\netcoreapp1.1\Redcap.xml</DocumentationFile >
36
- </PropertyGroup >
37
-
38
- <ItemGroup >
39
- <Compile Remove =" bin\**" />
40
- <EmbeddedResource Remove =" bin\**" />
41
- <None Remove =" bin\**" />
42
- </ItemGroup >
43
-
44
- <ItemGroup >
45
- <PackageReference Include =" Newtonsoft.Json" Version =" 11.0.2" />
46
- <PackageReference Include =" Serilog" Version =" 2.7.1" />
47
- <PackageReference Include =" System.ComponentModel.Annotations" Version =" 4.5.0" />
48
- <PackageReference Include =" System.ValueTuple" Version =" 4.5.0" />
49
- <PackageReference Include =" xunit.extensibility.core" Version =" 2.4.0" />
50
- </ItemGroup >
51
-
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project Sdk =" Microsoft.NET.Sdk" >
3
+ <PropertyGroup >
4
+ <TargetFramework >netstandard2.0</TargetFramework >
5
+ <Authors >Michael Tran</Authors >
6
+ <Company >Virginia Commonwealth University</Company >
7
+ <GeneratePackageOnBuild >True</GeneratePackageOnBuild >
8
+ <RepositoryUrl >https://github.com/cctrbic/redcap-api</RepositoryUrl >
9
+ <PackageProjectUrl >https://github.com/cctrbic/redcap-api</PackageProjectUrl >
10
+ <Description >This library allows applications on the .NET platform to make http calls to REDCap instances.</Description >
11
+ <Product >Redcap Api Library</Product >
12
+ <PackageId >RedcapAPI</PackageId >
13
+ <Version >1.0.4-beta</Version >
14
+ <AssemblyVersion >1.0.4.0</AssemblyVersion >
15
+ <PackageTags >redcap api library</PackageTags >
16
+ <PackageReleaseNotes >quality of life changes for methods
17
+ updated documents
18
+ bug fixes</PackageReleaseNotes >
19
+ <PackageRequireLicenseAcceptance >false</PackageRequireLicenseAcceptance >
20
+ <ApplicationIcon />
21
+ <OutputType >Library</OutputType >
22
+ <StartupObject />
23
+ <NeutralLanguage >en</NeutralLanguage >
24
+ </PropertyGroup >
25
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
26
+ <Optimize >false</Optimize >
27
+ <DocumentationFile >bin\Debug\netcoreapp2.0\Redcap.xml</DocumentationFile >
28
+ <DebugType >portable</DebugType >
29
+ <DebugSymbols >true</DebugSymbols >
30
+ <PlatformTarget >AnyCPU</PlatformTarget >
31
+ </PropertyGroup >
32
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
33
+ <DocumentationFile >bin\Release\netcoreapp1.1\Redcap.xml</DocumentationFile >
34
+ </PropertyGroup >
35
+ <ItemGroup >
36
+ <Compile Remove =" bin\**" />
37
+ <EmbeddedResource Remove =" bin\**" />
38
+ <None Remove =" bin\**" />
39
+ </ItemGroup >
40
+ <ItemGroup >
41
+ <PackageReference Include =" Newtonsoft.Json" Version =" 11.0.2" />
42
+ <PackageReference Include =" Serilog" Version =" 2.7.1" />
43
+ <PackageReference Include =" System.ComponentModel.Annotations" Version =" 4.5.0" />
44
+ <PackageReference Include =" System.ValueTuple" Version =" 4.5.0" />
45
+ <PackageReference Include =" xunit.extensibility.core" Version =" 2.4.0" />
46
+ <Content Include =" Models\RedcapMetaData.cs" />
47
+ <Content Include =" Models\RecordStatus.cs" />
48
+ </ItemGroup >
52
49
</Project >
0 commit comments