Skip to content

Commit 301c418

Browse files
committed
chore: rename project to IronRust
1 parent 7d9da56 commit 301c418

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: IronRust CI
22

33
on:
44
push:
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:
17-
path: rustscript-clr-vm
17+
path: IronRust
1818
- uses: actions/checkout@v4
1919
with:
2020
repository: rustscript-lang/rustscript
@@ -30,16 +30,16 @@ jobs:
3030
- name: Setup Rust
3131
uses: dtolnay/rust-toolchain@stable
3232
- name: Build native compiler
33-
working-directory: rustscript-clr-vm
33+
working-directory: IronRust
3434
run: cargo build --locked --release --manifest-path native/pd-vm-compiler/Cargo.toml
3535
- name: Restore
36-
working-directory: rustscript-clr-vm
37-
run: dotnet restore pd-vm-clr.sln
36+
working-directory: IronRust
37+
run: dotnet restore IronRust.sln
3838
- name: Build
39-
working-directory: rustscript-clr-vm
40-
run: dotnet build pd-vm-clr.sln --no-restore --configuration Release
39+
working-directory: IronRust
40+
run: dotnet build IronRust.sln --no-restore --configuration Release
4141
- name: Tests
42-
working-directory: rustscript-clr-vm
42+
working-directory: IronRust
4343
env:
44-
PDVM_NATIVE_COMPILER: ${{ github.workspace }}/rustscript-clr-vm/native/pd-vm-compiler/target/release/libpd_vm_compiler.so
45-
run: dotnet test pd-vm-clr.sln --no-build --configuration Release --verbosity normal
44+
PDVM_NATIVE_COMPILER: ${{ github.workspace }}/IronRust/native/pd-vm-compiler/target/release/libpd_vm_compiler.so
45+
run: dotnet test IronRust.sln --no-build --configuration Release --verbosity normal
File renamed without changes.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# RustScript CLR VM
1+
# IronRust
22

3-
CLR runtime and compiler support for PD VM bytecode. The repository includes the CLR VM runtime, bytecode-to-CLR compiler, runner CLI, tests, examples, and a minimal Edge HTTP runtime.
3+
IronRust is the RustScript runtime and compiler for Microsoft CLR. The repository includes the CLR runtime, bytecode-to-CLR compiler, runner CLI, tests, examples, and a minimal Edge HTTP runtime.
44

55
## Related projects
66

77
- RustScript core VM and standard library: https://github.com/rustscript-lang/rustscript
8-
- CLR VM: https://github.com/rustscript-lang/rustscript-clr-vm
8+
- IronRust: https://github.com/rustscript-lang/IronRust
99
- Edge runtime and ABI: https://github.com/rustscript-lang/pd-edge
1010
- Controller: https://github.com/rustscript-lang/pd-controller
1111

@@ -37,7 +37,7 @@ CLR runtime and compiler support for PD VM bytecode. The repository includes the
3737
From the repo root:
3838

3939
```powershell
40-
dotnet build pd-vm-clr.sln
40+
dotnet build IronRust.sln
4141
```
4242

4343
Release build for the proxy runtime:
@@ -51,7 +51,7 @@ dotnet build PdEdge.Http\PdEdge.Http.csproj -c Release
5151
Build first, then run tests without rebuilding:
5252

5353
```powershell
54-
dotnet test pd-vm-clr.sln --no-build
54+
dotnet test IronRust.sln --no-build
5555
```
5656

5757
Or run just the HTTP runtime tests:

examples/dotnet-minesweeper.rss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ while true {
607607
Visuals::ShowMessage(form, "Open every square that does not contain a mine.\nRight-click to place a flag or question mark.\nDouble-click a revealed number to open its remaining neighbors.", "Minesweeper Help");
608608
}
609609
if action == "about" {
610-
Visuals::ShowMessage(form, "Minesweeper\nRustScript game logic running on the CLR VM.", "About Minesweeper");
610+
Visuals::ShowMessage(form, "Minesweeper\nRustScript game logic running on IronRust.", "About Minesweeper");
611611
}
612612

613613
if action == "new" {

0 commit comments

Comments
 (0)