Feersum.Sdk
0.4.0
<Sdk Name="Feersum.Sdk" Version="0.4.0" />
#:sdk Feersum.Sdk@0.4.0
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
Links
- GitHub: https://github.com/Feersum/feersum
- NuGet: https://www.nuget.org/packages/Feersum.Sdk/
- Documentation: https://docs.feersum-scheme.net/
License
MIT License - see LICENSE file in the repository for details.
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.