Skip to content

Commit e4ce03d

Browse files
Updates
1 parent c2f90ac commit e4ce03d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

content/learning-paths/servers-and-cloud-computing/dotnet-migration/2-add-shared-c-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Compile the C file into a shared library:
3030
gcc -shared -o libmylib.so -fPIC mylib.c
3131
```
3232

33-
This will generate a shared library file (`libmylib.so`).
33+
This creates a shared object file named `libmylib.so` which your .NET application can call at runtime.
3434

3535
## Use the C library in your .NET application
3636

content/learning-paths/servers-and-cloud-computing/dotnet-migration/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ learning_objectives:
1717

1818
prerequisites:
1919
- A Microsoft Azure account with permissions to deploy virtual machines
20-
- Basic knowledge of C and .NET
20+
- .NET SDK 8.0 or later
21+
- Basic knowledge of C and C#
2122
- GCC installed (Linux) or access to a cross-compiler
2223
- OrchardCore application created using the .NET CLI or Visual Studio
2324

0 commit comments

Comments
 (0)