mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-12 15:33:32 +08:00
18 lines
495 B
C#
18 lines
495 B
C#
using MicaSetup.Helper;
|
|
using System;
|
|
|
|
namespace MicaSetup.Services;
|
|
|
|
public interface IDotNetVersionService
|
|
{
|
|
public DotNetInstallInfo GetInfo(Version version, bool offline = false);
|
|
|
|
public Version GetNetFrameworkVersion();
|
|
|
|
public bool InstallNetFramework(Version version, InstallerProgressChangedEventHandler callback = null!);
|
|
|
|
public Version GetNetCoreVersion();
|
|
|
|
public bool InstallNetCore(Version version, InstallerProgressChangedEventHandler callback = null!);
|
|
}
|