-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed null value handling in == and != operator generation for class …
…types
- Loading branch information
1 parent
945183c
commit a2b9df5
Showing
2 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>Latest</LangVersion> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<Nullable>enable</Nullable> | ||
<LangVersion>Latest</LangVersion> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
|
||
<Authors>ALTA Software llc.</Authors> | ||
<Product>Domain Primitives</Product> | ||
<Company>ALTA Software llc.</Company> | ||
<Copyright>Copyright © 2024 ALTA Software llc.</Copyright> | ||
<Version>2.0.0</Version> | ||
</PropertyGroup> | ||
<Authors>ALTA Software llc.</Authors> | ||
<Product>Domain Primitives</Product> | ||
<Company>ALTA Software llc.</Company> | ||
<Copyright>Copyright © 2024 ALTA Software llc.</Copyright> | ||
<Version>2.0.1</Version> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<ProjectUrl>https://github.com/altasoft/DomainPrimitives</ProjectUrl> | ||
<RepositoryUrl>https://github.com/altasoft/DomainPrimitives</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageProjectUrl>https://github.com/altasoft/DomainPrimitives</PackageProjectUrl> | ||
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> | ||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> | ||
<EnableNETAnalyzers>True</EnableNETAnalyzers> | ||
<PackageTags>ddd;domain;entity;dotnet-core;value-object;strongly-typed;</PackageTags> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<ProjectUrl>https://github.com/altasoft/DomainPrimitives</ProjectUrl> | ||
<RepositoryUrl>https://github.com/altasoft/DomainPrimitives</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageProjectUrl>https://github.com/altasoft/DomainPrimitives</PackageProjectUrl> | ||
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild> | ||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> | ||
<EnableNETAnalyzers>True</EnableNETAnalyzers> | ||
<PackageTags>ddd;domain;entity;dotnet-core;value-object;strongly-typed;</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters