-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathARCtrl.Json.fsproj
88 lines (87 loc) · 4.55 KB
/
ARCtrl.Json.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>ARC and ISA json compliant parser for experimental metadata toolkit in F#. This project is meant as an easy means to open, manipulate and save ISA (Investigation,Study,Assay) metadata files in isa-json format.</Description>
<PackageProjectUrl>https://github.com/nfdi4plants/ARCtrl/tree/main/src/Json</PackageProjectUrl>
<PackageTags>ARC;F#;FSharp;dotnet;.Net;bioinformatics;biology;fable-library;datascience;dataplant;nfdi;metadata;investigation;study;assay;ISA-Json;fable-javascript;fable-python;fable-dotnet</PackageTags>
</PropertyGroup>
<Import Project="../Package.Metadata.props" />
<ItemGroup>
<Compile Include="context\rocrate\property_value_context.fs" />
<Compile Include="context\rocrate\isa_assay_context.fs" />
<Compile Include="context\rocrate\isa_comment_context.fs" />
<Compile Include="context\rocrate\isa_component_context.fs" />
<Compile Include="context\rocrate\isa_data_context.fs" />
<Compile Include="context\rocrate\isa_factor_context.fs" />
<Compile Include="context\rocrate\isa_factor_value_context.fs" />
<Compile Include="context\rocrate\isa_investigation_context.fs" />
<Compile Include="context\rocrate\isa_material_attribute_context.fs" />
<Compile Include="context\rocrate\isa_material_attribute_value_context.fs" />
<Compile Include="context\rocrate\isa_material_context.fs" />
<Compile Include="context\rocrate\isa_ontology_annotation_context.fs" />
<Compile Include="context\rocrate\isa_ontology_source_reference_context.fs" />
<Compile Include="context\rocrate\isa_organization_context.fs" />
<Compile Include="context\rocrate\isa_person_context.fs" />
<Compile Include="context\rocrate\isa_process_context.fs" />
<Compile Include="context\rocrate\isa_process_parameter_value_context.fs" />
<Compile Include="context\rocrate\isa_protocol_context.fs" />
<Compile Include="context\rocrate\isa_protocol_parameter_context.fs" />
<Compile Include="context\rocrate\isa_publication_context.fs" />
<Compile Include="context\rocrate\isa_sample_context.fs" />
<Compile Include="context\rocrate\isa_source_context.fs" />
<Compile Include="context\rocrate\isa_study_context.fs" />
<Compile Include="context\rocrate\rocrate_context.fs" />
<Compile Include="ConverterOptions.fs" />
<Compile Include="Decode.fs" />
<Compile Include="Encode.fs" />
<Compile Include="IDTable.fs" />
<Compile Include="StringTable.fs" />
<Compile Include="Comment.fs" />
<Compile Include="OntologyAnnotation.fs" />
<Compile Include="PropertyValue.fs" />
<Compile Include="OntologySourceReference.fs" />
<Compile Include="DataFile.fs" />
<Compile Include="Data.fs" />
<Compile Include="Person.fs" />
<Compile Include="Publication.fs" />
<Compile Include="Process\Value.fs" />
<Compile Include="Process\Factor.fs" />
<Compile Include="Process\FactorValue.fs" />
<Compile Include="Process\ProtocolParameter.fs" />
<Compile Include="Process\MaterialType.fs" />
<Compile Include="Process\MaterialAttribute.fs" />
<Compile Include="Process\Component.fs" />
<Compile Include="Process\Protocol.fs" />
<Compile Include="Process\MaterialAttributeValue.fs" />
<Compile Include="Process\Material.fs" />
<Compile Include="Process\Source.fs" />
<Compile Include="Process\Sample.fs" />
<Compile Include="Process\ProcessParameterValue.fs" />
<Compile Include="Process\ProcessInput.fs" />
<Compile Include="Process\ProcessOutput.fs" />
<Compile Include="Process\Process.fs" />
<Compile Include="Process\AssayMaterials.fs" />
<Compile Include="Process\StudyMaterials.fs" />
<Compile Include="Table\OATable.fs" />
<Compile Include="Table\CompositeCell.fs" />
<Compile Include="Table\CellTable.fs" />
<Compile Include="Table\IOType.fs" />
<Compile Include="Table\CompositeHeader.fs" />
<Compile Include="Table\ArcTable.fs" />
<Compile Include="Table\Templates.fs" />
<Compile Include="DataMap\DataContext.fs" />
<Compile Include="DataMap\DataMap.fs" />
<Compile Include="Assay.fs" />
<Compile Include="Study.fs" />
<Compile Include="Investigation.fs" />
<Compile Include="LDObject.fs" />
<Compile Include="ARC.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Thoth.Json.Core" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\ARCtrl.Core.fsproj" />
<ProjectReference Include="..\ROCrate\ARCtrl.ROCrate.fsproj" />
</ItemGroup>
</Project>