-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathARCtrl.Spreadsheet.fsproj
45 lines (44 loc) · 2.25 KB
/
ARCtrl.Spreadsheet.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>ARC and ISA xlsx 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-xlsx format.</Description>
<PackageProjectUrl>https://github.com/nfdi4plants/ARCtrl/tree/main/src/Spreadsheet</PackageProjectUrl>
<PackageTags>ARC;F#;FSharp;dotnet;.Net;bioinformatics;biology;fable-library;datascience;dataplant;nfdi;metadata;investigation;study;assay;ISA;Spreadsheet;xlsx;excel;fable-javascript;fable-python;fable-dotnet</PackageTags>
</PropertyGroup>
<Import Project="../Package.Metadata.props" />
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="CollectionAux.fs" />
<Compile Include="Metadata\Conversions.fs" />
<Compile Include="Metadata\Comment.fs" />
<Compile Include="Metadata\SparseTable.fs" />
<Compile Include="Metadata\Contacts.fs" />
<Compile Include="Metadata\OntologyAnnotation.fs" />
<Compile Include="Metadata\DesignDescriptors.fs" />
<Compile Include="Metadata\Factors.fs" />
<Compile Include="Metadata\Protocols.fs" />
<Compile Include="Metadata\Publication.fs" />
<Compile Include="Metadata\Assays.fs" />
<Compile Include="Metadata\Study.fs" />
<Compile Include="Metadata\OntologySourceReference.fs" />
<Compile Include="AnnotationTable\CompositeCell.fs" />
<Compile Include="AnnotationTable\CompositeHeader.fs" />
<Compile Include="AnnotationTable\CompositeColumn.fs" />
<Compile Include="AnnotationTable\ArcTable.fs" />
<Compile Include="DataMapTable\DataMapHeader.fs" />
<Compile Include="DataMapTable\DataMapColumn.fs" />
<Compile Include="DataMapTable\DataMapTable.fs" />
<Compile Include="DataMap.fs" />
<Compile Include="ArcAssay.fs" />
<Compile Include="ArcStudy.fs" />
<Compile Include="ArcInvestigation.fs" />
<Compile Include="Template.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsSpreadsheet"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\ARCtrl.Core.fsproj" />
<ProjectReference Include="..\FileSystem\ARCtrl.FileSystem.fsproj" />
</ItemGroup>
</Project>