Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Microsandbox F# SDK

A minimal F# SDK for the Microsandbox project.

Installation

dotnet add package Microsandbox.FSharp

Or via the NuGet Package Manager:

Install-Package Microsandbox.FSharp

Usage

open Microsandbox

// Print a greeting
let message = Greeter.greet "World"
printfn "%s" message

Development

Setup

# Clone the repository
git clone https://github.com/yourusername/monocore.git
cd monocore/sdk/fsharp

# Restore dependencies
dotnet restore

Running Tests

dotnet test

Building the Package

dotnet build --configuration Release

Publishing to NuGet

  1. Create an API key on NuGet

  2. Create a NuGet package:

dotnet pack --configuration Release
  1. Publish to NuGet:
dotnet nuget push bin/Release/Microsandbox.FSharp.0.0.1.nupkg --api-key YOUR_API_KEY --source https://api.nuget.org/v3/index.json

Make sure you have registered for an account on NuGet.org and have created an API key.

License

MIT