TerevintoSoftware.StaticSiteGenerator.Tool 1.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global TerevintoSoftware.StaticSiteGenerator.Tool --version 1.1.1
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local TerevintoSoftware.StaticSiteGenerator.Tool --version 1.1.1
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=TerevintoSoftware.StaticSiteGenerator.Tool&version=1.1.1
nuke :add-package TerevintoSoftware.StaticSiteGenerator.Tool --version 1.1.1

TerevintoSoftware.StaticSiteGenerator

This project aims to provide a way for c# developers to benefit from very cheap/free hosting through static files, while allowing them to use familiar ASP.NET MVC concepts (Views, Partials, Layouts, etc). This also allows you to have an initial static site that you can then update to a dynamic website backed by ASP.NET Core without starting from scratch.

Since this project converts Views into HTML files, it is not possible (at least yet) to use Models.

Packages

This project is divided in two packages:

Package Purpose
TerevintoSoftware.StaticSiteGenerator Contains the main logic of the project, depends on ASP.NET Core.
TerevintoSoftware.StaticSiteGenerator.Tool Contains a .NET Tool that can be invoked to perform the generation.

Sample usage

  1. Install the tool: dotnet tool install TerevintoSoftware.StaticSiteGenerator.Tool
  2. (optional) Create a new project: dotnet new mvc -o MyProject
  3. (optional) See the available options with ssg -h
  4. Run the static site generation: ssg --project [project-path] --output [output-path]

How to build

  • Install Visual Studio 2022 (.NET 6 required), if needed. The ASP.NET Core workload is required to build the project.
  • Install git, if needed.
  • Clone this repository.
  • Build from Visual Studio or through dotnet build.

Bug reports and feature requests

Please use the issue tracker and ensure your question/feedback was not previously reported.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
2.0.0 475 11/17/2023
1.4.1 224 7/30/2023
1.4.0 324 3/7/2023
1.3.5 260 3/5/2023
1.3.2 502 9/18/2022
1.3.1 437 8/28/2022
1.3.0 454 8/20/2022
1.2.2 501 6/27/2022
1.2.1 440 6/11/2022
1.2.0 493 6/5/2022
1.1.1 429 5/30/2022

[1.1.1]: Fixes a URL generation bug for the default Controller actions.
[1.1.0]: Adds a new option to specify the casing convention for routes and adds more flexibility to automatically discovered routes.
[1.0.2]: Fixes to URL generation
[1.0.1]: Minor fix to performance
[1.0.0]: First major version. Improve CMD arguments, error handling and fix link generation.