summaryrefslogtreecommitdiff
path: root/.configurations/configuration.dsc.yaml
blob: 711fa297f0118569e53b7501fa255c5262d91ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2

# This configuration is for a typical end-user installation of Visual Studio Community 2022 with the
# required components to build LibreOffice, excluding the components to cross-compile for ARM64
# It includes recommended packages as if you had selected the "Desktop development with C++"
# workload in the in the UI driven installer.
# (the allowPrerelease directive refers to the DSC module)

properties:
  resources:
    - resource: Microsoft.WinGet.DSC/WinGetPackage
      id: VisualStudio
      directives:
        description: Install Visual Studio 2022 Community
        allowPrerelease: true
      settings:
        id: Microsoft.VisualStudio.2022.Community
        source: winget
    - resource: Microsoft.VisualStudio.DSC/VSComponents
      id: LibreOffice Components including recommended packages 
      dependsOn:
        - VisualStudio
      directives:
        description: Install components required to build LibreOffice, including recommended ones
      settings:
        productId: Microsoft.VisualStudio.Product.Community
        channelId: VisualStudio.17.Release
        vsConfigFile: '${WinGetConfigRoot}\2022.vsconfig'
        IncludeRecommended: true
  configurationVersion: 0.2.0
358084bed4b875396d3dc3e5c'>tdf#123936 Formatting files in module shell with clang-formatPhilipp Hofer 2020-06-10tdf#42949 Fix IWYU warnings in shell/Gabor Kelemen