Skip to content

Commit

Permalink
Rename into OBO.NET
Browse files Browse the repository at this point in the history
  • Loading branch information
omaus committed Oct 19, 2023
1 parent 4da15d1 commit 04ad89c
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions FsOboParser.sln → OBO.NET.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{13CB
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FsOboParser", "src\FsOboParser\FsOboParser.fsproj", "{9B04A234-E7AC-4960-99A2-3E1B7B05F32A}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "OBO.NET", "src\FsOboParser\OBO.NET.fsproj", "{9B04A234-E7AC-4960-99A2-3E1B7B05F32A}"
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FsOboParser.Tests", "tests\FsOboParser.Tests\FsOboParser.Tests.fsproj", "{0A4EF63F-C659-4AB6-AF88-CB444A98C434}"
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "OBO.NET.Tests", "tests\FsOboParser.Tests\OBO.NET.Tests.fsproj", "{0A4EF63F-C659-4AB6-AF88-CB444A98C434}"
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "build", "build\build.fsproj", "{56A33646-9976-4155-A731-224F688D9F6F}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion src/FsOboParser/DBXref.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET


open System
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/FsOboParser/OboEntries.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET


/// Functions for working with OboEntries.
Expand Down
2 changes: 1 addition & 1 deletion src/FsOboParser/OboEntry.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET


/// Model of raw OboEntries, divided into Terms (as `OboTerm`s) and TypeDefs (as `OboTypeDef`s).
Expand Down
2 changes: 1 addition & 1 deletion src/FsOboParser/OboOntology.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET

open DBXref
//open OboTerm
Expand Down
2 changes: 1 addition & 1 deletion src/FsOboParser/OboTerm.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET

open DBXref
open TermSynonym
Expand Down
2 changes: 1 addition & 1 deletion src/FsOboParser/OboTypeDef.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET

open DBXref

Expand Down
2 changes: 1 addition & 1 deletion src/FsOboParser/TermSynonym.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace FsOboParser
namespace OBO.NET


open DBXref
Expand Down
2 changes: 1 addition & 1 deletion tests/FsOboParser.Tests/Main.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
open FsOboParser.Tests
open OBO.NET.Tests

open Expecto

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -15,7 +15,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\FsOboParser\FsOboParser.fsproj" />
<ProjectReference Include="..\..\src\FsOboParser\OBO.NET.fsproj" />
<PackageReference Include="Expecto" Version="10.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
Expand Down
4 changes: 2 additions & 2 deletions tests/FsOboParser.Tests/OboOntology.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace FsOboParser.Tests
namespace OBO.NET.Tests

open Expecto
open FsOboParser
open OBO.NET


module OboOntologyTests =
Expand Down
4 changes: 2 additions & 2 deletions tests/FsOboParser.Tests/OboTerm.Tests.fs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace FsOboParser.Tests
namespace OBO.NET.Tests

open Expecto
open FsOboParser
open OBO.NET


module OboTermTests =
Expand Down

0 comments on commit 04ad89c

Please sign in to comment.