WordPressPCL
This is a portable library for consuimg the WordPress REST-API in (almost) any C# application
File Explorer
Download Latest Version (.zip)- codeql-analysis.yml
- documentation.yml
- integration-tests.yml
- publish-nuget.yml
- FUNDING.yml
- release.yml
- .env
- .htaccess
- docker-compose.yml
- dockerfile
- init-wordpress.sh
- install.md
- customHttpClient.md
- customJsonSerializationSettings.md
- customRequest.md
- httpResponsePreProcessing.md
- categories.md
- comments.md
- customPostType.md
- media.md
- pages.md
- posts.md
- poststatuses.md
- posttypes.md
- settings.md
- tags.md
- taxonomies.md
- users.md
- index.md
- troubleshooting.md
- customHttpClient.md
- customJsonSerializationSettings.md
- customRequest.md
- httpResponsePreProcessing.md
- categories.md
- comments.md
- customPostType.md
- media.md
- pages.md
- posts.md
- poststatuses.md
- posttypes.md
- settings.md
- tags.md
- taxonomies.md
- users.md
- breaking-changes.md
- index.md
- troubleshooting.md
- customHttpClient.md
- customJsonSerializationSettings.md
- customRequest.md
- httpResponsePreProcessing.md
- categories.md
- comments.md
- customPostType.md
- media.md
- pages.md
- posts.md
- poststatuses.md
- posttypes.md
- settings.md
- tags.md
- taxonomies.md
- users.md
- breaking-changes.md
- endpoint-coverage.md
- index.md
- troubleshooting.md
- index.md
- Auth.cs
- Categories.cs
- Comments.cs
- CRUDOperation.cs
- CustomRequest.cs
- Media.cs
- Pages.cs
- Plugins.cs
- PostRevisions.cs
- Posts.cs
- PostStatuses.cs
- PostTypes.cs
- Settings.cs
- Tags.cs
- Taxonomies.cs
- Themes.cs
- Users.cs
- WordPressServiceCollectionExtensions.cs
- icon.png
- ICountOperation.cs
- ICreateOperation.cs
- IDeleteOperation.cs
- IQueryOperation.cs
- IReadOperation.cs
- IUpdateOperation.cs
- WPException.cs
- WPUnexpectedException.cs
- ApplicationPassword.cs
- AuthMethod.cs
- AvatarURL.cs
- BadRequest.cs
- Base.cs
- Category.cs
- Comment.cs
- CommentThreaded.cs
- Embedded.cs
- Enums.cs
- ImageMeta.cs
- JWTData.cs
- JWTPlugin.cs
- JWTResponse.cs
- JWTUser.cs
- Links.cs
- MediaDetails.cs
- MediaItem.cs
- MediaSize.cs
- Page.cs
- PagedResult.cs
- Plugin.cs
- Post.cs
- PostRevision.cs
- PostStatus.cs
- PostType.cs
- Settings.cs
- Subclasses.cs
- Tag.cs
- Taxonomy.cs
- Term.cs
- Theme.cs
- User.cs
- CategoriesQueryBuilder.cs
- CommentsQueryBuilder.cs
- CustomCapabilitiesJsonConverter.cs
- ExcludeQueryTextAttribute.cs
- HttpHelper.cs
- JsonStringEnumMemberConverter.cs
- MediaQueryBuilder.cs
- MimeTypeHelper.cs
- PagesQueryBuilder.cs
- PluginsQueryBuilder.cs
- PostsQueryBuilder.cs
- QueryBuilder.cs
- QueryTextAttribute.cs
- TagsQueryBuilder.cs
- TaxonomiesQueryBuilder.cs
- ThemesQueryBuilder.cs
- ThreadedCommentsHelper.cs
- UrlHelper.cs
- UsersQueryBuilder.cs
- WordPressClient.cs
- WordPressPCL.csproj
- WordPressPCL.xml
- ApiCredentials.cs
- ClientHelper.cs
- HttpHelper_Tests.cs
- Basic_Tests.cs
- WordPressClient_DI_Tests.cs
- WordPressClient_Logger_Tests.cs
- WordPressPCL.Tests.Hosted.csproj
- cat.jpg
- img_exif_error.jpg
- ApiCredentials.cs
- CapabilitiesJsonConverter_Tests.cs
- ClientHelper.cs
- HttpHelper_Tests.cs
- ThreadedCommentsHelper_Tests.cs
- UrlHelper_Tests.cs
- ApplicationPasswords_Tests.cs
- Basic_Tests.cs
- CancellationToken_Tests.cs
- Categories_Tests.cs
- Comments_Tests.cs
- CommentsThreaded_Tests.cs
- CustomRequests_Tests.cs
- Exception_Unexpected_Tests.cs
- ExceptionTests.cs
- HttpClient_Tests.cs
- jwt.runsettings
- jwtauth.runsettings
- ListPosts_QueryBuilder_Tests.cs
- Media_Tests.cs
- MimeTypeHelper_Tests.cs
- NullHandling_Tests.cs
- Pages_Tests.cs
- Plugins_Tests.cs
- PostRevisions_Tests.cs
- Posts_Tests.cs
- PostStatuses_Tests.cs
- PostTypes_Tests.cs
- QueryBuilder_Tests.cs
- Settings_Tests.cs
- Tag_Tests.cs
- Taxonomies_Tests.cs
- Themes_Tests.cs
- User_Tests.cs
- WordPressPCL.Tests.Selfhosted.csproj
- .editorconfig
- .gitattributes
- .gitignore
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- Directory.Build.props
- Directory.Packages.props
- LICENSE
- mkdocs.yml
- README.md
- WordPressPCL.sln
# Installation Guide
1. Get the code
git clone https://github.com/wp-net/WordPressPCL
Downloads the entire project code from GitHub to your computer.
cd WordPressPCL
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f dev/docker-compose.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. .NET
MediumPrerequisites
dotnet restore
Downloads the packages the project depends on.
dotnet run
Builds the project and runs it immediately.
After dotnet run, check the message or address shown in the terminal.
// repository documentation
Was this content helpful?
(0 ratings)
