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:
Torsten Brendgen
2026-05-14 21:39:46 +02:00
parent 3bfc79e6d9
commit 7db53c1aba
258 changed files with 5479 additions and 12474 deletions

View File

@@ -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";
}
}

View File

@@ -22,7 +22,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Models
[Column(Order = 51)]
[DefaultValue("System")]
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public string ModifiedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
public string ModifiedBy { get; set; } = "System";
[Column(Order = 52)]
[DefaultValueSql("GETDATE()")]
@@ -33,6 +33,6 @@ namespace Microsoft.SelfService.Portal.Core.API.Models
[DefaultValue("System")]
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
//public string CreatedBy { get; set; } = "CCIS-P01S01-CM\\ASA_SSP_Admin";
public string CreatedBy { get; set; } = new HttpContextAccessor().HttpContext.User.Identity.Name;
public string CreatedBy { get; set; } = "System";
}
}