blob: fa2077177a4279760656cd35fa0b38729d43617a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "pch.h"
#include "vcpkg_info.h"
namespace vcpkg::Info
{
const std::string& email()
{
static const std::string s_email = R"(vcpkg@microsoft.com)";
return s_email;
}
}
|