CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
WebConfiguration.cs
Go to the documentation of this file.
1#if NETSTANDARD2_0 || NETCOREAPP3_1 || NET5_0_OR_GREATER
2//-----------------------------------------------------------------------
3// <copyright file="WebConfiguration.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>Implement extension methods for .NET Core configuration</summary>
8//-----------------------------------------------------------------------
9using System;
10using Microsoft.AspNetCore.Builder;
11
12namespace Csla.Configuration
13{
17 public static class WebConfigurationExtensions
18 {
23 public static IApplicationBuilder UseCsla(this IApplicationBuilder app)
24 {
25 return app;
26 }
27
28#if NET6_0_OR_GREATER
33 public static WebApplicationBuilder UseCsla(this WebApplicationBuilder app)
34 {
35 return app;
36 }
37#endif
38 }
39}
40#endif