File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ public class FwLiteEditionConfig
17
17
[ Required ]
18
18
public required string FileNameRegex { get ; init ; }
19
19
20
- [ field : AllowNull ]
21
- public Regex FileName => field ??= new Regex ( FileNameRegex ) ;
20
+ private Regex ? _fileName ;
21
+ public Regex FileName => _fileName ??= new Regex ( FileNameRegex ) ;
22
22
}
Original file line number Diff line number Diff line change 4
4
<IncludeOpenAPIAnalyzers >true</IncludeOpenAPIAnalyzers >
5
5
<UserSecretsId >7392cddf-9b3b-441c-9316-203bb5c4a6bc</UserSecretsId >
6
6
<GarbageCollectionAdaptationMode >1</GarbageCollectionAdaptationMode >
7
- <LangVersion >preview</LangVersion >
8
7
</PropertyGroup >
9
8
<ItemGroup >
10
9
<PackageReference Include =" AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL" />
65
64
<ItemGroup >
66
65
<Content Include =" Services\HgEmptyRepo\**" CopyToOutputDirectory =" PreserveNewest" />
67
66
</ItemGroup >
68
- </Project >
67
+ </Project >
You can’t perform that action at this time.
0 commit comments