This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fix-NuGetPackage.ps1 | |
# This script fixes NuGet packages exported by vcpkg.exe utility | |
# In the current version (see issue #3954) multiple exported NuGet packages | |
# cannot be used in a single project | |
# | |
# This script fixes it by introducing a "namespace" to MsBuild properties | |
# used by exported NuGet packages | |
# First parameter is a NuGet package name with extension | |
# Second parameter is a namespace prefix (should be valid MsBuild property name) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------------------------------------------------------------- | |
// constexpr GUID parsing | |
// Written by Alexander Bessonov | |
// | |
// Licensed under the MIT license. | |
//------------------------------------------------------------------------------------------------------- | |
#pragma once | |
#include <stdexcept> | |
#include <string> |