Compare commits
3 Commits
0.0.0-10
...
3cc6eba28e
| Author | SHA1 | Date | |
|---|---|---|---|
| 3cc6eba28e | |||
| 831e9fd8eb | |||
| af03d37760 |
@@ -17,4 +17,12 @@ public interface IReportUI
|
||||
/// The reportable Entity that is being reported.
|
||||
/// </summary>
|
||||
IReportable ReportableEntity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Constructs a list of parameters to be passed to the component.
|
||||
/// </summary>
|
||||
/// <param name="reportableEntity">The entity to be reported.</param>
|
||||
/// <param name="RenderModeBoundary">The render mode boundary.</param>
|
||||
/// <returns>A dictionary of parameters. For </returns>
|
||||
Dictionary<string, object> ConstructParameterList(IReportable reportableEntity, object RenderModeBoundary);
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
@@ -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}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user