mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
cdd06d7e98
* [Updating] Create a dedicated executable project for updating procedures * [Updating] Use PowerToys.Update for update procedures (#11495) * [Updating] Use PowerToys.Update for update procedures * [Setup] Remove toast notifications and other dependencies from bootstrapper * [Installer] Remove Winstore, redundant strings * [Settings] Remove deprecated 'packaged' setting
12 lines
265 B
C++
12 lines
265 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <optional>
|
|
|
|
namespace fs = std::filesystem;
|
|
namespace updating
|
|
{
|
|
bool dotnet_is_installed();
|
|
std::optional<fs::path> download_dotnet();
|
|
bool install_dotnet(fs::path dotnet_download_path, const bool silent);
|
|
} |