* vcpkg.json -- update all links to point to "main" .. This is hardcoded and will go out in future releases. * ci.yml -- add `- main` to trigger criteria near `- master` ... This adds forward compatilbitiy when we rename the branch in the repo * archetype-cpp-release.yml use a script which evaluates a repo's default branch and sets that in a global variable, then use that variable instead. When vcpkg updates their branch the publishing scripts will work transparently. * Collect-Changelogs.ps1 -- Add default hardcoded branch name for use with future releases. This can be optionally overridden with a parameter when invoking the script. * eng/pipelines/client.yml -- Delete this file. It is no longer in use.
28 lines
701 B
JSON
28 lines
701 B
JSON
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{
|
|
"name": "azure-storage-files-datalake-cpp",
|
|
"version-semver": "@AZ_LIBRARY_VERSION@",
|
|
"description": [
|
|
"Microsoft Azure Storage Files Data Lake SDK for C++",
|
|
"This library provides Azure Storage Files Data Lake SDK."
|
|
],
|
|
"homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/storage/azure-storage-files-datalake",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-storage-blobs-cpp",
|
|
"default-features": false
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
]
|
|
}
|