Skip to content

Commit

Permalink
NetworkIdentifier is missing in generated Model Design for DI model #629
Browse files Browse the repository at this point in the history


- fixes #651
- UT must be fixed - nodes could be duplicated if they are the target of 2+ references
  • Loading branch information
mpostol committed Mar 17, 2022
1 parent 02b1837 commit 34ee3b8
Show file tree
Hide file tree
Showing 4 changed files with 299 additions and 283 deletions.
8 changes: 8 additions & 0 deletions SemanticData/BuildingErrorsHandling/BuildErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ namespace UAOOI.SemanticData.BuildingErrorsHandling
public partial class BuildError
{
/// <summary>
/// Error: P3-0305000000; Focus: Reference; It is not allowed that References are used to create a looping hierarchy.
/// </summary>
/// <value>An instance of <see cref="BuildError"/> describing the error P3-0305000000.</value>
public static BuildError NotValidLoopingHierarchy { get { return new BuildError()
{ Focus = Focus.Reference,
Identifier = "P3-0305000000",
Descriptor = "It is not allowed that References are used to create a looping hierarchy." }; } }
/// <summary>
/// Error: P0-0001010000; Focus: Diagnostic; The XML attribute or element is not supported and neglected.
/// </summary>
/// <value>An instance of <see cref="BuildError"/> describing the error P0-0001010000.</value>
Expand Down
Loading

0 comments on commit 34ee3b8

Please sign in to comment.