winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

ArpVersionValidation.h (459B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 #pragma once
      4 #include "Microsoft/SQLiteIndex.h"
      5 #include <winget/Manifest.h>
      6 
      7 namespace AppInstaller::Repository
      8 {
      9     // Validate the manifest arp version range against index. Any validation failures will be thrown as ManifestException for better message back to caller.
     10     void ValidateManifestArpVersion(const Microsoft::SQLiteIndex* index, const Manifest::Manifest& manifest);
     11 }