unit tests and pkg version commits

This commit is contained in:
Paul Schneider 2021-08-28 18:41:22 +01:00
commit f6fa7a0ec9
17 changed files with 553 additions and 89 deletions

View file

@ -1,4 +1,5 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace isnd.Data.Catalog
@ -38,6 +39,9 @@ namespace isnd.Data.Catalog
[JsonProperty("nuget:version")]
public string Version { get; set; }
public string CommitId { get; set; }
[ForeignKey("CommitId")]
public virtual Commit LastCommit { get; set; }
public DateTime CommitTimeStamp { get; set; }
}
}