-
Notifications
You must be signed in to change notification settings - Fork 1k
Convert to Neo.Json and Neo.ConsoleService to dotnet standard 2.1
#3044
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
Merged
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
f980291
fixes #3038
cschuchardt88 e599745
removed websocket port from configs
cschuchardt88 22b7351
Removed wsport from settings
cschuchardt88 3fb628d
Merge branch 'master' into remove-websockets
shargon 765accf
Converted neo.json to dotnet standard 2.1
cschuchardt88 1611fd8
fix tests
cschuchardt88 a6f059d
fix workflow
cschuchardt88 9bcd1b3
added <IsPackable>false</IsPackable> to tests
cschuchardt88 034a8a8
removed unused files
cschuchardt88 8f35694
Fixed TryGetValue
cschuchardt88 f968041
converted Neo.ConsoleService to standard
cschuchardt88 5eaf14d
fixed warning
cschuchardt88 c0b4831
fixes for dotnet
cschuchardt88 62159ea
fixed warning
cschuchardt88 eb09d41
Merge branch 'master' into standard/neo
cschuchardt88 3130075
Merge branch 'remove-websockets' into standard/neo
cschuchardt88 5d85114
Merge Master
cschuchardt88 9a55d88
Merge branch 'master' into standard/neo
cschuchardt88 5a43f2a
Merge branch 'standard/neo' of https://github.com/cschuchardt88/neo i…
cschuchardt88 59960f9
Fixed header
cschuchardt88 d0ae322
Merge branch 'master' into standard/neo
cschuchardt88 0c74a7c
Fixed settings and added in shargons request
cschuchardt88 687cfa8
Merge branch 'master' into standard/neo
cschuchardt88 7110220
Merge branch 'master' into standard/neo
cschuchardt88 032e6ee
Merge branch 'master' into standard/neo
cschuchardt88 d860c74
Merge branch 'master' into standard/neo
cschuchardt88 4dfda92
convert neto to standard
cschuchardt88 d1f4246
fixed getBit size
cschuchardt88 18da0e9
Fixed bitlen and Murmur128
cschuchardt88 17815e9
fixes
cschuchardt88 5873845
contractask update
cschuchardt88 2a08452
Merge branch 'master' into standard/neo
cschuchardt88 582c664
Merge branch 'master' into standard/neo
cschuchardt88 f1af082
Merge branch 'master' into standard/neo
cschuchardt88 592fa22
Merge branch 'standard/neo' of https://github.com/cschuchardt88/neo i…
shargon 7d39a42
Merge branch 'master' into standard/neo
shargon e062760
Merge branch 'standard/neo' of https://github.com/cschuchardt88/neo i…
shargon de5a188
Remove IsExternalInit
shargon 3f20896
Unify LangVersion
shargon 0d87aa5
Remove comments
shargon 99b645d
Remove more comments
shargon f0ca808
Revert main.yml
shargon d8c0a79
Revert neo changes
shargon 6971700
fix targetFramework
shargon 99bd317
revert revert main.yml
shargon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,14 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFrameworks>netstandard2.1;net7.0</TargetFrameworks> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <Nullable>enable</Nullable> | ||
| <PackageTags>NEO;JSON</PackageTags> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="System.Text.Json" Version="8.0.0" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
tests/Neo.ConsoleService.Tests/Neo.ConsoleService.Tests.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.