update nugets & cleanup

This commit is contained in:
2023-11-21 08:55:48 +01:00
parent c9e9239477
commit 5d031f8ead
45 changed files with 265 additions and 2002 deletions

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.0</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,14 @@
namespace Pilz.Updating.UpdateInstaller.AddOns
{
public static class UpdateInstallerFunctionTypes
{
/// <summary>
/// The function will be executed when a instance of UpdateInstaller has been created.
/// <para/><b>Parameter:</b><br/>
/// <see cref="T:Pilz.Updating.UpdateInstaller.Lib.UpdateInstaller"/>
/// <para/><b>Result type:</b><br/>
/// <see cref="void"/>
/// </summary>
public const string OnInstancingUpdateInstaller = "pilz.updating.updateinstaller.oninstancingupdateinstaller";
}
}