-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOBO.NET.fsproj
More file actions
46 lines (41 loc) · 2.18 KB
/
OBO.NET.fsproj
File metadata and controls
46 lines (41 loc) · 2.18 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<Compile Include="DBXref.fs" />
<Compile Include="TermSynonym.fs" />
<Compile Include="OboTerm.fs" />
<Compile Include="OboTypeDef.fs" />
<Compile Include="OboEntry.fs" />
<Compile Include="OboEntries.fs" />
<Compile Include="OboOntology.fs" />
<Compile Include="FastOboGraph.fs" />
</ItemGroup>
<PropertyGroup>
<Authors>Heinrich Lukas Weil, Oliver Maus, F# open source contributors</Authors>
<Description>An OBO file format parser, written in F#.</Description>
<Summary>An OBO file format parser, written in F#.</Summary>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/CSBiology/FsOboParser</PackageProjectUrl>
<PackageTags>ontology parser obo</PackageTags>
<RepositoryUrl>https://github.com/CSBiology/FsOboParser</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<FsDocsLicenseLink>https://github.com/CSBiology/FsOboParse/blob/main/LICENSE</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/CSBiology/FsOboParse/blob/main/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ARCtrl.Core" Version="2.0.1" />
<PackageReference Include="ControlledVocabulary" Version="1.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="[8.0.0]" PrivateAssets="All" />
<PackageReference Include="FSharpAux" Version="[2.0.0]" />
</ItemGroup>
</Project>