-
Notifications
You must be signed in to change notification settings - Fork 7
/
AddSolution_Full.ps1
413 lines (337 loc) · 17.1 KB
/
AddSolution_Full.ps1
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
Param(
[string] [Parameter(Mandatory = $false)] $Branch = "master",
[bool] [Parameter(Mandatory= $false)] $SkipPreReqs = $false
)
$ProgressPreference = 'SilentlyContinue'
$Text = "Power Platform DevOps"
$UniqueId = "PPDevOps"
function Install-XrmModule{
$moduleName = "Microsoft.Xrm.Data.Powershell"
$moduleVersion = "2.8.8"
$module = Get-Module -ListAvailable -Name $moduleName
if (!($module.Version -ge $moduleVersion )) {
Write-host "Module $moduleName version $moduleVersion or higher not found, installing now"
Install-Module -Name $moduleName -MinimumVersion $moduleVersion -Force -Scope CurrentUser
}
else
{
Write-host "Module $moduleName Found"
}
}
Function Install-ToastModule{
$moduleName = "BurntToast"
if (!(Get-Module -ListAvailable -Name $moduleName )) {
Write-host "Module $moduleName Not found, installing now"
Install-Module -Name $moduleName -Force -Scope CurrentUser
}
else
{
Write-host "Module $moduleName Found"
}
}
function Format-Json {
<#
.SYNOPSIS
Prettifies JSON output.
.DESCRIPTION
Reformats a JSON string so the output looks better than what ConvertTo-Json outputs.
.PARAMETER Json
Required: [string] The JSON text to prettify.
.PARAMETER Minify
Optional: Returns the json string compressed.
.PARAMETER Indentation
Optional: The number of spaces (1..1024) to use for indentation. Defaults to 4.
.PARAMETER AsArray
Optional: If set, the output will be in the form of a string array, otherwise a single string is output.
.EXAMPLE
$json | ConvertTo-Json | Format-Json -Indentation 2
#>
[CmdletBinding(DefaultParameterSetName = 'Prettify')]
Param(
[Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)]
[string]$Json,
[Parameter(ParameterSetName = 'Minify')]
[switch]$Minify,
[Parameter(ParameterSetName = 'Prettify')]
[ValidateRange(1, 1024)]
[int]$Indentation = 4,
[Parameter(ParameterSetName = 'Prettify')]
[switch]$AsArray
)
if ($PSCmdlet.ParameterSetName -eq 'Minify') {
return ($Json | ConvertFrom-Json) | ConvertTo-Json -Depth 100 -Compress
}
# If the input JSON text has been created with ConvertTo-Json -Compress
# then we first need to reconvert it without compression
if ($Json -notmatch '\r?\n') {
$Json = ($Json | ConvertFrom-Json) | ConvertTo-Json -Depth 100
}
$indent = 0
$regexUnlessQuoted = '(?=([^"]*"[^"]*")*[^"]*$)'
$result = $Json -split '\r?\n' |
ForEach-Object {
# If the line contains a ] or } character,
# we need to decrement the indentation level unless it is inside quotes.
if ($_ -match "[}\]]$regexUnlessQuoted") {
$indent = [Math]::Max($indent - $Indentation, 0)
}
# Replace all colon-space combinations by ": " unless it is inside quotes.
$line = (' ' * $indent) + ($_.TrimStart() -replace ":\s+$regexUnlessQuoted", ': ')
# If the line contains a [ or { character,
# we need to increment the indentation level unless it is inside quotes.
if ($_ -match "[\{\[]$regexUnlessQuoted") {
$indent += $Indentation
}
$line
}
if ($AsArray) { return $result }
return $result -Join [Environment]::NewLine
}
function Add-Feature
{
$message = "Connecting to Power Platform"
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 0.10
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
$quit = Read-Host -Prompt "Press Enter to Connect to your CDS / D365 Tenant or [Q]uit"
if ($quit -eq "Q")
{
exit
}
if (!$Credentials)
{
Do {
$Credentials = Get-Credential
} Until (($Credentials.GetNetworkCredential().UserName -ne "") -and ($Credentials.GetNetworkCredential().Password -ne ""))
}
if (!$username)
{
$username = $Credentials.GetNetworkCredential().UserName
$password = $Credentials.GetNetworkCredential().Password
}
Install-XrmModule
$message = "Connecting to Development Environment"
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 0.20
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
Write-Host ""
Write-Host "---- Please Select your Development Environment ------"
Do {
$conn = Connect-CrmOnlineDiscovery -Credential $Credentials
If (!$conn.IsReady)
{
Do {
$Credentials = Get-Credential
} Until (($Credentials.GetNetworkCredential().UserName -ne "") -and ($Credentials.GetNetworkCredential().Password -ne ""))
if (!$username)
{
$username = $Credentials.GetNetworkCredential().UserName
$password = $Credentials.GetNetworkCredential().Password
}
}
} Until ($conn.IsReady)
$CreateOrSelect = Read-Host -Prompt "Development Environment : Would you like to [C]reate a New Solution or [S]elect an Existing One (Default [S])"
if ($CreateOrSelect -eq "C"){
$message = "Creating Solution and Publisher"
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 0.78
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
$CreateOrSelectPub = Read-Host -Prompt "Development Environment : Would you like to [C]reate a New Publisher or [S]elect an Existing One (Default [S])"
if ($CreateOrSelectPub -eq "C"){
$PublisherName = Read-Host -Prompt "Enter a Name for your Solution Publisher"
$PublisherPrefix = Read-Host -Prompt "Enter a Publisher Prefix"
$PublisherId = New-CrmRecord -EntityLogicalName publisher -Fields @{"uniquename"=$PublisherName.Replace(' ','');"friendlyname"=$PublisherName;"customizationprefix"=$PublisherPrefix.Replace(' ','').ToLower()}
$PubLookup = New-CrmEntityReference -EntityLogicalName publisher -Id $PublisherId.Guid
}
else
{
$publisherFetch = @"
<fetch>
<entity name='publisher' >
<filter type='and' >
<condition attribute='isreadonly' operator='eq' value='false' />
</filter>
</entity>
</fetch>
"@
$publishers = (Get-CrmRecordsByFetch -conn $conn -Fetch $publisherFetch).CrmRecords
$choiceIndex = 0
$options = $publishers | ForEach-Object { write-host "[$($choiceIndex)] $($_.friendlyname)"; $choiceIndex++; }
$success = $false
do {
$choice = read-host "Enter your selection"
if (!$choice) {
Write-Host "Invalid selection (null)"
}
else {
$choice = $choice -as [int];
if ($choice -eq $null) {
Write-Host "Invalid selection (not number)"
}
elseif ($choice -le -1) {
Write-Host "Invalid selection (negative)"
}
else {
$chosenPublisher = $publishers[$choice].uniquename
if ($null -ne $chosenPublisher) {
$PublisherPrefix = $publishers[$choice].customizationprefix
$PubLookup = New-CrmEntityReference -EntityLogicalName publisher -Id $publishers[$choice].publisherid
$success = $true
}
else {
Write-Host "Invalid selection (index out of range)"
}
}
}
} while (!$success)
}
$SolutionName = Read-Host -Prompt "Enter a Name for your Unmanaged Development Solution"
$SolutionId = New-CrmRecord -EntityLogicalName solution -Fields @{"uniquename"=$SolutionName.Replace(' ','');"friendlyname"=$SolutionName;"version"="1.0.0.0";"publisherid"=$PubLookup}
$chosenSolution = $SolutionName.Replace(' ','')
}
else{
$solutionFetch = @"
<fetch>
<entity name='solution' >
<filter type='and' >
<condition attribute='ismanaged' operator='eq' value='0' />
<condition attribute='isvisible' operator='eq' value='1' />
</filter>
</entity>
</fetch>
"@
$solutions = (Get-CrmRecordsByFetch -conn $conn -Fetch $solutionFetch).CrmRecords
$choiceIndex = 0
$options = $solutions | ForEach-Object { write-host "[$($choiceIndex)] $($_.uniquename)"; $choiceIndex++; }
$success = $false
do {
$choice = read-host "Enter your selection"
if (!$choice) {
Write-Host "Invalid selection (null)"
}
else {
$choice = $choice -as [int];
if ($choice -eq $null) {
Write-Host "Invalid selection (not number)"
}
elseif ($choice -le -1) {
Write-Host "Invalid selection (negative)"
}
else {
$chosenSolution = $solutions[$choice].uniquename
if ($null -ne $chosenSolution) {
$PublisherPrefix = (Get-CrmRecord -conn $conn -EntityLogicalName publisher -Id $solutions[$choice].publisherid_Property.Value.Id -Fields customizationprefix).customizationprefix
$success = $true
}
else {
Write-Host "Invalid selection (index out of range)"
}
}
}
} while (!$success)
}
#update values in Solution files
$TextInfo = (Get-Culture).TextInfo
$message = "Copying Solution Template to New $chosenSolution Project"
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 0.30
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
Remove-Item -Path ".\SolutionTemplate\node_modules",".\SolutionTemplate\.awcache",".\SolutionTemplate\bin",".\SolutionTemplate\dist",".\SolutionTemplate\obj" -Recurse -Force -ErrorAction SilentlyContinue
Copy-Item -Path .\SolutionTemplate\. -Destination $chosenSolution -Recurse
$message = "Setting Configurations in Source Code"
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 0.40
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
Write-Host "Updating config.json ..."
(Get-Content -Path .\$chosenSolution\Scripts\config.json) -replace "https://AddServer.crm6.dynamics.com",$conn.ConnectedOrgPublishedEndpoints["WebApplication"] | Set-Content -Path .\$chosenSolution\Scripts\config.json
(Get-Content -Path .\$chosenSolution\Scripts\config.json) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\Scripts\config.json
(Get-Content -Path .\$chosenSolution\Scripts\_GenerateTypes.ps1) -replace "ProjName",$chosenSolution | Set-Content -Path .\$chosenSolution\Scripts\_GenerateTypes.ps1
(Get-Content -Path .\$chosenSolution\package.json) -replace "solutiontemplate",$chosenSolution | Set-Content -Path .\$chosenSolution\package.json
Write-Host "Updating spkl.json ..."
(Get-Content -Path .\$chosenSolution\spkl\spkl.json) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\spkl\spkl.json
(Get-Content -Path .\$chosenSolution\spkl\spkl.json) -replace "prefix",$PublisherPrefix.Replace(' ','').ToLower() | Set-Content -Path .\$chosenSolution\spkl\spkl.json
Write-Host "Updating ImportConfig.xml ..."
Move-Item .\$chosenSolution\Deployment\FeatureTemplate .\$chosenSolution\Deployment\$chosenSolution
Move-Item .\$chosenSolution\Deployment\FeatureTemplatePackage.cs .\$chosenSolution\Deployment\$($chosenSolution)Package.cs
(Get-Content -Path .\$chosenSolution\Deployment\$chosenSolution\ImportConfig.xml) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\Deployment\$chosenSolution\ImportConfig.xml
(Get-Content -Path .\$chosenSolution\Deployment\$($chosenSolution)Package.cs) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\Deployment\$($chosenSolution)Package.cs
(Get-Content -Path .\$chosenSolution\Compile.bat) -replace "FeatureTemplate",$chosenSolution | Set-Content -Path .\$chosenSolution\Compile.bat
(Get-Content -Path .\$chosenSolution\webpack.config.js) -replace "AddName",$chosenSolution.ToLower() | Set-Content -Path .\$chosenSolution\webpack.config.js -ErrorAction Ignore
Write-Host "Updating XrmContext.exe.config ..."
(Get-Content -Path .\$chosenSolution\XrmContext\XrmContext.exe.config) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\XrmContext\XrmContext.exe.config
Write-Host "Updating XrmDefinitelyTyped.exe.config ..."
(Get-Content -Path .\$chosenSolution\XrmDefinitelyTyped\XrmDefinitelyTyped.exe.config) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\XrmDefinitelyTyped\XrmDefinitelyTyped.exe.config
Write-Host "Rename SolutionTemplate.csproj to $chosenSolution.csproj"
Rename-Item -Path .\$chosenSolution\SolutionTemplate.csproj -NewName "$chosenSolution.csproj"
Write-Host "Rename SolutionTemplate.snk to $chosenSolution.snk"
Rename-Item -Path .\$chosenSolution\SolutionTemplate.snk -NewName "$chosenSolution.snk"
Write-Host "Updating $chosenSolution.csproj ..."
(Get-Content -Path .\$chosenSolution\$chosenSolution.csproj) -replace "FeatureTemplate",$chosenSolution | Set-Content -Path .\$chosenSolution\$chosenSolution.csproj
(Get-Content -Path .\$chosenSolution\$chosenSolution.csproj) -replace "SolutionTemplate",$chosenSolution | Set-Content -Path .\$chosenSolution\$chosenSolution.csproj
Write-Host "Update Sample Plugin NameSpace"
(Get-Content -Path .\$chosenSolution\Plugins\Users\SamplePlugin.cs) -replace "AddName",$chosenSolution | Set-Content -Path .\$chosenSolution\\Plugins\Users\SamplePlugin.cs -ErrorAction Ignore
(Get-Content -Path .\$chosenSolution\map.xml) -replace "PowerPlatformDevOpsPlugins",($chosenSolution) | Set-Content -Path .\$chosenSolution\map.xml
Write-Host "Adding Solution to packageDeploy.json"
$packagesToDeploy = Get-Content .\deployPackages.json | ConvertFrom-Json
$deployTo = @([ordered]@{EnvironmentName="Deployment Staging";DeploymentType="Managed";DeployData="true";PreAction="false";PostAction="false"})
if ($packagesToDeploy.Count -gt 0) {
$packagesToDeploy += [ordered]@{DestinationFolder=$chosenSolution;PackageFolder=$chosenSolution;PackageName="$($chosenSolution)Package.dll";SolutionName=$chosenSolution;DeploymentSteps="";DeployTo=$deployTo}
ConvertTo-Json -Depth 3 $packagesToDeploy | Format-Json | Out-File .\deployPackages.json
}
else{
ConvertTo-Json -Depth 3 @(@{DestinationFolder=$chosenSolution;PackageFolder=$chosenSolution;PackageName="$($chosenSolution)Package.dll";SolutionName=$chosenSolution;DeploymentSteps="";DeployTo=$deployTo}) | Format-Json | Out-File .\deployPackages.json
}
Set-Location -Path .\$chosenSolution
# Write-Host "Installing Node module dependencies ..."
# npm install
Write-Host "Adding $chosenSolution Project to Solution"
Set-Location .\..
$sln = Get-ChildItem *.sln
dotnet sln $sln.Name add $chosenSolution\$chosenSolution.csproj
#commit repo and update VariableGroup in DevOps
Set-Location -Path .\$chosenSolution\Scripts
Write-Host "Exporting Solution and Generating Types"
Start-Process powershell -ArgumentList ".\SolutionExport.ps1" -Wait
Set-Location -Path .\..
git add -A
git commit -m "Added Solution $chosenSolution"
$message = "Complete ... Enjoy !!!"
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 1
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
}
$message = @"
____ ____ _ _ __ ____ ___
| _ \ _____ _____ _ __ | _ \| | __ _| |_ / _| ___ _ __ _ __ ___ | _ \ _____ __/ _ \ _ __ ___
| |_) / _ \ \ /\ / / _ \ '__| | |_) | |/ _` | __| |_ / _ \| '__| '_ ` _ \ | | | |/ _ \ \ / / | | | '_ \/ __|
| __/ (_) \ V V / __/ | | __/| | (_| | |_| _| (_) | | | | | | | | | |_| | __/\ V /| |_| | |_) \__ \
|_| \___/ \_/\_/ \___|_| |_| |_|\__,_|\__|_| \___/|_| |_| |_| |_| |____/ \___| \_/ \___/| .__/|___/
|_|
Welcome to the Power Platform DevOps Solution Add script. This script will perform the following steps automatically :
- Install Pre-requisites (Dotnet Core CLI)
- Connect to CDS to Get Solution
- Add Development Solution Project to your Visual Studio Solution
"@
Write-Host $message
$quit = Read-Host -Prompt "Press Enter to Continue or [Q]uit"
if ($quit -eq "Q")
{
exit
}
Write-Host("Performing Checks....")
Install-ToastModule
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
if (!$env:ChocolateyInstall) {
Write-Warning "The ChocolateyInstall environment variable was not found. `n Chocolatey is not detected as installed. Installing..."
$message = "Installing Chocolatey ...."
Write-Host $message
$ProgressBar = New-BTProgressBar -Status $message -Value 0.12
New-BurntToastNotification -Text $Text -ProgressBar $ProgressBar -Silent -UniqueIdentifier $UniqueId
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
}
if (!$SkipPreReqs) {
choco upgrade chocolatey -y
choco upgrade dotnetcore -y
}
Add-Feature
$ProgressPreference = 'Continue'