From 419b05f82ee1a7b88173e3a08e4c2062150d325a Mon Sep 17 00:00:00 2001
From: "VKMTHD\\haraldmartini" <harald.martini@student.tugraz.at>
Date: Sun, 16 Apr 2023 10:08:08 +0200
Subject: [PATCH] added debugger stepthrough attribute to GetContainer() in
 VectoRun

---
 VectoCore/VectoCore/Models/Simulation/Impl/VectoRun.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/VectoRun.cs b/VectoCore/VectoCore/Models/Simulation/Impl/VectoRun.cs
index 2eac8a330a..a17227d724 100644
--- a/VectoCore/VectoCore/Models/Simulation/Impl/VectoRun.cs
+++ b/VectoCore/VectoCore/Models/Simulation/Impl/VectoRun.cs
@@ -31,6 +31,7 @@
 
 using System;
 using System.ComponentModel.DataAnnotations;
+using System.Diagnostics;
 using System.Threading;
 using TUGraz.VectoCommon.Exceptions;
 using TUGraz.VectoCommon.Models;
@@ -81,7 +82,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 			WritingResultsDone = false;
 			_followUpCreator = followUpCreator ?? new NoFollowUpRunCreator();
 		}
-
+		[DebuggerStepThrough]
 		public IVehicleContainer GetContainer() => Container;
 
 		public virtual bool CalculateAggregateValues()
-- 
GitLab