mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
9731cdee67
This reverts commit c651a4b36e
.
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);
|
|
} |