diff --git a/Source/Directory.Build.props b/Source/Directory.Build.props index adb2340bc..6e0ccd702 100644 --- a/Source/Directory.Build.props +++ b/Source/Directory.Build.props @@ -3,7 +3,7 @@ 3.2.3 - net6.0 + net8.0 false Boogie https://github.com/boogie-org/boogie diff --git a/Test/lean-auto/test.sh b/Test/lean-auto/test.sh index 66fe08eac..8343b435a 100755 --- a/Test/lean-auto/test.sh +++ b/Test/lean-auto/test.sh @@ -5,5 +5,5 @@ set -e boogie_file=$1 base=`basename $boogie_file .bpl` lean_file="$base.lean" -dotnet ../../Source/BoogieDriver/bin/Debug/net6.0/BoogieDriver.dll /printLean:$lean_file $boogie_file +dotnet ../../Source/BoogieDriver/bin/Debug/net8.0/BoogieDriver.dll /printLean:$lean_file $boogie_file lake env lean $lean_file diff --git a/Test/lit.site.cfg b/Test/lit.site.cfg index fdb6a8681..26cc95bf8 100644 --- a/Test/lit.site.cfg +++ b/Test/lit.site.cfg @@ -78,7 +78,7 @@ repositoryRoot = up(up(os.path.abspath(__file__))) lit_config.note('Repository root is {}'.format(repositoryRoot)) configuration = lit_config.params.get('configuration', 'Debug') -framework = lit_config.params.get('framework', 'net6.0') +framework = lit_config.params.get('framework', 'net8.0') boogieBinary = 'Source/BoogieDriver/bin/{}/{}/BoogieDriver.dll'.format(configuration, framework) runtime = 'dotnet'