File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -40,20 +40,21 @@ jobs:
40
40
bash build/build.sh generate -configuration Release -platform $PLATFORM
41
41
bash build/build.sh download_llvm -platform $PLATFORM
42
42
bash build/build.sh restore -platform $PLATFORM
43
- bash build/build.sh -platform $PLATFORM -build_only
43
+ bash build/build.sh -platform $PLATFORM -build_only -target-framework 8.0
44
44
find bin
45
45
46
46
- name : Generating bindings
47
47
run : |
48
48
git clone --single-branch --depth 1 https://github.com/triton-inference-server/core
49
+ dotnet --version
50
+ dotnet --list-runtimes
49
51
#"$HOME/.dotnet"
50
52
DOTNET_ROOT=/usr/share/dotnet
51
- DOTNETSDKVER=$(dotnet --version)
52
- DOTNETFWKVER=$(dotnet --list-runtimes | grep Microsoft.NETCore.App | head -n 1 | cut -d " " -f2)
53
+ DOTNETSDKVER=8.0.303
54
+ DOTNETFWKVER=8.0.7
53
55
DOTNETLIBDIR="$DOTNET_ROOT/shared/Microsoft.NETCore.App/$DOTNETFWKVER"
54
- dotnet --version
55
- dotnet --list-runtimes
56
- echo $DOTNETSDKVER $DOTNETFWKVER
56
+ #DOTNETSDKVER=$(dotnet --version)
57
+ #DOTNETFWKVER=$(dotnet --list-runtimes | grep Microsoft.NETCore.App | tail -n 1 | cut -d " " -f2)
57
58
# -r:CppSharp/bin/Release_x64/CppSharp.dll -r:CppSharp/bin/Release_x64/CppSharp.AST.dll -r:CppSharp/bin/Release_x64/CppSharp.Parser.dll
58
59
59
60
#echo 'namespace ProgramNamespace { public static class Program { public static void Main(string[] args) { System.Console.WriteLine("Hello world!"); } } }' > footest.cs
You can’t perform that action at this time.
0 commit comments