diff --git a/docs/Clear-D365BacpacObject.md b/docs/Clear-D365BacpacObject.md index ad87a07b..9b745574 100644 --- a/docs/Clear-D365BacpacObject.md +++ b/docs/Clear-D365BacpacObject.md @@ -117,6 +117,9 @@ As we are manipulating the bacpac file, we can only handle 1 ObjectType per run If you want to remove SqlView and SqlIndex, you will have to run the cmdlet 1 time for SqlViews and 1 time for SqlIndex +Supported types are: +"SqlView", "SqlTable", "SqlIndex", "SqlCheckConstraint" + ```yaml Type: String Parameter Sets: (All) diff --git a/docs/Invoke-D365InstallSqlPackage.md b/docs/Invoke-D365InstallSqlPackage.md index 6fd682c0..e034f132 100644 --- a/docs/Invoke-D365InstallSqlPackage.md +++ b/docs/Invoke-D365InstallSqlPackage.md @@ -19,7 +19,9 @@ Invoke-D365InstallSqlPackage [[-Path] ] [-SkipExtractFromPage] [[-Url] < ## DESCRIPTION Download and extract the DotNet/.NET core x64 edition of the SqlPackage.exe to your machine -It parses the raw html page and tries to extract the latest download link +It parses the raw html page and tries to extract the latest download link. +As of 12th April 2022, no .NET Core link is available on the download page. +The cmdlet will always use the Url parameter. ## EXAMPLES @@ -99,7 +101,11 @@ Accept wildcard characters: False ### -Url Url/Uri to where the latest SqlPackage download is located -The default value is for v18.4.1 (15.0.4630.1) as of writing +The default value is for v19.1 (16.0.6161.0) as of writing. +This is the last version of SqlPackage based on .NET Core. +According to the Microsoft documentation, a .NET Core version of SqlPackage should be used. +https://learn.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/database/import-database +Further discussion can be found here: https://github.com/d365collaborative/d365fo.tools/issues/708 ```yaml Type: String @@ -108,7 +114,7 @@ Aliases: Required: False Position: 2 -Default value: Https://go.microsoft.com/fwlink/?linkid=2113704 +Default value: Https://go.microsoft.com/fwlink/?linkid=2196334 Accept pipeline input: False Accept wildcard characters: False ```