2 Commits

Author SHA1 Message Date
831e9fd8eb Add UserName to IReportable.cs
All checks were successful
release-nuget-package / Release NuGet Package (push) Successful in 38s
2026-02-15 22:22:17 +01:00
af03d37760 Remove Debug output 2026-02-15 22:20:08 +01:00
2 changed files with 5 additions and 5 deletions

View File

@@ -24,4 +24,9 @@ public interface IReportable
/// The ID of an Entity that is beeing reported. This is used to determine the exact entity being reported.
/// </summary>
public int EntityID { get; }
/// <summary>
/// The UserName of the user who published the Entity (and who should be held accountible for that Entity).
/// </summary>
public string UserName { get; }
}

View File

@@ -3,13 +3,8 @@ TargetFramework=$1
ProjectName=$2
Configuration=$3
echo "ENV Following:"
env
echo "ENV: ${TargetFramework} ${ProjectName} ${Configuration} RN: ${GITHUB_REF_NAME}"
cat $ProjectName.nuspec
find . -name *.nupkg -delete
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName};Config=${Configuration};version=${GITHUB_REF_NAME}"