You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get AccessViolationException when trying to access tag's annotation properties. It seems, that #129 allows to load targets, but the issue occures when trying to access target's lazy-initialized properties.
Here is sample that will cause AVE when executed
#addin Cake.Git&version=3.0.0
var tags = GitTags("..", true);
foreach (var t in tags)
{
if (t.IsAnnotated)
{
Information(t.Annotation.Message);
}
}
Is there any way I can read annotation's properties?
The text was updated successfully, but these errors were encountered:
Hello!
I get AccessViolationException when trying to access tag's annotation properties. It seems, that #129 allows to load targets, but the issue occures when trying to access target's lazy-initialized properties.
Here is sample that will cause AVE when executed
Is there any way I can read annotation's properties?
The text was updated successfully, but these errors were encountered: