Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 831e9fd8eb | |||
| af03d37760 | |||
| 0738a230a3 |
@@ -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.
|
/// The ID of an Entity that is beeing reported. This is used to determine the exact entity being reported.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int EntityID { get; }
|
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; }
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>$projectname$</id>
|
<id>$projectname$</id>
|
||||||
<version>1.0.0</version>
|
<version>$version$</version>
|
||||||
<authors>SZUAbsolventenverein</authors>
|
<authors>SZUAbsolventenverein</authors>
|
||||||
<owners>SZUAbsolventenverein</owners>
|
<owners>SZUAbsolventenverein</owners>
|
||||||
<title>Interfaces</title>
|
<title>Interfaces</title>
|
||||||
|
|||||||
@@ -3,15 +3,10 @@ TargetFramework=$1
|
|||||||
ProjectName=$2
|
ProjectName=$2
|
||||||
Configuration=$3
|
Configuration=$3
|
||||||
|
|
||||||
echo "ENV Following:"
|
|
||||||
env
|
|
||||||
|
|
||||||
echo "ENV: ${TargetFramework} ${ProjectName} ${Configuration} RN: ${GITHUB_REF_NAME}"
|
echo "ENV: ${TargetFramework} ${ProjectName} ${Configuration} RN: ${GITHUB_REF_NAME}"
|
||||||
|
|
||||||
cat $ProjectName.nuspec
|
|
||||||
|
|
||||||
find . -name *.nupkg -delete
|
find . -name *.nupkg -delete
|
||||||
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName};Config=${Configuration}"
|
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName};Config=${Configuration};version=${GITHUB_REF_NAME}"
|
||||||
|
|
||||||
if [ $Configuration == 'PublishNuget' ]; then
|
if [ $Configuration == 'PublishNuget' ]; then
|
||||||
echo "Skipping copy to Oqtane.Server/Packages"
|
echo "Skipping copy to Oqtane.Server/Packages"
|
||||||
|
|||||||
Reference in New Issue
Block a user