-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathARCtrl.Core.fsproj
64 lines (63 loc) · 3 KB
/
ARCtrl.Core.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>ARC and ISA compliant 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 the dotnet environment.</Description>
<PackageProjectUrl>https://github.com/nfdi4plants/ARCtrl/tree/main/src/ISA</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="Helper\Collections.fs" />
<Compile Include="Helper\Url.fs" />
<Compile Include="Helper\Regex.fs" />
<Compile Include="Helper\Identifier.fs" />
<Compile Include="Helper\HashCodes.fs" />
<Compile Include="Helper\Printer.fs" />
<Compile Include="Helper\SemVer.fs" />
<Compile Include="URI.fs" />
<Compile Include="Comment.fs" />
<Compile Include="CommentList.fs" />
<Compile Include="OntologyAnnotation.fs" />
<Compile Include="Value.fs" />
<Compile Include="IPropertyValue.fs" />
<Compile Include="DataFile.fs" />
<Compile Include="Data.fs" />
<Compile Include="DataContext.fs" />
<Compile Include="Person.fs" />
<Compile Include="Publication.fs" />
<Compile Include="OntologySourceReference.fs" />
<Compile Include="Process\Factor.fs" />
<Compile Include="Process\FactorValue.fs" />
<Compile Include="Process\MaterialAttribute.fs" />
<Compile Include="Process\MaterialAttributeValue.fs" />
<Compile Include="Process\MaterialType.fs" />
<Compile Include="Process\Material.fs" />
<Compile Include="Process\Source.fs" />
<Compile Include="Process\Sample.fs" />
<Compile Include="Process\Component.fs" />
<Compile Include="Process\ProtocolParameter.fs" />
<Compile Include="Process\Protocol.fs" />
<Compile Include="Process\ProcessInput.fs" />
<Compile Include="Process\ProcessOutput.fs" />
<Compile Include="Process\ProcessParameterValue.fs" />
<Compile Include="Process\Process.fs" />
<Compile Include="Process\ProcessSequence.fs" />
<Compile Include="Process\ColumnIndex.fs" />
<Compile Include="Table\CompositeHeader.fs" />
<Compile Include="Table\CompositeCell.fs" />
<Compile Include="Table\CompositeColumn.fs" />
<Compile Include="Table\ArcTableAux.fs" />
<Compile Include="Table\ArcTable.fs" />
<Compile Include="Table\ArcTables.fs" />
<Compile Include="DataMap.fs" />
<Compile Include="ArcTypes.fs" />
<Compile Include="Template.fs" />
<Compile Include="Templates.fs" />
<Compile Include="Conversion.fs" />
<Compile Include="IdentifierSetters.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CWL\ARCtrl.CWL.fsproj" />
<ProjectReference Include="..\FileSystem\ARCtrl.FileSystem.fsproj" />
</ItemGroup>
</Project>