mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 00:56:31 +02:00
Fix snapcraft manifest again
This commit is contained in:
+15
-1
@@ -1,6 +1,6 @@
|
|||||||
name: yesnt
|
name: yesnt
|
||||||
|
title: YesNt
|
||||||
version: "1.0.0.0"
|
version: "1.0.0.0"
|
||||||
grade: stable
|
|
||||||
summary: A line-based, interpreted scripting language and terminal code editor
|
summary: A line-based, interpreted scripting language and terminal code editor
|
||||||
description: |
|
description: |
|
||||||
YesNt is a line-based, interpreted scripting language. The core idea is simple: each line maps to one primary statement. Lines are processed top-to-bottom, and inline tokens (like `${variable}` or `%read_line`) are substituted before the statement executes. Postfix modifiers like `calc` and `task` can also appear at the end of a line to evaluate arithmetic or fork execution into a background thread.
|
YesNt is a line-based, interpreted scripting language. The core idea is simple: each line maps to one primary statement. Lines are processed top-to-bottom, and inline tokens (like `${variable}` or `%read_line`) are substituted before the statement executes. Postfix modifiers like `calc` and `task` can also appear at the end of a line to evaluate arithmetic or fork execution into a background thread.
|
||||||
@@ -30,14 +30,28 @@ parts:
|
|||||||
plugin: dotnet
|
plugin: dotnet
|
||||||
dotnet-version: '10.0'
|
dotnet-version: '10.0'
|
||||||
dotnet-configuration: Release
|
dotnet-configuration: Release
|
||||||
|
dotnet-self-contained: true
|
||||||
source: .
|
source: .
|
||||||
dotnet-project: src/YesNt.Interpreter.App/YesNt.Interpreter.App.csproj
|
dotnet-project: src/YesNt.Interpreter.App/YesNt.Interpreter.App.csproj
|
||||||
|
build-packages:
|
||||||
|
- clang
|
||||||
|
- zlib1g-dev
|
||||||
|
stage:
|
||||||
|
- -YesNt.Interpreter.*
|
||||||
|
- -*.dbg
|
||||||
yesntcode:
|
yesntcode:
|
||||||
plugin: dotnet
|
plugin: dotnet
|
||||||
dotnet-version: '10.0'
|
dotnet-version: '10.0'
|
||||||
dotnet-configuration: Release
|
dotnet-configuration: Release
|
||||||
|
dotnet-self-contained: true
|
||||||
source: .
|
source: .
|
||||||
dotnet-project: src/YesNt.CodeEditor/YesNt.CodeEditor.csproj
|
dotnet-project: src/YesNt.CodeEditor/YesNt.CodeEditor.csproj
|
||||||
|
build-packages:
|
||||||
|
- clang
|
||||||
|
- zlib1g-dev
|
||||||
|
stage:
|
||||||
|
- -YesNt.Interpreter.*
|
||||||
|
- -*.dbg
|
||||||
|
|
||||||
apps:
|
apps:
|
||||||
yesnt:
|
yesnt:
|
||||||
|
|||||||
Reference in New Issue
Block a user