File tree Expand file tree Collapse file tree
Neo.SmartContract.Framework
Neo.SmartContract.Template/templates/neocontract Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33
44 <PropertyGroup >
55 <Copyright >2015-2022 The Neo Project</Copyright >
6- <VersionPrefix >3.4 .0</VersionPrefix >
6+ <VersionPrefix >3.5 .0</VersionPrefix >
77 <TargetFramework >net6.0</TargetFramework >
88 <Authors >The Neo Project</Authors >
99 </PropertyGroup >
Original file line number Diff line number Diff line change 1919 </PropertyGroup >
2020
2121 <ItemGroup >
22- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.2 .0" />
23- <PackageReference Include =" Neo" Version =" 3.4.0-CI01389 " />
22+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" 4.4 .0" />
23+ <PackageReference Include =" Neo" Version =" 3.5.0 " />
2424 <PackageReference Include =" System.CommandLine" Version =" 2.0.0-beta4.22272.1" />
2525 <PackageReference Include =" System.CommandLine.NamingConventionBinder" Version =" 2.0.0-beta4.22272.1" />
2626 </ItemGroup >
Original file line number Diff line number Diff line change @@ -21,6 +21,14 @@ public enum OpCode : byte
2121 PUSHINT128 = 0x04 ,
2222 PUSHINT256 = 0x05 ,
2323 /// <summary>
24+ /// Pushes the boolean value <see langword="true"/> onto the stack.
25+ /// </summary>
26+ PUSHT = 0x08 ,
27+ /// <summary>
28+ /// Pushes the boolean value <see langword="false"/> onto the stack.
29+ /// </summary>
30+ PUSHF = 0x09 ,
31+ /// <summary>
2432 /// Convert the next four bytes to an address, and push the address onto the stack.
2533 /// </summary>
2634 PUSHA = 0x0A ,
Original file line number Diff line number Diff line change 55 </PropertyGroup >
66
77 <ItemGroup >
8- <PackageReference Include =" Neo.SmartContract.Framework" Version =" 3.4 .0" />
8+ <PackageReference Include =" Neo.SmartContract.Framework" Version =" 3.5 .0" />
99 </ItemGroup >
1010
1111 <PropertyGroup >
Original file line number Diff line number Diff line change 77 </PropertyGroup >
88
99 <ItemGroup >
10- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.2 .0" />
10+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.4 .0" />
1111 <PackageReference Include =" MSTest.TestAdapter" Version =" 2.2.10" />
1212 <PackageReference Include =" MSTest.TestFramework" Version =" 2.2.10" />
13- <PackageReference Include =" coverlet.collector" Version =" 3.1.2 " >
13+ <PackageReference Include =" coverlet.collector" Version =" 3.2.0 " >
1414 <PrivateAssets >all</PrivateAssets >
1515 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1616 </PackageReference >
You can’t perform that action at this time.
0 commit comments