Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preview3 #352

Merged
merged 5 commits into from
Sep 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Neo.Compiler.MSIL/Neo.Compiler.MSIL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Copyright>2015-2020 The Neo Project</Copyright>
<AssemblyTitle>Neo.Compiler.MSIL</AssemblyTitle>
<Version>3.0.0-preview2</Version>
<Version>3.0.0-preview3</Version>
<Authors>The Neo Project</Authors>
<OutputType>Exe</OutputType>
<AssemblyName>neon</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Copyright>2016-2019 The Neo Project</Copyright>
<AssemblyTitle>Neo.SmartContract.Framework</AssemblyTitle>
<VersionPrefix>3.0.0</VersionPrefix>
<VersionSuffix>preview2</VersionSuffix>
<VersionSuffix>preview3</VersionSuffix>
<Authors>The Neo Project</Authors>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>Neo.SmartContract.Framework</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion templates/Template.CSharp/Contract1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace $safeprojectname$
[Features(ContractFeatures.HasStorage)]
public class Contract1 : SmartContract
{
public static bool Main(string operation, object[] args)
public static bool Main()
{
Storage.Put("Hello", "World");
return true;
Expand Down
2 changes: 1 addition & 1 deletion templates/Template.CSharp/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Neo.SmartContract.Framework" Version="3.0.0-preview1" />
<PackageReference Include="Neo.SmartContract.Framework" Version="3.0.0-preview3" />
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
Expand Down
2 changes: 1 addition & 1 deletion templates/Template.VB/Contract1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Imports System
Imports System.Numerics

Public Class $itemname$ : Inherits SmartContract
Public Shared Function Main(ByVal operation As String, ByVal args() As Object) As Boolean
Public Shared Function Main() As Boolean
Storage.Put("Hello", "World")
Return True
End Function
Expand Down
2 changes: 1 addition & 1 deletion templates/Template.VB/ProjectTemplate.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Neo.SmartContract.Framework" Version="3.0.0-preview1" />
<PackageReference Include="Neo.SmartContract.Framework" Version="3.0.0-preview3" />
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
Expand Down