This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Identity; | |
| using Microsoft.EntityFrameworkCore; | |
| using MyApp.Data; | |
| using MyApp.Migrations; | |
| using MyApp.ServiceModel; | |
| using ServiceStack; | |
| using ServiceStack.Data; | |
| using ServiceStack.OrmLite; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureDbMigrations))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Identity; | |
| using Microsoft.EntityFrameworkCore; | |
| using MyApp.Data; | |
| using MyApp.Migrations; | |
| using MyApp.ServiceModel; | |
| using ServiceStack; | |
| using ServiceStack.Data; | |
| using ServiceStack.OrmLite; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureDbMigrations))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Identity; | |
| using Microsoft.EntityFrameworkCore; | |
| using MyApp.Data; | |
| using MyApp.Migrations; | |
| using MyApp.ServiceModel; | |
| using ServiceStack; | |
| using ServiceStack.Data; | |
| using ServiceStack.OrmLite; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureDbMigrations))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Identity; | |
| using Microsoft.EntityFrameworkCore; | |
| using MyApp.Data; | |
| using MyApp.Migrations; | |
| using MyApp.ServiceModel; | |
| using ServiceStack; | |
| using ServiceStack.Data; | |
| using ServiceStack.OrmLite; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureDbMigrations))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using ServiceStack.Web; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureRequestLogs))] | |
| namespace MyApp; | |
| public class ConfigureRequestLogs : IHostingStartup | |
| { | |
| public void Configure(IWebHostBuilder builder) => builder | |
| .ConfigureServices((context, services) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using ServiceStack.Data; | |
| using ServiceStack.Jobs; | |
| using ServiceStack.Web; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureBackgroundJobs))] | |
| namespace MyApp; | |
| public class ConfigureBackgroundJobs : IHostingStartup | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Identity; | |
| using ServiceStack.Jobs; | |
| using MyApp.Data; | |
| using MyApp.ServiceInterface; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureBackgroundJobs))] | |
| namespace MyApp; | |
| public class ConfigureBackgroundJobs : IHostingStartup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using ServiceStack.AI; | |
| [assembly: HostingStartup(typeof(MyApp.ConfigureAiChat))] | |
| namespace MyApp; | |
| public class ConfigureAiChat : IHostingStartup | |
| { | |
| public void Configure(IWebHostBuilder builder) => builder | |
| .ConfigureServices((context, services) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.Extensions.Options; | |
| namespace MyApp; | |
| /// <summary> | |
| /// Options for configuring the UserAgentBlockingMiddleware | |
| /// </summary> | |
| public class UserAgentBlockingOptions | |
| { | |
| /// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Container | |
| permissions: | |
| packages: write | |
| contents: write | |
| on: | |
| workflow_run: | |
| workflows: ["Build"] | |
| types: | |
| - completed | |
| branches: |
NewerOlder