Source/Manifest.json

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
31
32
33
34
{
  "ModuleInfo": {
    "Name": "<%= $PLASTER_PARAM_Name %>",
    "CompanyName": "<%= $PLASTER_PARAM_Company %>",
    "Copyright": "<%= $PLASTER_PARAM_Company %> <%= $PLASTER_PARAM_Author %>. All rights reserved",
    "Author": "<%= $PLASTER_PARAM_Author %>",
    "Guid": "<%= [GUID]::NewGuid() %>",
    "Description": "<%= $PLASTER_PARAM_Desc %>",
    "CompatiblePSEditions": [
<% switch($PLASTER_PARAM_Tag){
          'Core' {
            '"Core",'
          }
          'Desktop'{
            '"Desktop"'
          }
        }
%>
    ],
    "tags": [
<% switch($PLASTER_PARAM_Tag){
          'Core' {
            '"PSEdition_Core",'
          }
          'Desktop'{
            '"PSEdition_Desktop"'
          }
        }
%>
    ]
  },
  "StaticResources": []
}