-
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
Changes from 22 commits
f980291
e599745
22b7351
3fb628d
765accf
1611fd8
a6f059d
9bcd1b3
034a8a8
8f35694
f968041
5eaf14d
c0b4831
62159ea
eb09d41
3130075
5d85114
9a55d88
5a43f2a
59960f9
d0ae322
0c74a7c
687cfa8
7110220
032e6ee
d860c74
4dfda92
d1f4246
18da0e9
17815e9
5873845
2a08452
582c664
f1af082
592fa22
7d39a42
e062760
de5a188
3f20896
0d87aa5
99b645d
f0ca808
d8c0a79
6971700
99bd317
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| // Copyright (C) 2015-2024 The Neo Project. | ||
|
vncoelho marked this conversation as resolved.
Outdated
|
||
| // | ||
| // IsExternalInit.cs file belongs to the neo project and is free | ||
| // software distributed under the MIT software license, see the | ||
| // accompanying file LICENSE in the main directory of the | ||
| // repository or http://www.opensource.org/licenses/mit-license.php | ||
| // for more details. | ||
| // | ||
| // Redistribution and use in source and binary forms with or without | ||
| // modifications are permitted. | ||
|
|
||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| internal static class IsExternalInit { } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,15 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <PropertyGroup> | ||
| <TargetFrameworks>netstandard2.1;net7.0</TargetFrameworks> | ||
| <LangVersion>10.0</LangVersion> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. .NET Standard 2.1 requires Lang 8.0, right? is Lang 10 fine?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We use 11 in BLS and it works, we should use in all the same |
||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <Nullable>enable</Nullable> | ||
| <PackageTags>NEO;JSON</PackageTags> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="System.Text.Json" Version="8.0.0" /> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why we need this next Package?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. because it all different in |
||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
Uh oh!
There was an error while loading. Please reload this page.