VOOZH about

URL: https://www.nuget.org/packages/CoreWCF.Primitives/

โ‡ฑ NuGet Gallery | CoreWCF.Primitives 1.9.1


๏ปฟ

๐Ÿ‘ Image
CoreWCF.Primitives 1.9.1

Prefix Reserved
dotnet add package CoreWCF.Primitives --version 1.9.1
 
 
NuGet\Install-Package CoreWCF.Primitives -Version 1.9.1
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CoreWCF.Primitives" Version="1.9.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CoreWCF.Primitives" Version="1.9.1" />
 
Directory.Packages.props
<PackageReference Include="CoreWCF.Primitives" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CoreWCF.Primitives --version 1.9.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CoreWCF.Primitives, 1.9.1"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CoreWCF.Primitives@1.9.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CoreWCF.Primitives&version=1.9.1
 
Install as a Cake Addin
#tool nuget:?package=CoreWCF.Primitives&version=1.9.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

What is CoreWCF?

CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.

Package Status

The latest released packages can be found at NuGet.org:

Package NuGet Stable Downloads
CoreWCF.ConfigurationManager ๐Ÿ‘ CoreWCF.ConfigurationManager
๐Ÿ‘ CoreWCF.ConfigurationManager
CoreWCF.Http ๐Ÿ‘ CoreWCF.Http
๐Ÿ‘ CoreWCF.Http
CoreWCF.Kafka ๐Ÿ‘ CoreWCF.Kafka
๐Ÿ‘ CoreWCF.Kafka
CoreWCF.Kafka.Client ๐Ÿ‘ CoreWCF.Kafka.Client
๐Ÿ‘ CoreWCF.Kafka.Client
CoreWCF.MSMQ ๐Ÿ‘ CoreWCF.MSMQ
๐Ÿ‘ CoreWCF.MSMQ
CoreWCF.NetNamedPipe ๐Ÿ‘ CoreWCF.NetNamedPipe
๐Ÿ‘ CoreWCF.NetNamedPipe
CoreWCF.NetTcp ๐Ÿ‘ CoreWCF.NetTcp
๐Ÿ‘ CoreWCF.NetTcp
CoreWCF.Primitives ๐Ÿ‘ CoreWCF.Primitives
๐Ÿ‘ CoreWCF.Primitives
CoreWCF.RabbitMQ ๐Ÿ‘ CoreWCF.RabbitMQ
๐Ÿ‘ CoreWCF.RabbitMQ
CoreWCF.RabbitMQ.Client ๐Ÿ‘ CoreWCF.RabbitMQ.Client
๐Ÿ‘ CoreWCF.RabbitMQ.Client
CoreWCF.Templates ๐Ÿ‘ CoreWCF.Templates
๐Ÿ‘ CoreWCF.Templates
CoreWCF.UnixDomainSocket ๐Ÿ‘ CoreWCF.UnixDomainSocket
๐Ÿ‘ CoreWCF.UnixDomainSocket
CoreWCF.WebHttp ๐Ÿ‘ CoreWCF.WebHttp
๐Ÿ‘ CoreWCF.WebHttp

Community Packages

The latest CoreWCF extension released packages from community can be found at NuGet.org:

Package NuGet Stable Downloads
AWS.CoreWCF.Extensions ๐Ÿ‘ AWS.CoreWCF.Extensions
๐Ÿ‘ AWS.CoreWCF.Extensions
AWS.WCF.Extensions ๐Ÿ‘ AWS.WCF.Extensions
๐Ÿ‘ AWS.WCF.Extensions

Code Quality

๐Ÿ‘ SonarCloud

Announcements

To keep up to date on what's going on with CoreWCF, you can subscribe to the announcements repo to be notified about major changes and other noteworthy announcements.

How do I get started?

  • Install the Nuget packages listed above, either via the Package Manager Console or the UI.
  • See for a step by step guide to creating a service and referencing it from a client project.
  • See for running unit and integration tests in your development environment.
  • The Samples repo has examples for multiple scenarios.
  • The Blog has details on the design philosophy and a deep dive into the features are included in each new release.

