File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88| Versions: |
99| -------------------------------|
10+ | [ 0.16.2-alpha] ( #0162-alpha31 ) |
1011| [ 0.16.1-alpha] ( #0161-alpha30 ) |
1112| [ 0.16.0-alpha] ( #0160-alpha29 ) |
1213| [ 0.15.1-alpha] ( #0151-alpha28 ) |
@@ -28,6 +29,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2829
2930---
3031
32+ ## 0.16.2-alpha.31
33+ 2023-07-19
34+
35+ ### Fixed
36+
37+ - Exception on the BitMono run [ #132 ] ( https://github.com/sunnamed434/BitMono/issues/132 )
38+
39+ ### Changed
40+
41+ - The GitHub Issue Templates are removed now.
42+
3143## 0.16.1-alpha.30
32442023-07-17
3345
Original file line number Diff line number Diff line change 66 <PackageLicenseExpression >MIT</PackageLicenseExpression >
77 <PackageProjectUrl >https://github.com/sunnamed434/BitMono</PackageProjectUrl >
88 <PackageOwners >sunnamed434</PackageOwners >
9- <PackageVersion >0.16.1 -alpha.30 </PackageVersion >
9+ <PackageVersion >0.16.2 -alpha.31 </PackageVersion >
1010 <RepositoryUrl >https://github.com/sunnamed434/BitMono</RepositoryUrl >
1111 <RepositoryType >git</RepositoryType >
1212 <Authors >sunnamed434</Authors >
13- <Version >0.16.1 -alpha.30 </Version >
14- <InformationalVersion >0.16.1 -alpha.30 </InformationalVersion >
13+ <Version >0.16.2 -alpha.31 </Version >
14+ <InformationalVersion >0.16.2 -alpha.31 </InformationalVersion >
1515 <Company >BitMono</Company >
1616 <Copyright >sunnamed434</Copyright >
1717 <LangVersion >10</LangVersion >
Original file line number Diff line number Diff line change 11global using Newtonsoft . Json ;
2- global using System . Collections . Generic ;
2+ global using System . Collections . Generic ;
3+ global using NullGuard ;
Original file line number Diff line number Diff line change 11namespace BitMono . Shared . Models ;
22
3+ [ NullGuard ( ValidationFlags . NonPublic ) ]
34public class CriticalsSettings
45{
56 public bool UseCriticalAttributes { get ; set ; }
@@ -8,12 +9,12 @@ public class CriticalsSettings
89 public bool UseCriticalBaseTypes { get ; set ; }
910 public bool UseCriticalMethodsStartsWith { get ; set ; }
1011 public bool UseCriticalMethods { get ; set ; }
11- #pragma warning disable CS8618
12+ #pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
1213 public List < CriticalAttribute > CriticalAttributes { get ; set ; }
1314 public List < CriticalAttribute > CriticalModelAttributes { get ; set ; }
1415 public List < string > CriticalInterfaces { get ; set ; }
1516 public List < string > CriticalBaseTypes { get ; set ; }
1617 public List < string > CriticalMethodsStartsWith { get ; set ; }
1718 public List < string > CriticalMethods { get ; set ; }
18- #pragma warning restore CS8618
19- }
19+ #pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
20+ }
You can’t perform that action at this time.
0 commit comments