Make SharpIDE.Photino project deprecation clearer

This commit is contained in:
Matt Parker
2025-12-11 00:17:48 +10:00
parent 726e0d8565
commit ba39f7fbdb
2 changed files with 3 additions and 1 deletions

View File

@@ -9,11 +9,13 @@ using SharpIDE.Photino.Services;
namespace SharpIDE.Photino;
// This C# project is deprecated and serves as a reference only - see the SharpIDE.Godot project
public class Program
{
[STAThread]
public static void Main(string[] args)
{
throw new NotSupportedException("This project is deprecated and serves as a reference only - see the SharpIDE.Godot project");
var appBuilder = PhotinoBlazorAppBuilder.CreateDefault(args);
appBuilder.Services.AddLogging();//

View File

@@ -1,4 +1,4 @@
## SharpIDE.Photino
## [DEPRECATED] SharpIDE.Photino
This was my first attempt with Blazor and Photino, before reaching the point
of needing to work with the monaco editor and javascript, and deciding to reimplement the UI in Godot.