Skip to content

Commit

Permalink
Add missing fable reference in ISA.Spreadsheet 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Nov 3, 2023
1 parent 7b135ca commit 53d07e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion build/ReleaseTasks.fs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ let createPrereleaseTag = BuildTask.create "CreatePrereleaseTag" [setPrereleaseT
failwith "aborted"
}


let publishNuget = BuildTask.create "PublishNuget" [clean; build; runTests; packDotNet] {
let targets = (!! (sprintf "%s/*.*pkg" pkgDir ))
for target in targets do printfn "%A" target
Expand Down
3 changes: 3 additions & 0 deletions src/ISA/ISA.Spreadsheet/ARCtrl.ISA.Spreadsheet.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
<ProjectReference Include="..\ISA\ARCtrl.ISA.fsproj" />
<ProjectReference Include="..\..\FileSystem\ARCtrl.FileSystem.fsproj" />
</ItemGroup>
<ItemGroup>
<Content Include="*.fsproj; **\*.fs; **\*.fsi" PackagePath="fable\" />
</ItemGroup>
<PropertyGroup>
<Authors>nfdi4plants, Lukas Weil</Authors>
<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>
Expand Down
2 changes: 1 addition & 1 deletion src/ISA/ISA/ArcTypes/ArcTable.fs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type ArcTable(name: string, headers: ResizeArray<CompositeHeader>, values: Syste

let mutable _name = name
member val Headers = headers with get, set
member val Values = values with get, set
member val Values : ResizeArray<ResizeArray<CompositeCell>> = values with get, set
member this.Name
with get() = _name
and internal set (newName) = _name <- newName
Expand Down

0 comments on commit 53d07e9

Please sign in to comment.