├── src ├── AppInstallerCLITests │ ├── pch.cpp │ ├── TestData │ │ ├── ImportFile-Bad-Malformed.json │ │ ├── ContainsEscapeControlCode.yaml │ │ ├── ImportFile-Bad-Invalid.json │ │ ├── TestZip.zip │ │ ├── notepad.exe │ │ ├── notepad.ico │ │ ├── TestSignedApp.msix │ │ ├── index.1.0.0.0.msix │ │ ├── index.2.0.0.0.msix │ │ ├── Installer-Good.msix │ │ ├── Installer-Good.msixbundle │ │ ├── index.1.0.0.0.signed.msix │ │ ├── index.2.0.0.0.signed.msix │ │ ├── Installer-Signed-Good.msix │ │ ├── Manifest-Encoding-ANSI.yaml │ │ ├── Manifest-Encoding-UTF16BE.yaml │ │ ├── Manifest-Encoding-UTF16LE.yaml │ │ ├── Installer-Signed-Good.msixbundle │ │ ├── Installer-Good-WithStub.msixbundle │ │ ├── Manifest-Encoding-UTF16BE-BOM.yaml │ │ ├── Manifest-Encoding-UTF16LE-BOM.yaml │ │ ├── Installer-Bad-NoSupportedPlatforms.msix │ │ ├── MultiFileManifestV1 │ │ │ └── ManifestV1-MultiFile-Version.yaml │ │ ├── MultiFileManifestV1_2 │ │ │ └── ManifestV1_2-MultiFile-Version.yaml │ │ ├── MultiFileManifestV1_4 │ │ │ └── ManifestV1_4-MultiFile-Version.yaml │ │ ├── MultiFileManifestV1_5 │ │ │ └── ManifestV1_5-MultiFile-Version.yaml │ │ ├── MultiFileManifestV1_6 │ │ │ └── ManifestV1_6-MultiFile-Version.yaml │ │ ├── MultiFileManifestV1_7 │ │ │ └── ManifestV1_7-MultiFile-Version.yaml │ │ ├── MultiFileManifestV1_1 │ │ │ └── ManifestV1_1-MultiFile-Version.yaml │ │ ├── Node-Merge.yaml │ │ ├── Node-Merge2.yaml │ │ ├── Manifest-Bad-InstallersMissing.yaml │ │ ├── Node-Types.yaml │ │ ├── Shadow │ │ │ └── V1_5 │ │ │ │ └── ManifestV1_5-Shadow-Locale.yaml │ │ ├── Manifest-Bad-Sha256Missing.yaml │ │ ├── Manifest-Bad-Sha256Invalid.yaml │ │ ├── Manifest-Bad-LicenseMissing.yaml │ │ ├── Manifest-Bad-UrlMissing.yaml │ │ ├── Manifest-Bad-IdMissing.yaml │ │ ├── Manifest-Encoding-UTF8.yaml │ │ ├── Manifest-Encoding-UTF8-BOM.yaml │ │ ├── Manifest-Bad-ArchMissing.yaml │ │ ├── Manifest-Bad-NameMissing.yaml │ │ ├── Node-Mapping.yaml │ │ ├── Manifest-Bad-VersionMissing.yaml │ │ ├── Manifest-Bad-UrlInvalid.yaml │ │ ├── Manifest-Bad-InstallerTypeMissing.yaml │ │ └── Manifest-Bad-PublisherMissing.yaml │ └── packages.config ├── PureLib │ └── pure │ │ ├── zlib │ │ ├── contrib │ │ │ ├── blast │ │ │ │ ├── test.txt │ │ │ │ ├── README │ │ │ │ ├── test.pk │ │ │ │ └── Makefile │ │ │ ├── infback9 │ │ │ │ └── README │ │ │ ├── puff │ │ │ │ └── zeros.raw │ │ │ ├── dotzlib │ │ │ │ ├── DotZLib.chm │ │ │ │ └── DotZLib │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ └── CircularBuffer.cs │ │ │ ├── minizip │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ └── minizip.pc.in │ │ │ ├── delphi │ │ │ │ └── ZLibConst.pas │ │ │ ├── testzlib │ │ │ │ └── testzlib.txt │ │ │ └── untgz │ │ │ │ └── Makefile │ │ ├── zlib.3.pdf │ │ ├── doc │ │ │ └── crc-doc.1.0.pdf │ │ ├── Makefile │ │ ├── old │ │ │ └── README │ │ ├── win32 │ │ │ └── VisualC.txt │ │ ├── nintendods │ │ │ └── README │ │ ├── .gitignore │ │ ├── zlib.pc.in │ │ └── zlib.pc.cmakein │ │ └── AUTHORS ├── YamlCppLib │ ├── libyaml │ │ ├── .indent.pro │ │ ├── examples │ │ │ ├── json.yaml │ │ │ ├── array.yaml │ │ │ ├── numbers.yaml │ │ │ ├── mapping.yaml │ │ │ ├── yaml-version.yaml │ │ │ ├── anchors.yaml │ │ │ └── strings.yaml │ │ ├── bootstrap │ │ ├── regression-inputs │ │ │ └── clusterfuzz-testcase-minimized-5607885063061504.yml │ │ ├── cmake │ │ │ └── config.h.in │ │ ├── yaml-0.1.pc.in │ │ └── src │ │ │ └── Makefile.am │ └── config.h ├── AppInstallerCLIE2ETests │ ├── TestData │ │ ├── Configuration │ │ │ ├── Empty.yml │ │ │ ├── NotConfig.yml │ │ │ ├── NoVersion.yml │ │ │ ├── UnknownVersion.yml │ │ │ ├── ResourcesNotASequence.yml │ │ │ ├── UnitNotAMap.yml │ │ │ ├── NoResourceName.yml │ │ │ ├── PSGallery_NoModule_NoSettings.yml │ │ │ ├── PSGallery_NoSettings.yml │ │ │ ├── ShowDetails_TestRepo.yml │ │ │ ├── ModuleMismatch.yml │ │ │ ├── ResourceNotFound.yml │ │ │ ├── Configure_TestRepo_Location.yml │ │ │ ├── Configure_TestRepo.yml │ │ │ └── ShowDetails_TestRepo_0_3.yml │ │ ├── ImportFiles │ │ │ └── ImportFile-Bad-Invalid.json │ │ ├── TëstPackage.msix │ │ ├── AppInstallerTest.cer │ │ ├── IndexPackageIntRoot.cer │ │ ├── AppInstallerTestMsiInstaller.msi │ │ ├── Package │ │ │ └── Assets │ │ │ │ ├── AppPackageStoreLogo.png.png │ │ │ │ ├── AppPackageStoreLogo.scale-100.png │ │ │ │ ├── AppPackageStoreLogo.scale-125.png │ │ │ │ ├── AppPackageStoreLogo.scale-150.png │ │ │ │ ├── AppPackageStoreLogo.scale-200.png │ │ │ │ ├── AppPackageStoreLogo.scale-400.png │ │ │ │ ├── contrast-black │ │ │ │ ├── AppPackageStoreLogo.scale-100_contrast-black.png │ │ │ │ ├── AppPackageStoreLogo.scale-125_contrast-black.png │ │ │ │ ├── AppPackageStoreLogo.scale-150_contrast-black.png │ │ │ │ ├── AppPackageStoreLogo.scale-200_contrast-black.png │ │ │ │ └── AppPackageStoreLogo.scale-400_contrast-black.png │ │ │ │ └── contrast-white │ │ │ │ ├── AppPackageStoreLogo.scale-100_contrast-white.png │ │ │ │ ├── AppPackageStoreLogo.scale-125_contrast-white.png │ │ │ │ ├── AppPackageStoreLogo.scale-150_contrast-white.png │ │ │ │ ├── AppPackageStoreLogo.scale-200_contrast-white.png │ │ │ │ └── AppPackageStoreLogo.scale-400_contrast-white.png │ │ └── WinGetUtil │ │ │ └── Manifests │ │ │ └── Unmerged │ │ │ └── ValidateManifest │ │ │ └── WinGetUtilTest.yaml │ └── ValidateCommand.cs ├── Valijson │ └── valijson │ │ ├── thirdparty │ │ ├── picojson-1.3.0 │ │ │ ├── .gitmodules │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ │ ├── jsoncpp-1.9.4 │ │ │ └── version.in │ │ ├── gtest-1.11.0 │ │ │ ├── docs │ │ │ │ ├── _config.yml │ │ │ │ └── assets │ │ │ │ │ └── css │ │ │ │ │ └── style.scss │ │ │ ├── googlemock │ │ │ │ ├── scripts │ │ │ │ │ ├── generator │ │ │ │ │ │ └── cpp │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── README.md │ │ │ │ ├── docs │ │ │ │ │ └── README.md │ │ │ │ └── include │ │ │ │ │ └── gmock │ │ │ │ │ └── internal │ │ │ │ │ └── custom │ │ │ │ │ └── gmock-generated-actions.h │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE │ │ │ │ │ └── config.yml │ │ │ ├── .clang-format │ │ │ └── googletest │ │ │ │ ├── docs │ │ │ │ └── README.md │ │ │ │ ├── scripts │ │ │ │ └── README.md │ │ │ │ └── cmake │ │ │ │ └── Config.cmake.in │ │ ├── urdl-2013-08-15 │ │ │ ├── doc │ │ │ │ ├── std_dox.txt │ │ │ │ └── urdl.png │ │ │ ├── README │ │ │ └── COPYING │ │ └── json11-ec4e452 │ │ │ └── .gitignore │ │ ├── inspector │ │ ├── .gitignore │ │ ├── inspector.qrc │ │ ├── res │ │ │ ├── AppIcon.ico │ │ │ └── AppIcon.icns │ │ └── src │ │ │ ├── highlighter.cpp │ │ │ ├── main.cpp │ │ │ └── highlighter.h │ │ ├── cmake │ │ └── README │ │ ├── doc │ │ └── inspector │ │ │ └── screenshot.png │ │ └── .gitignore ├── cpprestsdk │ └── cpprestsdk │ │ ├── Release │ │ ├── src │ │ │ ├── .gitignore │ │ │ └── utilities │ │ │ │ └── Resource.rc │ │ ├── samples │ │ │ ├── .gitignore │ │ │ ├── CasaLens │ │ │ │ ├── image │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wall.jpg │ │ │ │ │ └── bing-logo.jpg │ │ │ │ └── CasaLens141 │ │ │ │ │ └── image │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wall.jpg │ │ │ │ │ └── bing-logo.jpg │ │ │ ├── OAuth2Live │ │ │ │ ├── pch.cpp │ │ │ │ └── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── StoreLogo.png │ │ │ │ │ └── SplashScreen.png │ │ │ ├── FacebookDemo │ │ │ │ └── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── StoreLogo.png │ │ │ │ │ └── SplashScreen.png │ │ │ ├── WindowsLiveAuth │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── StoreLogo.png │ │ │ │ │ └── SplashScreen.png │ │ │ │ ├── pch.cpp │ │ │ │ └── pch.h │ │ │ ├── BingRequest │ │ │ │ └── CMakeLists.txt │ │ │ ├── BlackJack │ │ │ │ ├── BlackJack_UIClient │ │ │ │ │ ├── Cards.PNG │ │ │ │ │ └── Assets │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ ├── StoreLogo.png │ │ │ │ │ │ └── SplashScreen.png │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── BlackJack_Client │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── SearchFile │ │ │ │ └── CMakeLists.txt │ │ │ ├── Oauth1Client │ │ │ │ └── CMakeLists.txt │ │ │ ├── Oauth2Client │ │ │ │ └── CMakeLists.txt │ │ │ └── CMakeLists.txt │ │ └── .gitignore │ │ ├── ThirdPartyNotices.txt │ │ ├── CMakeLists.txt │ │ ├── Build_iOS │ │ ├── README.md │ │ └── .gitignore │ │ ├── azure-devops │ │ └── vcpkg-windows.txt │ │ └── .gitmodules ├── Xlang │ └── UndockedRegFreeWinRT │ │ └── src │ │ └── UndockedRegFreeWinRT │ │ ├── TestComponent │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── TestComponent.def │ │ └── packages.config │ │ ├── EmbeddedManifestTest │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── main.cpp │ │ └── packages.config │ │ ├── EmbeddedTestComponent │ │ ├── pch.cpp │ │ ├── Resource.rc │ │ ├── pch.h │ │ ├── EmbeddedTestComponent.def │ │ └── packages.config │ │ ├── UndockedRegFreeWinRTTest │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── main.cpp │ │ └── packages.config │ │ ├── ManifestParserTest │ │ ├── pch.h │ │ ├── main.cpp │ │ └── packages.config │ │ ├── detours │ │ ├── disolarm.cpp │ │ ├── disolx64.cpp │ │ ├── disolx86.cpp │ │ ├── disolarm64.cpp │ │ └── disolia64.cpp │ │ ├── UndockedRegFreeWinRT │ │ ├── cpp.hint │ │ ├── winrtact.def │ │ ├── extwinrt.h │ │ └── packages.config │ │ ├── mwinrtact │ │ └── mwinrtact.csproj │ │ └── SignConfig.xml ├── SfsClient │ └── sfs-client │ │ ├── scripts │ │ └── pip.requirements.txt │ │ ├── .github │ │ └── CODEOWNERS │ │ ├── .cmake-format.json │ │ ├── samples │ │ └── CMakeLists.txt │ │ ├── sfs-client-vcpkg-port │ │ └── sfs-client │ │ │ └── usage │ │ ├── vcpkg-custom-triplets │ │ └── x64-windows-static-custom.cmake │ │ └── client │ │ └── src │ │ └── details │ │ └── OSInfo.h ├── WinGetServer │ ├── WinGetServer.rc │ ├── WinGetServer.exe.manifest │ ├── packages.config │ └── WinGetServerManualActivation_Client.h ├── WinGetUtil │ ├── pch.cpp │ └── packages.config ├── AppInstallerCLICore │ ├── pch.cpp │ └── packages.config ├── AppInstallerCommonCore │ ├── pch.cpp │ ├── external │ │ └── README.md │ └── packages.config ├── AppInstallerSharedLib │ ├── pch.cpp │ ├── packages.config │ └── ICU │ │ └── SQLiteICU.h ├── CertificateResources │ ├── StoreLeaf1.cer │ ├── StoreLeaf2.cer │ ├── StoreRoot1.cer │ ├── StoreRoot2.cer │ ├── StoreIntermediate1.cer │ └── StoreIntermediate2.cer ├── AppInstallerRepositoryCore │ ├── pch.cpp │ └── packages.config ├── VcpkgCustomTriplets │ ├── arm.cmake │ ├── x64.cmake │ ├── x86.cmake │ ├── arm64.cmake │ ├── arm-release.cmake │ ├── x64-release.cmake │ ├── x86-release.cmake │ ├── arm-release-static.cmake │ ├── arm64-release.cmake │ ├── x64-release-static.cmake │ ├── x86-release-static.cmake │ └── arm64-release-static.cmake ├── Microsoft.Management.Configuration │ ├── pch.cpp │ ├── Microsoft_Management_Configuration.def │ └── packages.config ├── Microsoft.Management.Deployment │ ├── pch.cpp │ ├── Microsoft_Management_Deployment.def │ └── packages.config ├── Microsoft.Management.Deployment.InProc │ ├── pch.cpp │ ├── Source.def │ ├── pch.h │ └── packages.config ├── AppInstallerCLIPackage │ └── Images │ │ ├── StoreDisplay-150.png │ │ ├── StoreDisplay-300.png │ │ ├── StoreDisplay-71.png │ │ ├── AppList.scale-100.png │ │ ├── AppList.scale-125.png │ │ ├── AppList.scale-150.png │ │ ├── AppList.scale-200.png │ │ ├── AppList.scale-400.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── MedTile.scale-100.png │ │ ├── MedTile.scale-125.png │ │ ├── MedTile.scale-150.png │ │ ├── MedTile.scale-200.png │ │ ├── MedTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── WideTile.scale-100.png │ │ ├── WideTile.scale-125.png │ │ ├── WideTile.scale-150.png │ │ ├── WideTile.scale-200.png │ │ ├── WideTile.scale-400.png │ │ ├── AppList.targetsize-16.png │ │ ├── AppList.targetsize-20.png │ │ ├── AppList.targetsize-24.png │ │ ├── AppList.targetsize-30.png │ │ ├── AppList.targetsize-32.png │ │ ├── AppList.targetsize-36.png │ │ ├── AppList.targetsize-40.png │ │ ├── AppList.targetsize-48.png │ │ ├── AppList.targetsize-56.png │ │ ├── AppList.targetsize-60.png │ │ ├── AppList.targetsize-64.png │ │ ├── AppList.targetsize-72.png │ │ ├── AppList.targetsize-80.png │ │ ├── AppList.targetsize-96.png │ │ ├── AppList.targetsize-256.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── AppList.targetsize-16_altform-unplated.png │ │ ├── AppList.targetsize-20_altform-unplated.png │ │ ├── AppList.targetsize-24_altform-unplated.png │ │ ├── AppList.targetsize-256_altform-unplated.png │ │ ├── AppList.targetsize-30_altform-unplated.png │ │ ├── AppList.targetsize-32_altform-unplated.png │ │ ├── AppList.targetsize-36_altform-unplated.png │ │ ├── AppList.targetsize-40_altform-unplated.png │ │ ├── AppList.targetsize-48_altform-unplated.png │ │ ├── AppList.targetsize-56_altform-unplated.png │ │ ├── AppList.targetsize-60_altform-unplated.png │ │ ├── AppList.targetsize-64_altform-unplated.png │ │ ├── AppList.targetsize-72_altform-unplated.png │ │ ├── AppList.targetsize-80_altform-unplated.png │ │ ├── AppList.targetsize-96_altform-unplated.png │ │ ├── AppList.targetsize-16_altform-lightunplated.png │ │ ├── AppList.targetsize-20_altform-lightunplated.png │ │ ├── AppList.targetsize-24_altform-lightunplated.png │ │ ├── AppList.targetsize-256_altform-lightunplated.png │ │ ├── AppList.targetsize-30_altform-lightunplated.png │ │ ├── AppList.targetsize-32_altform-lightunplated.png │ │ ├── AppList.targetsize-36_altform-lightunplated.png │ │ ├── AppList.targetsize-40_altform-lightunplated.png │ │ ├── AppList.targetsize-48_altform-lightunplated.png │ │ ├── AppList.targetsize-56_altform-lightunplated.png │ │ ├── AppList.targetsize-60_altform-lightunplated.png │ │ ├── AppList.targetsize-64_altform-lightunplated.png │ │ ├── AppList.targetsize-72_altform-lightunplated.png │ │ ├── AppList.targetsize-80_altform-lightunplated.png │ │ ├── AppList.targetsize-96_altform-lightunplated.png │ │ ├── AppList.scale-100_altform-colorful_theme-light.png │ │ ├── AppList.scale-125_altform-colorful_theme-light.png │ │ ├── AppList.scale-150_altform-colorful_theme-light.png │ │ ├── AppList.scale-200_altform-colorful_theme-light.png │ │ ├── AppList.scale-400_altform-colorful_theme-light.png │ │ ├── MedTile.scale-100_altform-colorful_theme-light.png │ │ ├── MedTile.scale-125_altform-colorful_theme-light.png │ │ ├── MedTile.scale-150_altform-colorful_theme-light.png │ │ ├── MedTile.scale-200_altform-colorful_theme-light.png │ │ ├── MedTile.scale-400_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-100_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-125_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-150_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-200_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-400_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-100_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-125_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-150_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-200_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-400_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-100_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-125_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-150_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-200_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-400_altform-colorful_theme-light.png │ │ ├── WideTile.scale-100_altform-colorful_theme-light.png │ │ ├── WideTile.scale-125_altform-colorful_theme-light.png │ │ ├── WideTile.scale-150_altform-colorful_theme-light.png │ │ ├── WideTile.scale-200_altform-colorful_theme-light.png │ │ ├── WideTile.scale-400_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-100_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-100_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-125_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-125_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-150_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-150_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-200_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-200_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-400_altform-colorful_theme-dark.png │ │ └── SplashScreen.scale-400_altform-colorful_theme-light.png ├── AppInstallerTestMsixInstaller │ └── Images │ │ ├── StoreLogo.png │ │ ├── SplashScreen.scale-200.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Square44x44Logo.targetsize-24_altform-unplated.png ├── WinGetUtilInterop.UnitTests │ └── TestCollateral │ │ └── SomeEqualityWithoutInstallers.yaml ├── Microsoft.Management.Configuration.OutOfProc │ ├── pch.cpp │ ├── Source.def │ └── packages.config ├── PowerShell │ └── ExternalModules │ │ ├── PowerShellGet │ │ └── 2.2.5 │ │ │ └── PSModule.psm1 │ │ └── PackageManagement │ │ └── 1.4.8.1 │ │ ├── fullclr │ │ ├── Microsoft.PackageManagement.dll │ │ ├── Microsoft.PowerShell.PackageManagement.dll │ │ ├── Microsoft.PackageManagement.MsiProvider.dll │ │ ├── Microsoft.PackageManagement.MsuProvider.dll │ │ ├── Microsoft.PackageManagement.CoreProviders.dll │ │ ├── Microsoft.PackageManagement.NuGetProvider.dll │ │ ├── Microsoft.PackageManagement.ArchiverProviders.dll │ │ └── Microsoft.PackageManagement.MetaProvider.PowerShell.dll │ │ ├── DSCResources │ │ ├── PackageManagementDscUtilities.strings.psd1 │ │ ├── MSFT_PackageManagement │ │ │ ├── MSFT_PackageManagement.schema.mof │ │ │ └── MSFT_PackageManagement.strings.psd1 │ │ └── MSFT_PackageManagementSource │ │ │ ├── MSFT_PackageManagementSource.psm1 │ │ │ ├── MSFT_PackageManagementSource.schema.mof │ │ │ └── MSFT_PackageManagementSource.strings.psd1 │ │ └── coreclr │ │ └── netstandard2.0 │ │ ├── Microsoft.PackageManagement.dll │ │ ├── Microsoft.PowerShell.PackageManagement.dll │ │ ├── Microsoft.PackageManagement.CoreProviders.dll │ │ ├── Microsoft.PackageManagement.NuGetProvider.dll │ │ ├── Microsoft.PackageManagement.ArchiverProviders.dll │ │ └── Microsoft.PackageManagement.MetaProvider.PowerShell.dll ├── AppInstallerCLI │ ├── packages.config │ └── main.cpp ├── WinGetYamlFuzzing │ ├── packages.config │ └── dictionary.txt ├── WinGetSchemas │ └── PackagesSchema.h ├── WindowsPackageManager │ └── packages.config ├── WinGetSourceCreator │ └── Model │ │ └── InstallerType.cs └── nuget.config ├── CODEOWNERS ├── tools ├── PowerShell │ ├── Microsoft.WinGet │ │ ├── test │ │ │ └── README.md │ │ ├── doc │ │ │ └── README.md │ │ └── src │ │ │ └── Microsoft.WinGet.psm1 │ └── Microsoft.WinGet.Client │ │ ├── test │ │ └── README.md │ │ └── doc │ │ └── README.md ├── SampleWinGetUWPCaller │ └── AppInstallerCaller │ │ ├── App.idl │ │ ├── pch.cpp │ │ ├── Assets │ │ ├── StoreLogo.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ └── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── packages.config │ │ └── GeneratedFromServer │ │ └── Microsoft.Management.Deployment.winmd └── CorrelationTestbed │ └── InstallAndCheckCorrelation │ └── InstallAndCheckCorrelation │ ├── Microsoft.Management.Deployment.winmd │ └── packages.config ├── .github ├── images │ ├── README.md │ ├── WIPowerToys.gif │ ├── WingetInstall.gif │ ├── WingetInstallTerminal.gif │ └── WindowsPackageManager_Assets │ │ ├── ICO │ │ ├── PNG │ │ │ ├── _16.png │ │ │ ├── _20.png │ │ │ ├── _24.png │ │ │ ├── _32.png │ │ │ ├── _40.png │ │ │ ├── _48.png │ │ │ ├── _64.png │ │ │ └── _256.png │ │ └── WindowsPackageManager.ico │ │ └── UWP │ │ ├── StoreDisplay-71.png │ │ ├── AppList.scale-100.png │ │ ├── AppList.scale-125.png │ │ ├── AppList.scale-150.png │ │ ├── AppList.scale-200.png │ │ ├── AppList.scale-400.png │ │ ├── MedTile.scale-100.png │ │ ├── MedTile.scale-125.png │ │ ├── MedTile.scale-150.png │ │ ├── MedTile.scale-200.png │ │ ├── MedTile.scale-400.png │ │ ├── StoreDisplay-150.png │ │ ├── StoreDisplay-300.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── WideTile.scale-100.png │ │ ├── WideTile.scale-125.png │ │ ├── WideTile.scale-150.png │ │ ├── WideTile.scale-200.png │ │ ├── WideTile.scale-400.png │ │ ├── AppList.targetsize-16.png │ │ ├── AppList.targetsize-20.png │ │ ├── AppList.targetsize-24.png │ │ ├── AppList.targetsize-256.png │ │ ├── AppList.targetsize-30.png │ │ ├── AppList.targetsize-32.png │ │ ├── AppList.targetsize-36.png │ │ ├── AppList.targetsize-40.png │ │ ├── AppList.targetsize-48.png │ │ ├── AppList.targetsize-56.png │ │ ├── AppList.targetsize-60.png │ │ ├── AppList.targetsize-64.png │ │ ├── AppList.targetsize-72.png │ │ ├── AppList.targetsize-80.png │ │ ├── AppList.targetsize-96.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── AppList.targetsize-16_altform-unplated.png │ │ ├── AppList.targetsize-20_altform-unplated.png │ │ ├── AppList.targetsize-24_altform-unplated.png │ │ ├── AppList.targetsize-256_altform-unplated.png │ │ ├── AppList.targetsize-30_altform-unplated.png │ │ ├── AppList.targetsize-32_altform-unplated.png │ │ ├── AppList.targetsize-36_altform-unplated.png │ │ ├── AppList.targetsize-40_altform-unplated.png │ │ ├── AppList.targetsize-48_altform-unplated.png │ │ ├── AppList.targetsize-56_altform-unplated.png │ │ ├── AppList.targetsize-60_altform-unplated.png │ │ ├── AppList.targetsize-64_altform-unplated.png │ │ ├── AppList.targetsize-72_altform-unplated.png │ │ ├── AppList.targetsize-80_altform-unplated.png │ │ ├── AppList.targetsize-96_altform-unplated.png │ │ ├── AppList.targetsize-16_altform-lightunplated.png │ │ ├── AppList.targetsize-20_altform-lightunplated.png │ │ ├── AppList.targetsize-24_altform-lightunplated.png │ │ ├── AppList.targetsize-256_altform-lightunplated.png │ │ ├── AppList.targetsize-30_altform-lightunplated.png │ │ ├── AppList.targetsize-32_altform-lightunplated.png │ │ ├── AppList.targetsize-36_altform-lightunplated.png │ │ ├── AppList.targetsize-40_altform-lightunplated.png │ │ ├── AppList.targetsize-48_altform-lightunplated.png │ │ ├── AppList.targetsize-56_altform-lightunplated.png │ │ ├── AppList.targetsize-60_altform-lightunplated.png │ │ ├── AppList.targetsize-64_altform-lightunplated.png │ │ ├── AppList.targetsize-72_altform-lightunplated.png │ │ ├── AppList.targetsize-80_altform-lightunplated.png │ │ ├── AppList.targetsize-96_altform-lightunplated.png │ │ ├── AppList.scale-100_altform-colorful_theme-light.png │ │ ├── AppList.scale-125_altform-colorful_theme-light.png │ │ ├── AppList.scale-150_altform-colorful_theme-light.png │ │ ├── AppList.scale-200_altform-colorful_theme-light.png │ │ ├── AppList.scale-400_altform-colorful_theme-light.png │ │ ├── MedTile.scale-100_altform-colorful_theme-light.png │ │ ├── MedTile.scale-125_altform-colorful_theme-light.png │ │ ├── MedTile.scale-150_altform-colorful_theme-light.png │ │ ├── MedTile.scale-200_altform-colorful_theme-light.png │ │ ├── MedTile.scale-400_altform-colorful_theme-light.png │ │ ├── WideTile.scale-100_altform-colorful_theme-light.png │ │ ├── WideTile.scale-125_altform-colorful_theme-light.png │ │ ├── WideTile.scale-150_altform-colorful_theme-light.png │ │ ├── WideTile.scale-200_altform-colorful_theme-light.png │ │ ├── WideTile.scale-400_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-100_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-125_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-150_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-200_altform-colorful_theme-light.png │ │ ├── LargeTile.scale-400_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-100_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-125_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-150_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-200_altform-colorful_theme-light.png │ │ ├── SmallTile.scale-400_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-100_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-125_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-150_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-200_altform-colorful_theme-dark.png │ │ ├── SplashScreen.scale-400_altform-colorful_theme-dark.png │ │ ├── StoreLogo.scale-100_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-125_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-150_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-200_altform-colorful_theme-light.png │ │ ├── StoreLogo.scale-400_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-100_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-125_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-150_altform-colorful_theme-light.png │ │ ├── SplashScreen.scale-200_altform-colorful_theme-light.png │ │ └── SplashScreen.scale-400_altform-colorful_theme-light.png ├── actions │ └── spelling │ │ └── reject.txt ├── PULL_REQUEST_TEMPLATE.md └── ISSUE_TEMPLATE │ └── Documentation_Issue.yml ├── doc └── windows │ └── package-manager │ ├── package │ ├── images │ │ ├── fork.png │ │ └── pull-request.png │ ├── winget-validation-troubleshooter.md │ └── windows-package-manager-policies-change-history.md │ └── winget │ └── images │ ├── export.png │ ├── hash.png │ ├── help.png │ ├── import.png │ ├── list.png │ ├── search.png │ ├── show.png │ ├── source.png │ ├── features.png │ ├── install.png │ ├── settings.png │ ├── upgrade.gif │ ├── upgrade.png │ ├── list-count.png │ ├── list-name.png │ ├── list-update.png │ ├── source-list.png │ ├── uninstall.png │ ├── export-command.png │ ├── import-command.png │ ├── list-id-source.png │ ├── source-list-winget.png │ ├── uninstall-execute.png │ ├── uninstall-multiple.png │ └── uninstall-with-list.png └── Localization └── Settings └── LocConfig.xml /src/AppInstallerCLITests/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- 1 | AIAIAIAIAIAIA -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/.indent.pro: -------------------------------------------------------------------------------- 1 | -kr -nut -nce -l250 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/windows-package-manager-admins 2 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/Empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/picojson-1.3.0/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.cmake 2 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/json.yaml: -------------------------------------------------------------------------------- 1 | {"key": ["value", 3]} 2 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/.gitignore: -------------------------------------------------------------------------------- 1 | *.cmake 2 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/array.yaml: -------------------------------------------------------------------------------- 1 | - member 2 | - member2 3 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/NotConfig.yml: -------------------------------------------------------------------------------- 1 | yaml: true -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec autoreconf -fvi 4 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/numbers.yaml: -------------------------------------------------------------------------------- 1 | [100, 12.5, -130, 1.3e+9] 2 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/jsoncpp-1.9.4/version.in: -------------------------------------------------------------------------------- 1 | @JSONCPP_VERSION@ 2 | -------------------------------------------------------------------------------- /tools/PowerShell/Microsoft.WinGet/test/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for test collateral -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | cmake-build-*/ 3 | CMakeFiles/ 4 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: GoogleTest 2 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/mapping.yaml: -------------------------------------------------------------------------------- 1 | key: value 2 | other-key: other-value 3 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/yaml-version.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- 3 | [1, 2, 3] 4 | -------------------------------------------------------------------------------- /tools/PowerShell/Microsoft.WinGet.Client/test/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for test collateral -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/NoVersion.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | value: 1 -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/ImportFile-Bad-Malformed.json: -------------------------------------------------------------------------------- 1 | This is not a valid JSON file. -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/TestComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /tools/PowerShell/Microsoft.WinGet/doc/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for PlatyPS generated help files 2 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- 1 | See infback9.h for what this is and how to use it. 2 | -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/scripts/pip.requirements.txt: -------------------------------------------------------------------------------- 1 | clang-format==18.1.4 2 | cmake-format==0.6.13 -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/regression-inputs/clusterfuzz-testcase-minimized-5607885063061504.yml: -------------------------------------------------------------------------------- 1 | "(\ 2 | -------------------------------------------------------------------------------- /tools/PowerShell/Microsoft.WinGet.Client/doc/README.md: -------------------------------------------------------------------------------- 1 | Placeholder for PlatyPS generated help files 2 | -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/App.idl: -------------------------------------------------------------------------------- 1 | namespace AppInstallerCaller 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /.github/images/README.md: -------------------------------------------------------------------------------- 1 | This directory is intended to host images for use in GitHub markdown files. 2 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedManifestTest/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedTestComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/picojson-1.3.0/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | a.out 3 | test-core 4 | test-core-int64 5 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRTTest/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/UnknownVersion.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 99999999 -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/ContainsEscapeControlCode.yaml: -------------------------------------------------------------------------------- 1 | key: "This is the ESCAPE control code: \x1b" 2 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/ImportFile-Bad-Invalid.json: -------------------------------------------------------------------------------- 1 | "A valid JSON file that does not conform to the schema" -------------------------------------------------------------------------------- /src/Valijson/valijson/cmake/README: -------------------------------------------------------------------------------- 1 | CMake modules copied from: 2 | 3 | https://github.com/sourcey/libsourcey 4 | 5 | -------------------------------------------------------------------------------- /.github/images/WIPowerToys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WIPowerToys.gif -------------------------------------------------------------------------------- /.github/images/WingetInstall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WingetInstall.gif -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /src/WinGetServer/WinGetServer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/WinGetServer/WinGetServer.rc -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/inspector.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/WinGetUtil/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/ImportFiles/ImportFile-Bad-Invalid.json: -------------------------------------------------------------------------------- 1 | "A valid JSON file that does not conform to the schema" -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/blast/README: -------------------------------------------------------------------------------- 1 | Read blast.h for purpose and usage. 2 | 3 | Mark Adler 4 | madler@alumni.caltech.edu 5 | -------------------------------------------------------------------------------- /src/AppInstallerCLICore/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/AppInstallerCommonCore/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/AppInstallerSharedLib/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/CertificateResources/StoreLeaf1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/CertificateResources/StoreLeaf1.cer -------------------------------------------------------------------------------- /src/CertificateResources/StoreLeaf2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/CertificateResources/StoreLeaf2.cer -------------------------------------------------------------------------------- /src/CertificateResources/StoreRoot1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/CertificateResources/StoreRoot1.cer -------------------------------------------------------------------------------- /src/CertificateResources/StoreRoot2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/CertificateResources/StoreRoot2.cer -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedManifestTest/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\Catch\catch.hpp" 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/ManifestParserTest/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\Catch\catch.hpp" 4 | -------------------------------------------------------------------------------- /.github/images/WingetInstallTerminal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WingetInstallTerminal.gif -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/ResourcesNotASequence.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.1 3 | resources: 1 -------------------------------------------------------------------------------- /src/AppInstallerRepositoryCore/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/doc/crc-doc.1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/doc/crc-doc.1.0.pdf -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRTTest/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "..\Catch\catch.hpp" 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/detours/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/detours/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/detours/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/UnitNotAMap.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.1 3 | resources: 4 | - string -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/docs/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "jekyll-theme-primer"; 5 | @import "main"; 6 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/arm.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE arm) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/x64.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x64) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/x86.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x86) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/ManifestParserTest/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "..\Catch\catch.hpp" 3 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/detours/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/detours/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/ValidateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/ValidateCommand.cs -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/TestZip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/TestZip.zip -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/notepad.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/notepad.exe -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/notepad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/notepad.ico -------------------------------------------------------------------------------- /src/CertificateResources/StoreIntermediate1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/CertificateResources/StoreIntermediate1.cer -------------------------------------------------------------------------------- /src/CertificateResources/StoreIntermediate2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/CertificateResources/StoreIntermediate2.cer -------------------------------------------------------------------------------- /src/Microsoft.Management.Configuration/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | -@echo "Please use ./configure first. Thank you." 3 | 4 | distclean: 5 | make -f Makefile.in distclean 6 | -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/res/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/Valijson/valijson/inspector/res/AppIcon.ico -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/arm64.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE arm64) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedManifestTest/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "..\Catch\catch.hpp" 3 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRTTest/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "..\Catch\catch.hpp" 3 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/.gitignore: -------------------------------------------------------------------------------- 1 | .ninja_* 2 | *.ninja 3 | CMakeFiles/ 4 | CMakeCache.txt 5 | CTestTestfile.cmake 6 | cmake_install.cmake 7 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/res/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/Valijson/valijson/inspector/res/AppIcon.icns -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/picojson-1.3.0/.travis.yml: -------------------------------------------------------------------------------- 1 | language: cpp 2 | 3 | compiler: 4 | - clang 5 | - gcc 6 | 7 | script: 8 | - make test 9 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/urdl-2013-08-15/doc/std_dox.txt: -------------------------------------------------------------------------------- 1 | /** 2 | \class std::basic_istream 3 | */ 4 | 5 | /** 6 | \class std::streambuf 7 | */ 8 | -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /doc/windows/package-manager/package/images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/package/images/fork.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/export.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/hash.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/help.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/import.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/list.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/search.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/show.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/source.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/TestSignedApp.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/TestSignedApp.msix -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/index.1.0.0.0.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/index.1.0.0.0.msix -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/index.2.0.0.0.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/index.2.0.0.0.msix -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment.InProc/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | #include "pch.h" 5 | -------------------------------------------------------------------------------- /src/Valijson/valijson/doc/inspector/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/Valijson/valijson/doc/inspector/screenshot.png -------------------------------------------------------------------------------- /src/YamlCppLib/config.h: -------------------------------------------------------------------------------- 1 | #define YAML_VERSION_MAJOR 0 2 | #define YAML_VERSION_MINOR 2 3 | #define YAML_VERSION_PATCH 5 4 | #define YAML_VERSION_STRING "0.2.5" 5 | -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/features.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/install.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/settings.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/upgrade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/upgrade.gif -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/upgrade.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/TëstPackage.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/TëstPackage.msix -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreDisplay-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreDisplay-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreDisplay-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreDisplay-300.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreDisplay-71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreDisplay-71.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Installer-Good.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Installer-Good.msix -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/StoreLogo.png -------------------------------------------------------------------------------- /src/WinGetUtilInterop.UnitTests/TestCollateral/SomeEqualityWithoutInstallers.yaml: -------------------------------------------------------------------------------- 1 | Id: id.id 2 | Version: 1.2.3 3 | Switches: 4 | Custom: custom 5 | Silent: /s -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/list-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/list-count.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/list-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/list-name.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/list-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/list-update.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/source-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/source-list.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/uninstall.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/AppInstallerTest.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/AppInstallerTest.cer -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-400.png -------------------------------------------------------------------------------- /src/Microsoft.Management.Configuration.OutOfProc/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | #include "pch.h" 5 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.9) 2 | project(cpprestsdk-root NONE) 3 | enable_testing() 4 | add_subdirectory(Release) 5 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_16.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_20.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_24.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_32.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_40.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_48.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_64.png -------------------------------------------------------------------------------- /doc/windows/package-manager/package/images/pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/package/images/pull-request.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-16.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-20.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-24.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-30.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-32.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-36.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-40.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-48.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-56.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-60.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-64.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-72.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-80.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-96.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Installer-Good.msixbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Installer-Good.msixbundle -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/index.1.0.0.0.signed.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/index.1.0.0.0.signed.msix -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/index.2.0.0.0.signed.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/index.2.0.0.0.signed.msix -------------------------------------------------------------------------------- /src/PureLib/pure/AUTHORS: -------------------------------------------------------------------------------- 1 | Joran Dirk Greef (Ronomon) 2 | Maxim Vainstein (Microsoft) 3 | Milind Solage (Microsoft) 4 | Patrik Vicol (Microsoft) 5 | Stacy Sheperson (Microsoft) 6 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/old/README: -------------------------------------------------------------------------------- 1 | This directory contains files that have not been updated for zlib 1.2.x 2 | 3 | (Volunteers are encouraged to help clean this up. Thanks.) 4 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the contrib/vstudio/ directory. 4 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Build_iOS/README.md: -------------------------------------------------------------------------------- 1 | Please consult the documentation [here](https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-iOS) for iOS compilation. 2 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/src/utilities/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/src/utilities/Resource.rc -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/azure-devops/vcpkg-windows.txt: -------------------------------------------------------------------------------- 1 | openssl 2 | boost-system 3 | boost-date-time 4 | boost-regex 5 | boost-interprocess 6 | websocketpp 7 | brotli 8 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/PNG/_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/PNG/_256.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/export-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/export-command.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/import-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/import-command.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/list-id-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/list-id-source.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/IndexPackageIntRoot.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/IndexPackageIntRoot.cer -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-256.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Installer-Signed-Good.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Installer-Signed-Good.msix -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-ANSI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Manifest-Encoding-ANSI.yaml -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # The SFS Client Reviewers team will be requested for review when someone opens a pull request. 2 | * @microsoft/sfs-client-reviewers -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/urdl-2013-08-15/doc/urdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/Valijson/valijson/thirdparty/urdl-2013-08-15/doc/urdl.png -------------------------------------------------------------------------------- /.github/actions/spelling/reject.txt: -------------------------------------------------------------------------------- 1 | ^attache$ 2 | benefitting 3 | occurences? 4 | ^dependan.* 5 | ^oer$ 6 | Sorce 7 | ^[Ss]pae.* 8 | ^untill$ 9 | ^untilling$ 10 | ^wether.* 11 | -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/source-list-winget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/source-list-winget.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/uninstall-execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/uninstall-execute.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/uninstall-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/uninstall-multiple.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16BE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16BE.yaml -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16LE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16LE.yaml -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment.InProc/Source.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllCanUnloadNow PRIVATE 3 | DllGetClassObject PRIVATE 4 | DllGetActivationFactory PRIVATE 5 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PowerShellGet/2.2.5/PSModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PowerShellGet/2.2.5/PSModule.psm1 -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PureLib/pure/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/urdl-2013-08-15/README: -------------------------------------------------------------------------------- 1 | urdl version 0.1 2 | Released Wednesday, 03 June 2009. 3 | 4 | See doc/index.html for build information and API documentation. 5 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreDisplay-71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreDisplay-71.png -------------------------------------------------------------------------------- /doc/windows/package-manager/winget/images/uninstall-with-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/doc/windows/package-manager/winget/images/uninstall-with-list.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Installer-Signed-Good.msixbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Installer-Signed-Good.msixbundle -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/Microsoft.Management.Configuration.OutOfProc/Source.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllCanUnloadNow PRIVATE 3 | DllGetClassObject PRIVATE 4 | DllGetActivationFactory PRIVATE 5 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/minizip/MiniZip64_Changes.txt: -------------------------------------------------------------------------------- 1 | 2 | MiniZip 1.1 was derrived from MiniZip at version 1.01f 3 | 4 | Change in 1.0 (Okt 2009) 5 | - **TODO - Add history** 6 | 7 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/.clang-format: -------------------------------------------------------------------------------- 1 | # Run manually to reformat a file: 2 | # clang-format -i --style=file 3 | Language: Cpp 4 | BasedOnStyle: Google 5 | -------------------------------------------------------------------------------- /src/WinGetServer/WinGetServer.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Build_iOS/.gitignore: -------------------------------------------------------------------------------- 1 | # iOS folders that dependencies get stored in 2 | boostoniphone/ 3 | boost 4 | boost.framework/ 5 | ios-cmake/ 6 | openssl/ 7 | OpenSSL-for-iPhone/ -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/image/logo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/image/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/image/wall.jpg -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/StoreLogo.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-400.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-400.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreDisplay-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreDisplay-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreDisplay-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreDisplay-300.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/AppInstallerTestMsiInstaller.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/AppInstallerTestMsiInstaller.msi -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Installer-Good-WithStub.msixbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Installer-Good-WithStub.msixbundle -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16BE-BOM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16BE-BOM.yaml -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16LE-BOM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF16LE-BOM.yaml -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/Logo.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-400.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-400.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- 1 | blast: blast.c blast.h 2 | cc -DTEST -o blast blast.c 3 | 4 | test: blast 5 | blast < test.pk | cmp - test.txt 6 | 7 | clean: 8 | rm -f blast blast.o 9 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRT/cpp.hint: -------------------------------------------------------------------------------- 1 | #define UNDOCKEDREGFREEWINRT_API __declspec(dllexport) 2 | #define UNDOCKEDREGFREEWINRT_API __declspec(dllimport) 3 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRT/winrtact.def: -------------------------------------------------------------------------------- 1 | LIBRARY winrtact 2 | 3 | EXPORTS 4 | winrtact_Initialize 5 | WinGetServerManualActivation_CreateInstance -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/image/bing-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/image/bing-logo.jpg -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/Logo.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/ICO/WindowsPackageManager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/ICO/WindowsPackageManager.ico -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-16.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-20.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-24.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-256.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-30.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-32.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-36.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-40.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-48.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-56.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-60.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-64.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-72.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-80.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-96.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLI/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Installer-Bad-NoSupportedPlatforms.msix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLITests/TestData/Installer-Bad-NoSupportedPlatforms.msix -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/Logo.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-20_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-20_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-30_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-30_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-36_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-36_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-40_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-40_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-56_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-56_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-60_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-60_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-64_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-64_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-72_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-72_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-80_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-80_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-96_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-96_altform-unplated.png -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/.cmake-format.json: -------------------------------------------------------------------------------- 1 | { 2 | "first_comment_is_literal": "true", 3 | "keyword_case": "upper", 4 | "line_ending": "windows", 5 | "max_pargs_hwrap": 3, 6 | "tab_size": 4 7 | } -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/samples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (c) Microsoft Corporation. 2 | # Licensed under the MIT License. 3 | 4 | add_subdirectory(integration-do-client) 5 | add_subdirectory(tool) 6 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/TestComponent/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRT/extwinrt.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | HRESULT WINAPI RegFreeWinRTInitializeForTest(); 4 | HRESULT WINAPI RegFreeWinRTUninitializeForTest(); -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/CasaLens141/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/CasaLens141/image/logo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/CasaLens141/image/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/CasaLens141/image/wall.jpg -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/OAuth2Live/Assets/SplashScreen.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.png.png -------------------------------------------------------------------------------- /src/WinGetServer/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedTestComponent/Resource.rc: -------------------------------------------------------------------------------- 1 | #define MANIFEST_RESOURCE_ID 2 2 | #define RT_MANIFEST 24 3 | MANIFEST_RESOURCE_ID RT_MANIFEST "EmbeddedTestComponent.manifest" -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/anchors.yaml: -------------------------------------------------------------------------------- 1 | base: &base 2 | name: Everyone has same name 3 | 4 | foo: &foo 5 | <<: *base 6 | age: 10 7 | 8 | bar: &bar 9 | <<: *base 10 | age: 20 11 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/FacebookDemo/Assets/SplashScreen.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-16_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-16_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-20_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-20_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-24_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-24_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-256_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-256_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-30_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-30_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-32_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-32_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-36_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-36_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-40_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-40_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-48_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-48_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-56_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-56_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-60_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-60_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-64_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-64_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-72_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-72_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-80_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-80_altform-lightunplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.targetsize-96_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.targetsize-96_altform-lightunplated.png -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment.InProc/pch.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #define WIN32_LEAN_AND_MEAN 4 | #include 5 | #include -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment/Microsoft_Management_Deployment.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllCanUnloadNow = WINRT_CanUnloadNow PRIVATE 3 | DllGetActivationFactory = WINRT_GetActivationFactory PRIVATE 4 | -------------------------------------------------------------------------------- /src/WinGetYamlFuzzing/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedTestComponent/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BingRequest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(BingRequest bingrequest.cpp) 3 | target_link_libraries(BingRequest cpprest) 4 | endif() -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Cards.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Cards.PNG -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/CasaLens141/image/bing-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/CasaLens/CasaLens141/image/bing-logo.jpg -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/Assets/SplashScreen.png -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/AppList.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/AppList.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/MedTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/MedTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/Microsoft.Management.Configuration/Microsoft_Management_Configuration.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllCanUnloadNow = WINRT_CanUnloadNow PRIVATE 3 | DllGetActivationFactory = WINRT_GetActivationFactory PRIVATE 4 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googlemock/docs/README.md: -------------------------------------------------------------------------------- 1 | # Content Moved 2 | 3 | We are working on updates to the GoogleTest documentation, which has moved to 4 | the top-level [docs](../../docs) directory. 5 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googletest/docs/README.md: -------------------------------------------------------------------------------- 1 | # Content Moved 2 | 3 | We are working on updates to the GoogleTest documentation, which has moved to 4 | the top-level [docs](../../docs) directory. 5 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/SearchFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(SearchFile searchfile.cpp) 3 | target_link_libraries(SearchFile cpprest) 4 | endif() 5 | -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/AppPackageStoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/LargeTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/LargeTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SmallTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SmallTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/StoreLogo.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/StoreLogo.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/WideTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/WideTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/Logo.png -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/NoResourceName.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | resources: 4 | - resource: Module/ 5 | id: Identifier 6 | settings: 7 | SettingInt: 1 -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-100_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-100_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-125_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-125_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-150_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-150_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-200_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-200_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-400_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-400_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /src/AppInstallerCLIPackage/Images/SplashScreen.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIPackage/Images/SplashScreen.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1/ManifestV1-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | 5 | ManifestType: version 6 | ManifestVersion: 1.0.0 7 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1_2/ManifestV1_2-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | ManifestType: version 5 | ManifestVersion: 1.2.0 6 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1_4/ManifestV1_4-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | ManifestType: version 5 | ManifestVersion: 1.4.0 6 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1_5/ManifestV1_5-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | ManifestType: version 5 | ManifestVersion: 1.5.0 6 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1_6/ManifestV1_6-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | ManifestType: version 5 | ManifestVersion: 1.6.0 6 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1_7/ManifestV1_7-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | ManifestType: version 5 | ManifestVersion: 1.7.0 6 | -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/sfs-client-vcpkg-port/sfs-client/usage: -------------------------------------------------------------------------------- 1 | The package sfs-client provides CMake targets: 2 | 3 | find_package(sfsclient CONFIG REQUIRED) 4 | target_link_libraries(main PRIVATE microsoft::sfsclient) 5 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/TestComponent/TestComponent.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllCanUnloadNow = WINRT_CanUnloadNow PRIVATE 3 | DllGetActivationFactory = WINRT_GetActivationFactory PRIVATE 4 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-20_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-20_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-30_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-30_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-36_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-36_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-40_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-40_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-56_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-56_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-60_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-60_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-64_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-64_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-72_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-72_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-80_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-80_altform-unplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-96_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-96_altform-unplated.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/MultiFileManifestV1_1/ManifestV1_1-MultiFile-Version.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | DefaultLocale: en-US 4 | 5 | ManifestType: version 6 | ManifestVersion: 1.1.0 7 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Node-Merge.yaml: -------------------------------------------------------------------------------- 1 | StrawHats: 2 | - Name: Monkey D Luffy 3 | Bounty: 3,000,000,000 4 | - Name: Roronoa Zoro 5 | Bounty: 1,111,000,000 6 | - Name: Nami 7 | Bounty: 366,000,000 8 | 9 | -------------------------------------------------------------------------------- /src/AppInstallerTestMsixInstaller/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerTestMsixInstaller/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Node-Merge2.yaml: -------------------------------------------------------------------------------- 1 | StrawHats: 2 | - name: Monkey d Luffy 3 | Bounty: 150,000,000 4 | Fruit: Gomu Gomu no Mi 5 | - Name: Nico Robin 6 | Bounty: 930,000,000 7 | Fruit: Hana Hana no Mi 8 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/mwinrtact/mwinrtact.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_UIClient/Assets/SplashScreen.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-16_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-16_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-20_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-20_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-24_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-24_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-256_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-256_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-30_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-30_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-32_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-32_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-36_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-36_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-40_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-40_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-48_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-48_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-56_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-56_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-60_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-60_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-64_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-64_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-72_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-72_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-80_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-80_altform-lightunplated.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-96_altform-lightunplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.targetsize-96_altform-lightunplated.png -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.dll -------------------------------------------------------------------------------- /src/WinGetYamlFuzzing/dictionary.txt: -------------------------------------------------------------------------------- 1 | "[" 2 | "]" 3 | "{" 4 | "}" 5 | "-" 6 | "," 7 | "&" 8 | "<<" 9 | ":" 10 | "|" 11 | "!!" 12 | ">" 13 | "\"" 14 | "'" 15 | 16 | integer="123" 17 | float="12.5" 18 | mantissa="1.3e+9" 19 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedTestComponent/EmbeddedTestComponent.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DllCanUnloadNow = WINRT_CanUnloadNow PRIVATE 3 | DllGetActivationFactory = WINRT_GetActivationFactory PRIVATE 4 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/TestComponent/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/cmake/config.h.in: -------------------------------------------------------------------------------- 1 | #define YAML_VERSION_MAJOR @YAML_VERSION_MAJOR@ 2 | #define YAML_VERSION_MINOR @YAML_VERSION_MINOR@ 3 | #define YAML_VERSION_PATCH @YAML_VERSION_PATCH@ 4 | #define YAML_VERSION_STRING "@YAML_VERSION_STRING@" 5 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/AppList.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/MedTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/WideTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_subdirectory(BlackJack_Server) 3 | add_subdirectory(BlackJack_Client) 4 | else() 5 | # TODO: add BlackJack_UIClient 6 | endif() 7 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/Oauth1Client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(oauth1client 3 | Oauth1Client.cpp 4 | ) 5 | 6 | target_link_libraries(oauth1client cpprest) 7 | endif() 8 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/Oauth2Client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) 2 | add_executable(oauth2client 3 | Oauth2Client.cpp 4 | ) 5 | 6 | target_link_libraries(oauth2client cpprest) 7 | endif() 8 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/LargeTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SmallTile.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-100_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-100_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-125_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-125_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-150_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-150_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-200_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-200_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-400_altform-colorful_theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-400_altform-colorful_theme-dark.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/StoreLogo.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedTestComponent/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-100_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-100_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-125_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-125_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-150_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-150_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-200_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-200_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-400_altform-colorful_theme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/.github/images/WindowsPackageManager_Assets/UWP/SplashScreen.scale-400_altform-colorful_theme-light.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/WinGetUtil/Manifests/Unmerged/ValidateManifest/WinGetUtilTest.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: AppInstallerTest.WinGetUtilTest 2 | PackageVersion: "1.0.0.0" 3 | DefaultLocale: en-US 4 | ManifestType: version 5 | ManifestVersion: 1.1.0 6 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-InstallersMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. Installers missing 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | InstallerType: Msi 6 | Publisher: Microsoft 7 | License: Test 8 | ManifestVersion: 0.1.0 9 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/nintendods/README: -------------------------------------------------------------------------------- 1 | This Makefile requires devkitARM (http://www.devkitpro.org/category/devkitarm/) and works inside "contrib/nds". It is based on a devkitARM template. 2 | 3 | Eduardo Costa 4 | January 3, 2009 5 | 6 | -------------------------------------------------------------------------------- /src/Valijson/valijson/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | bin 3 | xcode/valijson.xcodeproj/project.xcworkspace 4 | xcode/valijson.xcodeproj/project.xcworkspace/xcuserdata 5 | xcode/valijson.xcodeproj/xcuserdata 6 | doc/html 7 | .idea 8 | cmake-build-* 9 | CMakeFiles/ 10 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/json11-ec4e452/.gitignore: -------------------------------------------------------------------------------- 1 | # generated files 2 | test 3 | libjson11.a 4 | json11.pc 5 | 6 | # Cmake 7 | CMakeCache.txt 8 | CTestTestfile.cmake 9 | CMakeFiles 10 | CMakeScripts 11 | cmake_install.cmake 12 | install_manifest.txt -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/arm-release.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE arm) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/x64-release.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x64) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/x86-release.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x86) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /tools/SampleWinGetUWPCaller/AppInstallerCaller/GeneratedFromServer/Microsoft.Management.Deployment.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/SampleWinGetUWPCaller/AppInstallerCaller/GeneratedFromServer/Microsoft.Management.Deployment.winmd -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PowerShell.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PowerShell.PackageManagement.dll -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/vcpkg-custom-triplets/x64-windows-static-custom.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x64) 2 | 3 | message(STATUS "PORTs are preferred with static linkage...") 4 | 5 | set(VCPKG_CRT_LINKAGE static) 6 | set(VCPKG_LIBRARY_LINKAGE static) 7 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/arm-release-static.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE arm) 2 | set(VCPKG_CRT_LINKAGE static) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/arm64-release.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE arm64) 2 | set(VCPKG_CRT_LINKAGE dynamic) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/x64-release-static.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x64) 2 | set(VCPKG_CRT_LINKAGE static) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/x86-release-static.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE x86) 2 | set(VCPKG_CRT_LINKAGE static) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/ManifestParserTest/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/PSGallery_NoModule_NoSettings.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.1 3 | resources: 4 | - resource: XmlFileContentResource 5 | directives: 6 | description: Set XML file contents 7 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.MsiProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.MsiProvider.dll -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.MsuProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.MsuProvider.dll -------------------------------------------------------------------------------- /src/VcpkgCustomTriplets/arm64-release-static.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_TARGET_ARCHITECTURE arm64) 2 | set(VCPKG_CRT_LINKAGE static) 3 | set(VCPKG_LIBRARY_LINKAGE static) 4 | set(VCPKG_C_FLAGS "/Qspectre") 5 | set(VCPKG_CXX_FLAGS "/Qspectre") 6 | set(VCPKG_BUILD_TYPE release) 7 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRT/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "vcpkg"] 2 | path = vcpkg 3 | url = https://github.com/Microsoft/vcpkg 4 | [submodule "websocketpp"] 5 | path = Release/libs/websocketpp 6 | url = https://github.com/zaphoyd/websocketpp 7 | fetchRecurseSubmodules = false 8 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/pch.cpp: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | ****/ 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/PSGallery_NoSettings.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | resources: 4 | - resource: XmlContentDsc/XmlFileContentResource 5 | directives: 6 | description: Set XML file contents 7 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/ShowDetails_TestRepo.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | resources: 4 | - resource: xE2ETestResource/E2EFileResource 5 | directives: 6 | repository: AppInstallerCLIE2ETestsRepo 7 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/PackageManagementDscUtilities.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/PackageManagementDscUtilities.strings.psd1 -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.dll -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.CoreProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.CoreProviders.dll -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.NuGetProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.NuGetProvider.dll -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.ArchiverProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.ArchiverProviders.dll -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/BlackJack/BlackJack_Client/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (UNIX) 2 | add_definitions(-Wno-switch) 3 | endif() 4 | 5 | add_executable(blackjackclient 6 | BlackJackClient.cpp 7 | ) 8 | 9 | target_link_libraries(blackjackclient cpprest) 10 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-100_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-100_contrast-black.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-125_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-125_contrast-black.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-150_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-150_contrast-black.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-200_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-200_contrast-black.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-400_contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-black/AppPackageStoreLogo.scale-400_contrast-black.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-100_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-100_contrast-white.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-125_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-125_contrast-white.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-150_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-150_contrast-white.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-200_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-200_contrast-white.png -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-400_contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/AppInstallerCLIE2ETests/TestData/Package/Assets/contrast-white/AppPackageStoreLogo.scale-400_contrast-white.png -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- 1 | unit ZLibConst; 2 | 3 | interface 4 | 5 | resourcestring 6 | sTargetBufferTooSmall = 'ZLib error: target buffer may be too small'; 7 | sInvalidStreamOp = 'Invalid stream operation'; 8 | 9 | implementation 10 | 11 | end. 12 | -------------------------------------------------------------------------------- /tools/CorrelationTestbed/InstallAndCheckCorrelation/InstallAndCheckCorrelation/Microsoft.Management.Deployment.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/tools/CorrelationTestbed/InstallAndCheckCorrelation/InstallAndCheckCorrelation/Microsoft.Management.Deployment.winmd -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Node-Types.yaml: -------------------------------------------------------------------------------- 1 | IntegerUnquoted: 12345 2 | IntegerSingleQuoted: '12345' 3 | IntegerDoubleQuoted: "12345" 4 | 5 | BooleanTrue: true 6 | StringTrue: 'true' 7 | 8 | BooleanFalse: false 9 | StringFalse: 'false' 10 | 11 | LocalTag: !myTag value -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Shadow/V1_5/ManifestV1_5-Shadow-Locale.yaml: -------------------------------------------------------------------------------- 1 | PackageIdentifier: microsoft.msixsdk 2 | PackageVersion: 1.7.32 3 | PackageLocale: en-GB 4 | Description: The MSIX SDK project is an effort to enable developers UK 5 | ManifestType: locale 6 | ManifestVersion: 1.5.0 7 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/urdl-2013-08-15/COPYING: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com) 2 | 3 | Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | -------------------------------------------------------------------------------- /src/WinGetSchemas/PackagesSchema.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #pragma once 4 | 5 | #define PACKAGESSCHEMA_RESOURCE_TYPE 300 6 | 7 | #define IDX_PACKAGES_SCHEMA_V1 301 8 | #define IDX_PACKAGES_SCHEMA_V2 302 9 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | - [ ] I have signed the [Contributor License Agreement](https://cla.opensource.microsoft.com/microsoft/winget-pkgs). 4 | - [ ] This pull request is related to an issue. 5 | 6 | ----- 7 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/ModuleMismatch.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | resources: 4 | - resource: Module/Resource 5 | id: Identifier 6 | directives: 7 | module: DifferentModule 8 | settings: 9 | SettingInt: 1 -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PowerShell.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PowerShell.PackageManagement.dll -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.MetaProvider.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/fullclr/Microsoft.PackageManagement.MetaProvider.PowerShell.dll -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- 1 | To build testzLib with Visual Studio 2005: 2 | 3 | copy to a directory file from : 4 | - root of zLib tree 5 | - contrib/testzlib 6 | - contrib/masmx86 7 | - contrib/masmx64 8 | - contrib/vstudio/vc7 9 | 10 | and open testzlib8.sln -------------------------------------------------------------------------------- /tools/PowerShell/Microsoft.WinGet/src/Microsoft.WinGet.psm1: -------------------------------------------------------------------------------- 1 | Import-Module -Name Microsoft.WinGet.Client -Global -MaximumVersion 0.99.99 2 | Import-Module -Name Microsoft.WinGet.Create -Global -MaximumVersion 0.99.99 3 | Import-Module -Name Microsoft.WinGet.Source -Global -MaximumVersion 0.99.99 4 | -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/src/highlighter.cpp: -------------------------------------------------------------------------------- 1 | #include "highlighter.h" 2 | 3 | Highlighter::Highlighter(QTextDocument *parent) 4 | : QSyntaxHighlighter(parent) 5 | { 6 | // TODO 7 | } 8 | 9 | void Highlighter::highlightBlock(const QString &text) 10 | { 11 | // TODO 12 | } 13 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/yaml-0.1.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | includedir=@includedir@ 4 | libdir=@libdir@ 5 | 6 | Name: LibYAML 7 | Description: Library to parse and emit YAML 8 | Version: @PACKAGE_VERSION@ 9 | Cflags: -I${includedir} 10 | Libs: -L${libdir} -lyaml 11 | -------------------------------------------------------------------------------- /doc/windows/package-manager/package/winget-validation-troubleshooter.md: -------------------------------------------------------------------------------- 1 | # Change history for Microsoft Store Policies 2 | 3 | | Date | Document Version | Change Description | 4 | |------|------------------|--------------------| 5 | | 5/25/2021 | 1.0 | Initial publishing of Windows Package Manager Policies| 6 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mof -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.CoreProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.CoreProviders.dll -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.NuGetProvider.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.NuGetProvider.dll -------------------------------------------------------------------------------- /src/WinGetUtil/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/AppInstallerCommonCore/external/README.md: -------------------------------------------------------------------------------- 1 | This is a temporary location to store headers from external sources: 2 | 1. do.h 3 | - This header for the DeliveryOptimization COM API is not included in the Windows SDK currently, but should be in the near future. While we wait for this fix, we will use this file. -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.strings.psd1 -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.ArchiverProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.ArchiverProviders.dll -------------------------------------------------------------------------------- /src/AppInstallerCLICore/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/AppInstallerSharedLib/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1 -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googlemock/scripts/README.md: -------------------------------------------------------------------------------- 1 | # Please Note: 2 | 3 | Files in this directory are no longer supported by the maintainers. They 4 | represent mostly historical artifacts and supported by the community only. There 5 | is no guarantee whatsoever that these scripts still work. 6 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googletest/scripts/README.md: -------------------------------------------------------------------------------- 1 | # Please Note: 2 | 3 | Files in this directory are no longer supported by the maintainers. They 4 | represent mosty historical artifacts and supported by the community only. There 5 | is no guarantee whatsoever that these scripts still work. 6 | -------------------------------------------------------------------------------- /src/WindowsPackageManager/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /doc/windows/package-manager/package/windows-package-manager-policies-change-history.md: -------------------------------------------------------------------------------- 1 | # Change history for Microsoft Store Policies 2 | 3 | | Date | Document Version | Change Description | 4 | |------|------------------|--------------------| 5 | | 5/25/2021 | 1.0 | Initial publishing of Windows Package Manager Policies| 6 | -------------------------------------------------------------------------------- /src/AppInstallerCommonCore/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/AppInstallerRepositoryCore/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.MetaProvider.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/coreclr/netstandard2.0/Microsoft.PackageManagement.MetaProvider.PowerShell.dll -------------------------------------------------------------------------------- /src/AppInstallerCLI/main.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #define WIN32_LEAN_AND_MEAN 4 | #include 5 | #include 6 | 7 | int wmain(int argc, wchar_t const** argv) 8 | { 9 | return WindowsPackageManagerCLIMain(argc, argv); 10 | } 11 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-Sha256Missing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No Sha256 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | Publisher: Microsoft 6 | InstallerType: Msi 7 | License: Test 8 | Installers: 9 | - Arch: x86 10 | Url: https://ThisIsNotUsed 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/Microsoft.Management.Configuration/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof -------------------------------------------------------------------------------- /src/WinGetSourceCreator/Model/InstallerType.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | namespace WinGetSourceCreator.Model 5 | { 6 | public enum InstallerType 7 | { 8 | Msix, 9 | Exe, 10 | Msi, 11 | Zip, 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/ResourceNotFound.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | resources: 4 | - resource: moduleThatDoesNotExist/resourceThatDoesNotExist 5 | directives: 6 | repository: AppInstallerCLIE2ETestsRepo 7 | settings: 8 | key: Foo 9 | -------------------------------------------------------------------------------- /src/Microsoft.Management.Deployment.InProc/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecterShell/winget-cli/HEAD/src/PowerShell/ExternalModules/PackageManagement/1.4.8.1/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.strings.psd1 -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/Configure_TestRepo_Location.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | assertions: 4 | - resource: xE2ETestResource/E2ETestResource 5 | directives: 6 | repository: AppInstallerCLIE2ETestsRepo 7 | settings: 8 | SecretCode: 4815162342 -------------------------------------------------------------------------------- /src/Microsoft.Management.Configuration.OutOfProc/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/src/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "window.h" 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); 7 | 8 | QApplication app(argc, argv); 9 | Window window; 10 | window.show(); 11 | return app.exec(); 12 | } 13 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/.gitignore: -------------------------------------------------------------------------------- 1 | *.diff 2 | *.patch 3 | *.orig 4 | *.rej 5 | 6 | *~ 7 | *.a 8 | *.lo 9 | *.o 10 | *.dylib 11 | 12 | *.gcda 13 | *.gcno 14 | *.gcov 15 | 16 | /example 17 | /example64 18 | /examplesh 19 | /libz.so* 20 | /minigzip 21 | /minigzip64 22 | /minigzipsh 23 | /zlib.pc 24 | /configure.log 25 | 26 | .DS_Store 27 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS=-g 3 | 4 | untgz: untgz.o ../../libz.a 5 | $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz 6 | 7 | untgz.o: untgz.c ../../zlib.h 8 | $(CC) $(CFLAGS) -c -I../.. untgz.c 9 | 10 | ../../libz.a: 11 | cd ../..; ./configure; make 12 | 13 | clean: 14 | rm -f untgz untgz.o *~ 15 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/zlib.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | sharedlibdir=@sharedlibdir@ 5 | includedir=@includedir@ 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: @VERSION@ 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /src/Valijson/valijson/inspector/src/highlighter.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | class Highlighter : public QSyntaxHighlighter 6 | { 7 | Q_OBJECT 8 | 9 | public: 10 | Highlighter(QTextDocument * parent = 0); 11 | 12 | protected: 13 | void highlightBlock(const QString & text) override; 14 | }; 15 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/EmbeddedManifestTest/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/UndockedRegFreeWinRTTest/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(SearchFile) 2 | add_subdirectory(BingRequest) 3 | add_subdirectory(BlackJack) 4 | add_subdirectory(Oauth1Client) 5 | add_subdirectory(Oauth2Client) 6 | 7 | add_custom_target(samples 8 | DEPENDS SearchFile BingRequest blackjackclient blackjackserver oauth1client oauth2client 9 | ) -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-Sha256Invalid.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. Invalid Sha256 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | Publisher: Microsoft 6 | InstallerType: Msi 7 | License: Test 8 | Installers: 9 | - Arch: x86 10 | Url: https://ThisIsNotUsed 11 | Sha256: 98B6 12 | ManifestVersion: 0.1.0 13 | -------------------------------------------------------------------------------- /src/SfsClient/sfs-client/client/src/details/OSInfo.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | namespace SFS::details::osinfo 9 | { 10 | std::string GetPlatform(); 11 | std::string GetOSMachineInfo(); 12 | } // namespace SFS::details::osinfo 13 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/examples/strings.yaml: -------------------------------------------------------------------------------- 1 | unqouted: string 2 | literal-block: | 3 | This entire block of text will be the value of the 'literal-block' key, 4 | with line breaks being preserved. 5 | folded: > 6 | This entire block of text will be the value of 'folded', but this 7 | time, all newlines will be replaced with a single space. 8 | -------------------------------------------------------------------------------- /src/YamlCppLib/libyaml/src/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include -Wall 2 | lib_LTLIBRARIES = libyaml.la 3 | libyaml_la_SOURCES = yaml_private.h api.c reader.c scanner.c parser.c loader.c writer.c emitter.c dumper.c 4 | libyaml_la_LDFLAGS = -no-undefined -release $(YAML_LT_RELEASE) -version-info $(YAML_LT_CURRENT):$(YAML_LT_REVISION):$(YAML_LT_AGE) 5 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-LicenseMissing.yaml: -------------------------------------------------------------------------------- 1 | Id: microsoft.msixsdk 2 | Name: MSIX SDK 3 | Version: 1.07.32-beta 4 | Publisher: Microsoft 5 | InstallerType: Msi 6 | Installers: 7 | - Arch: x86 8 | Url: https://ThisIsNotUsed 9 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 10 | ManifestVersion: 0.1.0 11 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-UrlMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No Url 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | Publisher: Microsoft 6 | InstallerType: Msi 7 | License: Test 8 | Installers: 9 | - Arch: x86 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/AppInstallerSharedLib/ICU/SQLiteICU.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #pragma once 4 | #include 5 | 6 | // Adapted from the file sqliteicu.h to use the built-in Windows SQLite and ICU binaries. 7 | 8 | extern "C" 9 | { 10 | int sqlite3IcuInit(sqlite3* db); 11 | } 12 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/contrib/minizip/minizip.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@/minizip 5 | 6 | Name: minizip 7 | Description: Minizip zip file manipulation library 8 | Requires: 9 | Version: @PACKAGE_VERSION@ 10 | Libs: -L${libdir} -lminizip 11 | Libs.private: -lz 12 | Cflags: -I${includedir} 13 | -------------------------------------------------------------------------------- /src/Xlang/UndockedRegFreeWinRT/src/UndockedRegFreeWinRT/SignConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tools/CorrelationTestbed/InstallAndCheckCorrelation/InstallAndCheckCorrelation/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-IdMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No Id 2 | Name: MSIX SDK 3 | Version: 1.7.32 4 | InstallerType: Msi 5 | Publisher: Microsoft 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF8.yaml: -------------------------------------------------------------------------------- 1 | Id: microsoft.msixsdk 2 | Name: MSIX SDK© 3 | Version: 1.7.32 4 | InstallerType: Msi 5 | Publisher: Microsoft 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Encoding-UTF8-BOM.yaml: -------------------------------------------------------------------------------- 1 | Id: microsoft.msixsdk 2 | Name: MSIX SDK© 3 | Version: 1.7.32 4 | InstallerType: Msi 5 | Publisher: Microsoft 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/WinGetServer/WinGetServerManualActivation_Client.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. 2 | // Licensed under the MIT License. 3 | #pragma once 4 | #include 5 | 6 | extern "C" HRESULT WinGetServerManualActivation_CreateInstance(REFCLSID rclsid, REFIID riid, UINT32 flags, void** out); 7 | 8 | extern "C" HRESULT WinGetServerManualActivation_Terminate(); 9 | -------------------------------------------------------------------------------- /Localization/Settings/LocConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-ArchMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No Name 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | Publisher: Microsoft 6 | InstallerType: Msi 7 | License: Test 8 | Installers: 9 | - Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-NameMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No Name 2 | Id: microsoft.msixsdk 3 | Version: 1.7.32 4 | Publisher: Microsoft 5 | InstallerType: Msi 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Node-Mapping.yaml: -------------------------------------------------------------------------------- 1 | key: value 2 | 3 | repeatedkey: repeated value 4 | RepeatedKey: repeated value 5 | RepeatedKey: repeated value 6 | 7 | MergeNode: 8 | Custom: /custom 9 | SilentWithProgress: /silentwithprogress 10 | Silent: /silence 11 | 12 | MergeNode2: 13 | silentWithProgress: /silentwithprogress 14 | Interactive: /interactive 15 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-VersionMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No Version 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Publisher: Microsoft 5 | InstallerType: Msi 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/PureLib/pure/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- 1 | prefix=@CMAKE_INSTALL_PREFIX@ 2 | exec_prefix=@CMAKE_INSTALL_PREFIX@ 3 | libdir=@INSTALL_LIB_DIR@ 4 | sharedlibdir=@INSTALL_LIB_DIR@ 5 | includedir=@INSTALL_INC_DIR@ 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: @VERSION@ 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /src/cpprestsdk/cpprestsdk/Release/samples/WindowsLiveAuth/pch.h: -------------------------------------------------------------------------------- 1 | /*** 2 | * Copyright (C) Microsoft. All rights reserved. 3 | * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. 4 | ****/ 5 | 6 | #pragma once 7 | 8 | #include "App.xaml.h" 9 | #include "MainPage.xaml.h" 10 | #include "live_connect.h" 11 | #include -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-UrlInvalid.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. Invalid Url 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | Publisher: Microsoft 6 | InstallerType: Msi 7 | License: Test 8 | Installers: 9 | - Arch: x86 10 | Url: NotAUrl 11 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 12 | ManifestVersion: 0.1.0 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Documentation_Issue.yml: -------------------------------------------------------------------------------- 1 | name: '📚 Documentation Issue' 2 | description: Report issues in our documentation. 3 | labels: ['Issue-Docs'] 4 | body: 5 | - type: textarea 6 | attributes: 7 | label: Brief description of your issue 8 | placeholder: Briefly describe which document needs to be corrected and why 9 | validations: 10 | required: true 11 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-InstallerTypeMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. No InstallerType 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | Publisher: Microsoft 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googlemock/include/gmock/internal/custom/gmock-generated-actions.h: -------------------------------------------------------------------------------- 1 | // GOOGLETEST_CM0002 DO NOT DELETE 2 | 3 | #ifndef GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_CUSTOM_GMOCK_GENERATED_ACTIONS_H_ 4 | #define GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_CUSTOM_GMOCK_GENERATED_ACTIONS_H_ 5 | 6 | #endif // GOOGLEMOCK_INCLUDE_GMOCK_INTERNAL_CUSTOM_GMOCK_GENERATED_ACTIONS_H_ 7 | -------------------------------------------------------------------------------- /src/Valijson/valijson/thirdparty/gtest-1.11.0/googletest/cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | include(CMakeFindDependencyMacro) 3 | if (@GTEST_HAS_PTHREAD@) 4 | set(THREADS_PREFER_PTHREAD_FLAG @THREADS_PREFER_PTHREAD_FLAG@) 5 | find_dependency(Threads) 6 | endif() 7 | 8 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 9 | check_required_components("@project_name@") 10 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/Configure_TestRepo.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | configurationVersion: 0.2 3 | resources: 4 | - resource: xE2ETestResource/E2EFileResource 5 | directives: 6 | repository: AppInstallerCLIE2ETestsRepo 7 | settings: 8 | Path: ${WinGetConfigRoot}\Configure_TestRepo.txt 9 | Content: Contents! 10 | -------------------------------------------------------------------------------- /src/AppInstallerCLIE2ETests/TestData/Configuration/ShowDetails_TestRepo_0_3.yml: -------------------------------------------------------------------------------- 1 | $schema: https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/2023/08/config/document.json 2 | resources: 3 | - name: Name1 4 | type: xE2ETestResource/E2EFileResource 5 | metadata: 6 | repository: AppInstallerCLIE2ETestsRepo 7 | properties: 8 | prop1: 3 9 | prop2: '4' 10 | -------------------------------------------------------------------------------- /src/AppInstallerCLITests/TestData/Manifest-Bad-PublisherMissing.yaml: -------------------------------------------------------------------------------- 1 | # Bad manifest. Publisher missing 2 | Id: microsoft.msixsdk 3 | Name: MSIX SDK 4 | Version: 1.7.32 5 | InstallerType: Zip 6 | License: Test 7 | Installers: 8 | - Arch: x86 9 | Url: https://ThisIsNotUsed 10 | Sha256: 98B67758CEAFFCBB3FE47838FD0A8D7BD581C2650842D6B2B0E0D49A23270CCD 11 | ManifestVersion: 0.1.0 12 | --------------------------------------------------------------------------------