https://github.com/sidescrollui/sidescroll.templates
SideScroll dotnet new templates
https://github.com/sidescrollui/sidescroll.templates
Last synced: 10 months ago
JSON representation
SideScroll dotnet new templates
- Host: GitHub
- URL: https://github.com/sidescrollui/sidescroll.templates
- Owner: SideScrollUI
- License: mit
- Created: 2025-08-04T00:46:22.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-24T22:03:27.000Z (10 months ago)
- Last Synced: 2025-08-25T01:34:16.004Z (10 months ago)
- Language: C#
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SideScroll .NET Templates
This repository contains the `.NET` project templates for building new [SideScroll](https://github.com/SideScrollUI/SideScroll) applications
> ๐ฆ For information about the SideScroll framework itself, visit the [main repo](https://github.com/SideScrollUI/SideScroll)
---
## ๐ Installing
To install the templates:
```bash
dotnet new install SideScroll.Templates
```
After installing, you can list the available templates:
```bash
dotnet new list SideScroll
```
You should see something like this:
```
Template Name Short Name Language Tags
------------------- -------------- -------- ---------------------------------------------
SideScroll .NET App sidescroll.app [C#] Desktop/Xaml/SideScroll/Avalonia/Windows/macOS/Linux
```
---
## ๐ Creating a Project
To create a new SideScroll app from the template:
```bash
dotnet new sidescroll.app -o MyApp
```
If you want to create a new Solution with the app split into a Library and Program app:
```bash
dotnet new sidescroll.sln -o MyApp
```
---
## ๐งฑ Developing the Templates
### Build
```bash
dotnet build SideScroll.Templates.csproj
```
### Install Locally
```bash
dotnet new install
```
### Reinstalling
```bash
dotnet new install --force
```
### Test by Creating a Project
```bash
dotnet new sidescroll.app -o MyApp
```
### Run the project
```bash
cd MyApp
dotnet run
```
---
## ๐งน Uninstalling the Templates
```bash
dotnet new uninstall SideScroll.Templates
```