-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
looks like Microsoft fixed `hostfxr_initialize_for_runtime_config`
- Loading branch information
1 parent
2110152
commit 86a51aa
Showing
6 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
mkdir -p build && cd build | ||
|
||
cmake .. | ||
cmake --build . --config Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
dotnet publish -c Release -r linux-x64 -p:PublishDir="$(pwd)/dist" --self-contained |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
dotnet publish -c Release -p:PublishDir="$(pwd)/dist" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
npm install | ||
|
||
cd Bootstrapper | ||
./build.sh | ||
cd .. | ||
|
||
cd DemoApplication | ||
./build.sh | ||
cd .. | ||
|
||
cd RuntimePatcher | ||
./build.sh | ||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
./DemoApplication/dist/DemoApplication & | ||
npm start -- inject \ | ||
DemoApplication \ | ||
Bootstrapper/build/libBootstrapper.so \ | ||
RuntimePatcher/dist/RuntimePatcher.runtimeconfig.json \ | ||
RuntimePatcher/dist/RuntimePatcher.dll \ | ||
"RuntimePatcher.Main, RuntimePatcher" "InitializePatches" |