winget-cli

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

WinGetDscResourceValidate_VersionSpecifiedWithUseLatest.yml (654B)


      1 properties:
      2   configurationVersion: 0.2.0
      3   resources:
      4     - resource: Microsoft.WinGet.DSC/WinGetSource
      5       id: configureSource
      6       directives:
      7         description: Add test source
      8         allowPrerelease: true
      9       settings:
     10         Name: TestSource
     11         Argument: "https://localhost:5001/TestKit"
     12     - resource: Microsoft.WinGet.DSC/WinGetPackage
     13       id: testPackage
     14       dependsOn:
     15         - configureSource
     16       directives:
     17         description: Install Test Package
     18         allowPrerelease: true
     19       settings:
     20         id: AppInstallerTest.TestExeInstaller
     21         source: TestSource
     22         version: "1.0.1.0"
     23         useLatest: true