Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Fix test project dependencies 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jul 15, 2022
1 parent 61e662d commit 0103166
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
11 changes: 11 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 0.6.0+61e662d (Released 2022-7-15)
* Additions:
* latest commit #61e662d
* [[#affd55a](https://github.com/Freymaurer/Nfdi4Plants.Fornax/commit/affd55aafd2a5df478f9da0fde1649889b36e697)] Add "date" option to yaml docs metadata (Issue #22)
* [[#183bb9c](https://github.com/Freymaurer/Nfdi4Plants.Fornax/commit/183bb9cc64a08d34a0992f65eb11ba87c32c3f1d)] Add "add support" yml docs metadata support (Issue #23)
* [[#6d1e4e3](https://github.com/Freymaurer/Nfdi4Plants.Fornax/commit/6d1e4e35a978ce47f5eb54471ab921f376e01139)] Add extended author yml docs metadata support (Issue #25)
* [[#3e3586a](https://github.com/Freymaurer/Nfdi4Plants.Fornax/commit/3e3586a0c3475abbdd77906161610a3a911efb6c)] Add unit tests (Issue #25) :white_check_mark:
* Bugfixes:
* [[#61e662d](https://github.com/Freymaurer/Nfdi4Plants.Fornax/commit/61e662d08b13582b7567b581a0c3ef407c13e69b)] Fix issue with new implementations :heavy_check_mark:
* [[#d746c59](https://github.com/Freymaurer/Nfdi4Plants.Fornax/commit/d746c59d80d6b45c8e9496886590141ae72ba125)] fixed & tested issue #1

### 0.5.5+ccf803d (Released 2022-7-13)
* Additions:
* latest commit #ccf803d
Expand Down
2 changes: 0 additions & 2 deletions src/Nfdi4Plants.Fornax/Loaders.fs
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@ module Aux =
sidebar = [||]
}

open System.IO

/// <summary>Read sidebar markdown file at `sidebarPath` to and parse it nfdi-sidebar-element's.</summary>
/// <param name="contentDir">Name of the subfolder in which the docs files are.</param>
/// <param name="sidebarPath">Relative path to sidebar file.</param>
Expand Down
1 change: 0 additions & 1 deletion src/Nfdi4Plants.Fornax/MarkdigExtensions/nfdi-code.fs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace Fornax.Nfdi4Plants.MarkdigExtensions

open System.Text
open Markdig.Parsers;
open Markdig.Renderers;
open Markdig.Renderers.Html;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ open Markdig
open Markdig.Renderers.Html
open Markdig.Syntax

open System

module internal Aux =

let splitKey (line: string) =
Expand Down
12 changes: 11 additions & 1 deletion tests/Nfdi4Plants.Fornax.Tests/Nfdi4Plants.Fornax.Tests.fsproj
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>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
Expand All @@ -15,7 +15,17 @@
<PackageReference Include="Expecto" Version="9.*" />
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<Reference Include="Fornax">
<HintPath>..\..\src\Nfdi4Plants.Fornax\_lib\Fornax.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\src\Nfdi4Plants.Fornax\_lib\Fornax.Core.dll">
<Pack>true</Pack>
<PackagePath>lib\$(TargetFramework)</PackagePath>
</Content>
<None Include="../../LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Nfdi4Plants.Fornax\Nfdi4Plants.Fornax.fsproj" />
</ItemGroup>
Expand Down

0 comments on commit 0103166

Please sign in to comment.