File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
benchmarks/Neo.VM.Benchmarks Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net9 .0</TargetFramework >
5+ <TargetFramework >net10 .0</TargetFramework >
66 <ImplicitUsings >enable</ImplicitUsings >
77 <Nullable >enable</Nullable >
88 <IsPackable >false</IsPackable >
Original file line number Diff line number Diff line change @@ -48,10 +48,9 @@ public IReadOnlyList<StackItem> this[Range range]
4848 if ( start > end )
4949 throw new ArgumentOutOfRangeException ( nameof ( range ) , "Range start must be less than or equal to end." ) ;
5050
51- StackItem [ ] copyList = [ .. _innerList ] ;
52- List < StackItem > reverseList = [ .. copyList . Reverse ( ) ] ;
53-
54- return reverseList . GetRange ( start , end - start ) ;
51+ List < StackItem > copyList = new ( _innerList ) ;
52+ copyList . Reverse ( ) ;
53+ return copyList . GetRange ( start , end - start ) ;
5554 }
5655 }
5756
Original file line number Diff line number Diff line change 55 <Description >Neo virtual machine</Description >
66 <VersionPrefix >3.9.0</VersionPrefix >
77 <Authors >The Neo Project</Authors >
8- <TargetFrameworks >netstandard2.1;net9 .0</TargetFrameworks >
8+ <TargetFrameworks >netstandard2.1;net10 .0</TargetFrameworks >
99 <LangVersion >latest</LangVersion >
1010 <PackageTags >NEO;AntShares;Blockchain;Smart Contract;VM</PackageTags >
1111 <PackageProjectUrl >https://github.com/neo-project/neo-vm</PackageProjectUrl >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net9 .0</TargetFramework >
4+ <TargetFramework >net10 .0</TargetFramework >
55 <RootNamespace >Neo.Test</RootNamespace >
66 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
77 <IsPackable >false</IsPackable >
You can’t perform that action at this time.
0 commit comments