Add cache and build configuration files for .NET projects
- Created new cache JSON files for rjsmcshtml, rjsmrazor, and rpswa in both net10.0 and net7.0 directories. - Added static web assets build configuration files in both net10.0 and net7.0 directories. - Included build endpoint configurations and cache files for static web assets. - Ensured all new files are properly initialized with relevant properties and hashes.
This commit is contained in:
@@ -9,13 +9,13 @@ namespace Microsoft.SelfService.Portal.Core.API.Models
|
||||
public DateTime Modified { get; set; } = DateTime.Now;
|
||||
[Column(Order = 51)]
|
||||
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
||||
public string ModifiedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
|
||||
public string ModifiedBy { get; set; } = "System";
|
||||
|
||||
[Column(Order = 52)]
|
||||
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public DateTime Created { get; set; } = DateTime.Now;
|
||||
[Column(Order = 53)]
|
||||
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public string CreatedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
|
||||
public string CreatedBy { get; set; } = "System";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user