upgrade to .NET 6 and increment version to 3.0.0

This commit is contained in:
Shaun Walker
2021-10-19 15:33:03 -04:00
parent cf69f9e4c4
commit 29bd31f609
32 changed files with 181 additions and 143 deletions

View File

@ -1,10 +1,12 @@
using System.Threading.Tasks;
namespace Oqtane.Infrastructure
{
public interface IInstallationManager
{
void InstallPackages();
bool UninstallPackage(string PackageName);
void UpgradeFramework();
Task UpgradeFramework();
void RestartApplication();
}
}