Use CoreWCF project templates (dotnet CLI or VisualStudio)

  • Install CoreWCF project templates, create a directory for your project and cd inside the directory and initialize your project
dotnet new install CoreWCF.Templates 
dotnet new corewcf --name MyService
  • CoreWCF Service project template creates a minimal ASP.NET Core web application thats exposes the well-known WCF default service using a BasicHttpBinding. It supports the following arguments:
    • --framework: net8.0 (default), net6.0, net48, net472 and net462 are valid values.
    • --use-program-main: whether to turn off ASP.NET Core minimal API hosting. This option only affects projects targeting .NET as .NET Framework requires a Startup and a Program class.
    • --no-https: whether to turn off HTTPS and use BasicHttpSecurityMode.None. Default is HTTPS enabled using BasicHttpSecurityMode.Transport.
    • --no-wsdl: whether to turn off WSDL metadata feature.
    • --use-operation-invoker-generator: whether to turn on OperationInvokerGenerator feature.

Development Builds

Pre-release packages built from main are published to the GitHub Packages NuGet feed of the CoreWCF organization. The feed URL is owner-scoped:

https://nuget.pkg.github.com/CoreWCF/index.json

GitHub Packages requires authentication even for public packages. Generate a personal access token (classic) with the read:packages scope, then add the feed:

dotnet nuget add source https://nuget.pkg.github.com/CoreWCF/index.json --name CoreWCF-Dev --username <your-github-username> --password <your-PAT> --store-password-in-clear-text

If you are using a nuget.config file with only the default nuget.org package source, after adding the CoreWCF dev feed it would look like this:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
 <packageSources>
 <clear />
 <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
 <add key="CoreWCF-Dev" value="https://nuget.pkg.github.com/CoreWCF/index.json" />
 </packageSources>
 <packageSourceCredentials>
 <CoreWCF-Dev>
 <add key="Username" value="<your-github-username>" />
 <add key="ClearTextPassword" value="<your-PAT>" />
 </CoreWCF-Dev>
 </packageSourceCredentials>
</configuration>

How do I contribute?

Please see the file for details.

License, etc.

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

CoreWCF is Copyright ยฉ 2019 .NET Foundation and other contributors under the .

.NET Foundation

This project is supported by the .NET Foundation.

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (62)

Showing the top 5 NuGet packages that depend on CoreWCF.Primitives:

Package Downloads
CoreWCF.Http

CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.

CoreWCF.NetTcp

CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.

CoreWCF.NetFramingBase

CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.

CoreWCF.ConfigurationManager

CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.

CoreWCF.UnixDomainSocket

CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.

GitHub repositories (7)

Showing the top 7 popular GitHub repositories that depend on CoreWCF.Primitives:

Repository Stars
dodyg/practical-aspnetcore
Practical samples of ASP.NET Core 11, 10, 9, 8.0, 7.0, 6.0, 5.0, 3.1, 2.2, and 2.1,projects you can use. Readme contains explanations on all projects.
thepirat000/Audit.NET
An extensible framework to audit executing operations in .NET
dotnet/wcf
This repo contains the client-oriented WCF libraries that enable applications built on .NET Core to communicate with WCF services.
MarimerLLC/csla
A home for your business logic in any .NET application.
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
axzxs2001/Asp.NetCoreExperiment
ๅŽŸๆฅๆ‰€ๆœ‰้กน็›ฎ้ƒฝ็งปๅŠจๅˆฐ**OleVersion**็›ฎๅฝ•ไธ‹่ฟ›่กŒไฟ็•™ใ€‚ๆ–ฐ็š„ๆกˆไพ‹่ฃ…ไปฅ.net 5.0ไธบไธป๏ผŒไธ€้ƒจๅˆ†ๅฏนไปฅๅ‰ๆกˆไพ‹่ฟ›่กŒๅ‡็บง๏ผŒไธ€้ƒจๅˆ†ๅฐ†ไปฅๅ‰็š„ๅทฅไฝœ็ป้ชŒๆ€ป็ป“ๅ‡บๆฅ๏ผŒไปฅไพ›ๅคงๅฎถๅ‚่€ƒ๏ผ
FuseCP/FuseCP
Multi Server Control Panel for Windows based on C#