// // NosInjectorOptions.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Extensions.Options; namespace NosSmooth.Injector { /// /// Options for NosInjector. /// public class NosInjectorOptions : IOptions { /// /// Gets or sets the path to the nos smooth inject dll. /// /// /// If not absolute path, then relative path from the current executing process is assumed. /// public string NosSmoothInjectPath { get; set; } = "NosSmooth.Inject.dll"; /// public NosInjectorOptions Value => this; } }