CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
EnterpriseServicesSettings.cs
Go to the documentation of this file.
1#if !NETFX_CORE && !MONO && !(ANDROID || IOS) && !NETSTANDARD2_0 && !NET5_0
2//-----------------------------------------------------------------------
3// <copyright file="EnterpriseServicesSettings.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>no summary</summary>
8//-----------------------------------------------------------------------
9
10using System.EnterpriseServices;
11
12// EnterpriseServices settings
13[assembly: ApplicationActivation(ActivationOption.Library)]
14[assembly: ApplicationName("CSLA .NET DataPortal")]
15[assembly: Description("CSLA .NET Serviced DataPortal")]
16[assembly: ApplicationAccessControl(false)]
17
18#endif