You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move credentials and options to json config file so that driver/example program can be
published to public repositories i.e., github
In doing so,
- provide a list of patterns in config so that internal / confidential strings
can be put there
- add namespace 'WPExportApp' to share it with JsonConfig class
- add unicode examples: weird char replacements
And,
- comment 'CustomMetadata' out, for actual applications
In addition,
- update framework to 7.0
- add Nullable Annotations for System.Linq
(ref, https://stackoverflow.com/questions/58670909/nullable-reference-type-information-not-exposed-from-firstordefault)
Nits
- update Copyright
- update dep nuget packages
Build status, nullable warnings,
$ cd ..\Goodbye.WordPress\
$ dotnet build
MSBuild version 17.4.0+18d5aef85 for .NET
Determining projects to restore...
All projects are up-to-date for restore.
PackageVersion: 0.0.0
Goodbye.WordPress -> D:\Code\ws\WPExport\Goodbye.WordPress\bin\Debug\net7.0\Goodbye.WordPress.dll
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.03
$ cd ..\Goodbye.WordPress.Example
$ dotnet build
MSBuild version 17.4.0+18d5aef85 for .NET
Determining projects to restore...
All projects are up-to-date for restore.
PackageVersion: 0.0.0
Goodbye.WordPress -> D:\Code\ws\WPExport\Goodbye.WordPress\bin\Debug\net7.0\Goodbye.WordPress.dll
PackageVersion: 0.0.0
Goobye.WordPress.Example -> D:\Code\ws\WPExport\Goodbye.WordPress.Example\bin\Debug\net7.0\Goobye.WordPress.Example.dll
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:02.02
// Initial PR Date: 11-21-2021
Copy file name to clipboardExpand all lines: README.md
+73-32Lines changed: 73 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,45 +87,86 @@ Note that with the exception of `ConnectionStringBuilder` and `WordPressExporter
87
87
Creating the exporter via API here is equivalent to the command line invocation above, with the exception of providing a custom exporter delegate that will perform additional processing steps.
0 commit comments