Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: update instructions and links #471

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,34 @@ The framework contains several libraries for single process usage and cross-proc
JetBrains Core library for graceful disposal, concurrency and reactive programming. For single-process usage.

* Kotlin
* Sources: https://github.com/JetBrains/rd/tree/master/rd-kt/rd-core
* Sources: https://github.com/JetBrains/rd/tree/HEAD/rd-kt/rd-core
* Artifacts: https://mvnrepository.com/artifact/com.jetbrains.rd/rd-core

* .NET
* Sources: https://github.com/JetBrains/rd/tree/master/rd-net/Lifetimes
* Sources: https://github.com/JetBrains/rd/tree/HEAD/rd-net/Lifetimes
* Artifacts: https://www.nuget.org/packages/JetBrains.Lifetimes

### RdFramework
JetBrains Networking library for reactive distributed communication

* Kotlin
* Sources: https://github.com/JetBrains/rd/tree/master/rd-kt/rd-framework
* Sources: https://github.com/JetBrains/rd/tree/HEAD/rd-kt/rd-framework
* Maven artifacts: https://mvnrepository.com/artifact/com.jetbrains.rd/rd-framework

* .NET
* Sources: https://github.com/JetBrains/rd/tree/master/rd-net/RdFramework
* Sources: https://github.com/JetBrains/rd/tree/HEAD/rd-net/RdFramework
* NuGet artifacts: https://www.nuget.org/packages/JetBrains.RdFramework

#### RdFramework.Reflection
Plugin for RdFramework used for defining models using regular C#

* .NET
* Sources: https://github.com/JetBrains/rd/tree/master/rd-net/RdFramework.Reflection
* Sources: https://github.com/JetBrains/rd/tree/HEAD/rd-net/RdFramework.Reflection
* NuGet artifacts: https://www.nuget.org/packages/JetBrains.RdFramework.Reflection

### RdGen
Rd Generator: generates stubs (Kotlin/C#/C++) classes by Kotlin DSL models
* Sources: https://github.com/JetBrains/rd/tree/master/rd-kt/rd-gen
* Sources: https://github.com/JetBrains/rd/tree/HEAD/rd-kt/rd-gen
* Gradle: https://mvnrepository.com/artifact/com.jetbrains.rd/rd-gen

# How to build
Expand All @@ -51,7 +51,7 @@ Or **C++** only, who knows. After that prepare the environment and build needed

### .NET

Open solution in JetBrains Rider: https://github.com/JetBrains/rd/tree/master/rd-net/Rd.sln
Open solution in JetBrains Rider: https://github.com/JetBrains/rd/tree/HEAD/rd-net/Rd.sln

#### Requirements

Expand All @@ -63,7 +63,7 @@ Open solution in JetBrains Rider: https://github.com/JetBrains/rd/tree/master/rd

### Kotlin

Open solution in IntellijIDEA: https://github.com/JetBrains/rd
Open the project in IntelliJ IDEA: https://github.com/JetBrains/rd

#### Requirements

Expand All @@ -72,11 +72,11 @@ Open solution in IntellijIDEA: https://github.com/JetBrains/rd

#### Console build instructions

* `gradle :build -x test`
* `./gradlew :build -x test`

### C++ (experimental)

Open solution in JetBrains CLion: https://github.com/JetBrains/rd/rd-cpp
Open the project in CLion: https://github.com/JetBrains/rd/tree/HEAD/rd-cpp

#### Requirements

Expand All @@ -97,7 +97,7 @@ or

## Build everything

* `gradle build`
* `./gradlew build`

### Build NuGet packages instructions

Expand Down
Loading