Feersum.Sdk 0.4.0

<Sdk Name="Feersum.Sdk" Version="0.4.0" />
                    
For projects that support Sdk, copy this XML node into the project file to reference the package.
#:sdk Feersum.Sdk@0.4.0
                    
#:sdk directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.

Feersum.Sdk

About

Feersum Scheme Compiler .NET SDK. Use this to add scheme support to a dotnet project.

Feersum Scheme is a Scheme implementation that compiles to .NET. Feersum provides a command line tool for batch compliation, a Scheme REPL, and a .NET SDK for MSBuild support.

Installation

As a .NET Tool

dotnet tool install -g Feersum

You can then start the REPL with feersum-scheme.

As an MSBuild SDK

Set the SDK in your Project:


<Project Sdk="Feersum.Sdk/0.4.0">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net8.0</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <Compile Include="program.scm" />
  </ItemGroup>
  
</Project>

Or drop the /0.4.0 and add the following to your global.json:

{
  "msbuild-sdks": {
    "Feersum.Sdk": "0.4.0"
  }
}

As a Library

Add a package reference to your project:

dotnet add package Feersum.CompilerServices

Or include in your .csproj or .fsproj:

<PackageReference Include="Feersum.Sdk" Version="0.4.0" />

Documentation

License

MIT License - see LICENSE file in the repository for details.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.4.0 112 4/25/2026
0.3.2 120 4/15/2026
0.3.0 164 3/5/2026
0.2.7 458 7/1/2024
0.2.6 609 6/20/2023
0.2.5 750 12/4/2021
0.2.4 790 11/12/2021
0.2.3 780 10/24/2021
0.2.2 799 10/18/2021
0.2.1 781 10/11/2021
0.2.0 888 10/10/2021