diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 67f239bd..d9733aea 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -82,7 +82,7 @@ jobs: - name: zip plugin - net8 shell: bash run: | - mkdir ./ironbug-rhino7 + mkdir ./ironbug-net8 cp ./installer/plugin-net8/* ./ironbug-net8 -r cp ./installer/HVACTemplates ./ironbug-net8 -r 7z a -tzip ironbug-net8.zip ./ironbug-net8 diff --git a/src/Ironbug.HVAC/Loops/IB_PlantLoop.cs b/src/Ironbug.HVAC/Loops/IB_PlantLoop.cs index 4ea89089..1b9bebe8 100644 --- a/src/Ironbug.HVAC/Loops/IB_PlantLoop.cs +++ b/src/Ironbug.HVAC/Loops/IB_PlantLoop.cs @@ -205,15 +205,8 @@ private bool CheckWithBranch(IEnumerable HvacComponents) public bool Equals(IB_PlantLoop other) { if (!base.Equals(other)) - { - //var otherJ = other?.ToJson(); - //var thisJ = this?.ToJson(); - return false; - //var same = this.Equals(other); - //return false; - } - + if (this.SizingPlant != other.SizingPlant) return false;