| File: LoadInSeparateAppDomainAttribute.cs | Web Access |
| Project: src\msbuild\src\Framework\Microsoft.Build.Framework.csproj (Microsoft.Build.Framework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.Build.Framework { /// <summary> /// This attribute is used to mark tasks that need to be run in their own app domains. The build engine will create a new app /// domain each time it needs to run such a task, and immediately unload it when the task is finished. /// </summary> [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public sealed class LoadInSeparateAppDomainAttribute : Attribute { /// <summary> /// Default constructor. /// </summary> public LoadInSeparateAppDomainAttribute() { // do nothing } } }