diff --git a/csharp/aspnet-minimal-api/config.yaml b/csharp/aspnet-minimal-api/config.yaml index 75dd8d01e30..b14e1f77dc0 100644 --- a/csharp/aspnet-minimal-api/config.yaml +++ b/csharp/aspnet-minimal-api/config.yaml @@ -1,3 +1,3 @@ framework: website: docs.microsoft.com/en-us/aspnet/index - version: 7.0 + version: 8.0 diff --git a/csharp/aspnet-mvc/config.yaml b/csharp/aspnet-mvc/config.yaml index c938c6607f7..27452cffc76 100644 --- a/csharp/aspnet-mvc/config.yaml +++ b/csharp/aspnet-mvc/config.yaml @@ -1,3 +1,3 @@ framework: website: docs.microsoft.com/en-us/aspnet/core/web-api - version: 7.0 + version: 8.0 diff --git a/csharp/beetlex/Program.cs b/csharp/beetlex/Program.cs deleted file mode 100644 index b509cedbb21..00000000000 --- a/csharp/beetlex/Program.cs +++ /dev/null @@ -1,45 +0,0 @@ -using BeetleX.FastHttpApi; -using BeetleX.FastHttpApi.Hosting; -using Microsoft.Extensions.Hosting; -using System; - -namespace web -{ - [Controller] - public class Program - { - static void Main(string[] args) - { - var builder = new HostBuilder() - .ConfigureServices((hostContext, services) => - { - services.UseBeetlexHttp(o => - { - o.LogToConsole = false; - o.ManageApiEnabled = false; - o.WriteLog = false; - o.Port = 3000; - o.SetDebug(); - o.LogLevel = BeetleX.EventArgs.LogType.Off; - }, - typeof(Program).Assembly); - }); - builder.Build().Run(); - } - [Get(Route = "/")] - public object index() - { - return new TextResult(null); - } - [Get(Route = "/user/{id}")] - public object user(string id) - { - return new TextResult(id); - } - [Post(Route = "/user")] - public object create() - { - return new TextResult(null); - } - } -} diff --git a/csharp/beetlex/config.yaml b/csharp/beetlex/config.yaml deleted file mode 100644 index a671122aee8..00000000000 --- a/csharp/beetlex/config.yaml +++ /dev/null @@ -1,4 +0,0 @@ -framework: - website: beetlex.io - github: beetlex-io - version: 1.8 diff --git a/csharp/beetlex/web.csproj b/csharp/beetlex/web.csproj deleted file mode 100644 index 6f6663986f8..00000000000 --- a/csharp/beetlex/web.csproj +++ /dev/null @@ -1,11 +0,0 @@ - - - Exe - net8.0 - - - - - - -