Skip to content

Commit

Permalink
Add playground script file for testing/developing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
omaus committed Mar 5, 2023
1 parent 3fdee6b commit a2fc967
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FsSpreadsheet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{27
.gitignore = .gitignore
build.cmd = build.cmd
build.fsx = build.fsx
playground.fsx = playground.fsx
README.md = README.md
RELEASE_NOTES.md = RELEASE_NOTES.md
EndProjectSection
Expand All @@ -22,6 +23,8 @@ Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FsSpreadsheet.CsvIO", "src\
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Build", "build\Build.fsproj", "{544DA4BF-E0DB-4222-B5DB-E9A7B9E2A5DD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{828F619E-88DE-4A01-B101-FEBD0DA5DB01}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
27 changes: 27 additions & 0 deletions playground.fsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#load "src/FsSpreadsheet/FsAddress.fs"
#load "src/FsSpreadsheet/Cells/FsCell.fs"
#load "src/FsSpreadsheet/Cells/FsCellsCollection.fs"
#load "src/FsSpreadsheet/Ranges/FsRangeAddress.fs"
#load "src/FsSpreadsheet/Ranges/FsRangeBase.fs"
#load "src/FsSpreadsheet/Ranges/FsRangeRow.fs"
#load "src/FsSpreadsheet/Ranges/FsRangeColumn.fs"
#load "src/FsSpreadsheet/Ranges/FsRange.fs"
#load "src/FsSpreadsheet/Tables/FsTableField.fs"
#load "src/FsSpreadsheet/Tables/FsTableRow.fs"
#load "src/FsSpreadsheet/Tables/FsTable.fs"
#load "src/FsSpreadsheet/FsRow.fs"
#load "src/FsSpreadsheet/FsWorksheet.fs"
#load "src/FsSpreadsheet/FsWorkbook.fs"
#r "nuget: DocumentFormat.OpenXml"
#load "src/FsSpreadsheet.ExcelIO/SharedStringTable.fs"
#load "src/FsSpreadsheet.ExcelIO/Cell.fs"
#load "src/FsSpreadsheet.ExcelIO/CellData.fs"
#load "src/FsSpreadsheet.ExcelIO/Row.fs"
#load "src/FsSpreadsheet.ExcelIO/SheetData.fs"
#load "src/FsSpreadsheet.ExcelIO/Sheet.fs"
#load "src/FsSpreadsheet.ExcelIO/Table.fs"
#load "src/FsSpreadsheet.ExcelIO/WorkSheet.fs"
#load "src/FsSpreadsheet.ExcelIO/Workbook.fs"
#load "src/FsSpreadsheet.ExcelIO/Spreadsheet.fs"
#load "src/FsSpreadsheet.ExcelIO/FsExtensions.fs"

0 comments on commit a2fc967

Please sign in to comment.