Skip to content

Commit

Permalink
Bump Docs and Templates for 0.2.6
Browse files Browse the repository at this point in the history
It seems that aliasing the names of other installted templates wont't
work any more. The `--language` filter isn't enough to tell the
tmeplates apart it seems.
  • Loading branch information
iwillspeak committed Jun 20, 2023
1 parent 0022044 commit 1602e83
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ $ dotnet new --install Feersum.Templates::*
Then from the command line:

```
$ dotnet new console --language Scheme
$ dotnet new scm-console --language Scheme
```

This generates a new console application project in the current directory.
Compile and run with `dotnet build` and `dotnet run` as usual! Other templates
are available:

* `classlib` - Generate a .NET class library project.
* `scm-classlib` - Generate a .NET class library project.
* `scmlib` - Generate s Scheme library definition file.

# Planned Features
Expand Down
2 changes: 1 addition & 1 deletion docs/01-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Once you have the tool installed you can access a Scheme Read, Eval, Print, Loop
be evaluated and see their representation printed back to you:

```
Feersum Scheme Compiler - 0.2.5
Feersum Scheme Compiler - 0.2.6
§> "Hello, Schemer!"
}= "Hello, Schemer!"
§> (+ 1 9)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"classifications": [ "Common", "Library", "Scheme" ],
"identity": "Feersum.Templates.ClassLibrary",
"name": "Feersum Scheme class library.",
"shortName": "classlib",
"shortName": "scm-classlib",
"sourceName": "FeersumLibrary",
"tags": {
"language": "Scheme",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Feersum.Sdk/0.2.1">
<Project Sdk="Feersum.Sdk/0.2.6">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"classifications": [ "Common", "Console", "Scheme" ],
"identity": "Feersum.Templates.ConsoleProject",
"name": "Feersum Scheme Console application.",
"shortName": "console",
"shortName": "scm-console",
"sourceName": "FeersumConsole",
"tags": {
"language": "Scheme",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Feersum.Sdk/0.2.1">
<Project Sdk="Feersum.Sdk/0.2.6">

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down

0 comments on commit 1602e83

Please sign in to comment.