3 min read
Quickstart
Create a new IceRPC application from scratch with a few simple commands.
This quickstart shows how to build and run a complete client-server application with IceRPC in just a few minutes.
Prerequisites: you just need to have the .NET 8 or 9 SDK installed on your computer.
The networked application we are building together consists of:
- a server that hosts a single service (a simple greeter service)
- a client that establishes a connection to the server and calls
greet
on this greeter service
The client and server are console applications that use plain .NET (no ASP.NET, no Dependency Injection).
Let's jump right in:
Install the dotnet-new templates for IceRPC
Create the server
Create the client
Run the application
Next steps
Congratulations! You have successfully created your first IceRPC application.
You can learn more about what each file produced by the templates does in the Tutorial: