Skip to content

Commit d7ea01c

Browse files
committed
Merge branch 'feature/ps7.4' into develop
2 parents 754b89d + 871e4bb commit d7ea01c

29 files changed

Lines changed: 446 additions & 35 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Updated System.Management.Automation and PowerShellVersion to 7.4.
13+
- Updated TargetFramework to net8.0.
14+
1015
## [1.7.0] - 2024-08-13
1116

1217
### Changed

docs/Connect-DacService.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ Connects a database instance using DacServices.
1414

1515
### ConnectionString (Default)
1616
```
17-
Connect-DacService [-ConnectionString] <String> [-AccessToken <String>] [<CommonParameters>]
17+
Connect-DacService [-ConnectionString] <String> [-AccessToken <String>] [-ProgressAction <ActionPreference>]
18+
[<CommonParameters>]
1819
```
1920

2021
### Properties
2122
```
22-
Connect-DacService [-DataSource] <String> [-AccessToken <String>] [<CommonParameters>]
23+
Connect-DacService [-DataSource] <String> [-AccessToken <String>] [-ProgressAction <ActionPreference>]
24+
[<CommonParameters>]
2325
```
2426

2527
## DESCRIPTION
@@ -83,6 +85,21 @@ Accept pipeline input: True (ByPropertyName)
8385
Accept wildcard characters: False
8486
```
8587
88+
### -ProgressAction
89+
{{ Fill ProgressAction Description }}
90+
91+
```yaml
92+
Type: ActionPreference
93+
Parameter Sets: (All)
94+
Aliases: proga
95+
96+
Required: False
97+
Position: Named
98+
Default value: None
99+
Accept pipeline input: False
100+
Accept wildcard characters: False
101+
```
102+
86103
### CommonParameters
87104
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
88105

docs/Disconnect-DacService.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Closes the connection to a database server.
1313
## SYNTAX
1414

1515
```
16-
Disconnect-DacService [-Service <DacServices>] [<CommonParameters>]
16+
Disconnect-DacService [-Service <DacServices>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
@@ -47,6 +47,21 @@ Accept pipeline input: True (ByValue)
4747
Accept wildcard characters: False
4848
```
4949
50+
### -ProgressAction
51+
{{ Fill ProgressAction Description }}
52+
53+
```yaml
54+
Type: ActionPreference
55+
Parameter Sets: (All)
56+
Aliases: proga
57+
58+
Required: False
59+
Position: Named
60+
Default value: None
61+
Accept pipeline input: False
62+
Accept wildcard characters: False
63+
```
64+
5065
### CommonParameters
5166
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
5267

docs/Export-DacModel.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Exports a model as DacPac.
1313
## SYNTAX
1414

1515
```
16-
Export-DacModel -Model <TSqlModel> -Path <FileInfo> [<CommonParameters>]
16+
Export-DacModel -Model <TSqlModel> -Path <FileInfo> [-ProgressAction <ActionPreference>] [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
@@ -60,6 +60,21 @@ Accept pipeline input: False
6060
Accept wildcard characters: False
6161
```
6262
63+
### -ProgressAction
64+
{{ Fill ProgressAction Description }}
65+
66+
```yaml
67+
Type: ActionPreference
68+
Parameter Sets: (All)
69+
Aliases: proga
70+
71+
Required: False
72+
Position: Named
73+
Default value: None
74+
Accept pipeline input: False
75+
Accept wildcard characters: False
76+
```
77+
6378
### CommonParameters
6479
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
6580

docs/Get-DacColumn.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Returns columns of a table or view.
1313
## SYNTAX
1414

1515
```
16-
Get-DacColumn -Object <TSqlObject> [[-Name] <String>] [<CommonParameters>]
16+
Get-DacColumn [-Object] <TSqlObject> [[-Name] <String>] [-ProgressAction <ActionPreference>]
17+
[<CommonParameters>]
1718
```
1819

1920
## DESCRIPTION
@@ -66,12 +67,27 @@ Parameter Sets: (All)
6667
Aliases: Table
6768

6869
Required: True
69-
Position: Named
70+
Position: 0
7071
Default value: None
7172
Accept pipeline input: True (ByPropertyName, ByValue)
7273
Accept wildcard characters: False
7374
```
7475
76+
### -ProgressAction
77+
{{ Fill ProgressAction Description }}
78+
79+
```yaml
80+
Type: ActionPreference
81+
Parameter Sets: (All)
82+
Aliases: proga
83+
84+
Required: False
85+
Position: Named
86+
Default value: None
87+
Accept pipeline input: False
88+
Accept wildcard characters: False
89+
```
90+
7591
### CommonParameters
7692
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
7793

docs/Get-DacDataType.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Returns the data type of a column.
1313
## SYNTAX
1414

1515
```
16-
Get-DacDataType [-Column] <TSqlObject> [<CommonParameters>]
16+
Get-DacDataType [-Column] <TSqlObject> [-ProgressAction <ActionPreference>] [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
@@ -54,6 +54,21 @@ Accept pipeline input: True (ByPropertyName, ByValue)
5454
Accept wildcard characters: False
5555
```
5656
57+
### -ProgressAction
58+
{{ Fill ProgressAction Description }}
59+
60+
```yaml
61+
Type: ActionPreference
62+
Parameter Sets: (All)
63+
Aliases: proga
64+
65+
Required: False
66+
Position: Named
67+
Default value: None
68+
Accept pipeline input: False
69+
Accept wildcard characters: False
70+
```
71+
5772
### CommonParameters
5873
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
5974

docs/Get-DacForeignKey.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Returns the foreign keys of a model.
1313
## SYNTAX
1414

1515
```
16-
Get-DacForeignKey [-Model] <TSqlModel> [[-Name] <String>] [<CommonParameters>]
16+
Get-DacForeignKey [-Model] <TSqlModel> [[-Name] <String>] [-ProgressAction <ActionPreference>]
17+
[<CommonParameters>]
1718
```
1819

1920
## DESCRIPTION
@@ -60,6 +61,21 @@ Accept pipeline input: False
6061
Accept wildcard characters: False
6162
```
6263
64+
### -ProgressAction
65+
{{ Fill ProgressAction Description }}
66+
67+
```yaml
68+
Type: ActionPreference
69+
Parameter Sets: (All)
70+
Aliases: proga
71+
72+
Required: False
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
6379
### CommonParameters
6480
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
6581

docs/Get-DacObject.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Gets the objects of a model.
1313
## SYNTAX
1414

1515
```
16-
Get-DacObject [-Model] <TSqlModel> [[-Name] <String>] [-Scope <DacQueryScopes>] [<CommonParameters>]
16+
Get-DacObject [-Model] <TSqlModel> [[-Name] <String>] [-Scope <DacQueryScopes>]
17+
[-ProgressAction <ActionPreference>] [<CommonParameters>]
1718
```
1819

1920
## DESCRIPTION
@@ -76,6 +77,21 @@ Accept pipeline input: False
7677
Accept wildcard characters: False
7778
```
7879
80+
### -ProgressAction
81+
{{ Fill ProgressAction Description }}
82+
83+
```yaml
84+
Type: ActionPreference
85+
Parameter Sets: (All)
86+
Aliases: proga
87+
88+
Required: False
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
7995
### CommonParameters
8096
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
8197

docs/Get-DacPartitionFunction.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Gets the partition functions of a model.
1313
## SYNTAX
1414

1515
```
16-
Get-DacPartitionFunction [-Model] <TSqlModel> [[-Name] <String>] [<CommonParameters>]
16+
Get-DacPartitionFunction [-Model] <TSqlModel> [[-Name] <String>] [-ProgressAction <ActionPreference>]
17+
[<CommonParameters>]
1718
```
1819

1920
## DESCRIPTION
@@ -60,6 +61,21 @@ Accept pipeline input: False
6061
Accept wildcard characters: False
6162
```
6263
64+
### -ProgressAction
65+
{{ Fill ProgressAction Description }}
66+
67+
```yaml
68+
Type: ActionPreference
69+
Parameter Sets: (All)
70+
Aliases: proga
71+
72+
Required: False
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
6379
### CommonParameters
6480
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
6581

docs/Get-DacPartitionScheme.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Gets the partition schemes of a model.
1313
## SYNTAX
1414

1515
```
16-
Get-DacPartitionScheme [-Model] <TSqlModel> [[-Name] <String>] [<CommonParameters>]
16+
Get-DacPartitionScheme [-Model] <TSqlModel> [[-Name] <String>] [-ProgressAction <ActionPreference>]
17+
[<CommonParameters>]
1718
```
1819

1920
## DESCRIPTION
@@ -60,6 +61,21 @@ Accept pipeline input: False
6061
Accept wildcard characters: False
6162
```
6263
64+
### -ProgressAction
65+
{{ Fill ProgressAction Description }}
66+
67+
```yaml
68+
Type: ActionPreference
69+
Parameter Sets: (All)
70+
Aliases: proga
71+
72+
Required: False
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
6379
### CommonParameters
6480
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
6581

0 commit comments

Comments
 (0)