a
This commit is contained in:
@ -3,7 +3,6 @@ using System.Text.Json;
|
||||
namespace View_by_Distance.Drag.Drop.Set.Item.Models;
|
||||
|
||||
public record AppSettings(string Company,
|
||||
string[] IgnoreRulesKeyWords,
|
||||
int MaxDegreeOfParallelism,
|
||||
string[] ValidKeyWords,
|
||||
string WorkingDirectoryName)
|
||||
|
2
Drag-Drop-Set-Property-Item/Models/Binder/.editorconfig
Normal file
2
Drag-Drop-Set-Property-Item/Models/Binder/.editorconfig
Normal file
@ -0,0 +1,2 @@
|
||||
[*.cs]
|
||||
csharp_preserve_single_line_statements = true
|
@ -7,7 +7,6 @@ public class AppSettings
|
||||
{
|
||||
|
||||
public string? Company { get; set; }
|
||||
public string[]? IgnoreRulesKeyWords { get; set; }
|
||||
public int? MaxDegreeOfParallelism { get; set; }
|
||||
public string[]? ValidKeyWords { get; set; }
|
||||
public string? WorkingDirectoryName { get; set; }
|
||||
@ -21,19 +20,12 @@ public class AppSettings
|
||||
private static Models.AppSettings Get(AppSettings? appSettings)
|
||||
{
|
||||
Models.AppSettings result;
|
||||
if (appSettings?.Company is null)
|
||||
throw new NullReferenceException(nameof(appSettings.Company));
|
||||
if (appSettings?.IgnoreRulesKeyWords is null)
|
||||
throw new NullReferenceException(nameof(appSettings.IgnoreRulesKeyWords));
|
||||
if (appSettings?.MaxDegreeOfParallelism is null)
|
||||
throw new NullReferenceException(nameof(appSettings.MaxDegreeOfParallelism));
|
||||
if (appSettings?.ValidKeyWords is null)
|
||||
throw new NullReferenceException(nameof(appSettings.ValidKeyWords));
|
||||
if (appSettings?.WorkingDirectoryName is null)
|
||||
throw new NullReferenceException(nameof(appSettings.WorkingDirectoryName));
|
||||
if (appSettings?.Company is null) throw new NullReferenceException(nameof(appSettings.Company));
|
||||
if (appSettings?.MaxDegreeOfParallelism is null) throw new NullReferenceException(nameof(appSettings.MaxDegreeOfParallelism));
|
||||
if (appSettings?.ValidKeyWords is null) throw new NullReferenceException(nameof(appSettings.ValidKeyWords));
|
||||
if (appSettings?.WorkingDirectoryName is null) throw new NullReferenceException(nameof(appSettings.WorkingDirectoryName));
|
||||
result = new(
|
||||
appSettings.Company,
|
||||
appSettings.IgnoreRulesKeyWords,
|
||||
appSettings.MaxDegreeOfParallelism.Value,
|
||||
appSettings.ValidKeyWords,
|
||||
appSettings.WorkingDirectoryName
|
||||
|
Reference in New Issue
Block a user