Skip to content

Commit 4274076

Browse files
cschuchardt88vncoelhoshargonsuperboyiiiJim8y
authored
ApplicationLog - New Storage implementation (#865)
* New storage * Review States * Review Models * fix header * Fix format * .editorconfig changes * Revert ".editorconfig changes" This reverts commit e39c866. * Add submodule to `*.csproj` file --------- Co-authored-by: Vitor Nazário Coelho <[email protected]> Co-authored-by: Fernando Diaz Toledano <[email protected]> Co-authored-by: Owen Zhang <[email protected]> Co-authored-by: Jimmy <[email protected]>
1 parent 79f0d78 commit 4274076

17 files changed

+1762
-134
lines changed

neo-modules.sln

+9-2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Neo.Cryptography.BLS12_381"
5757
EndProject
5858
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dependency", "Dependency", "{997874E0-C2A7-4EB2-85AA-180AF592DC6D}"
5959
EndProject
60+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Neo.ConsoleService", "neo\src\Neo.ConsoleService\Neo.ConsoleService.csproj", "{919EC990-C586-4B46-900E-8A7496004030}"
61+
EndProject
6062
Global
6163
GlobalSection(SolutionConfigurationPlatforms) = preSolution
6264
Debug|Any CPU = Debug|Any CPU
@@ -159,6 +161,10 @@ Global
159161
{7437514A-290D-4F84-B315-32ED95F710C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
160162
{7437514A-290D-4F84-B315-32ED95F710C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
161163
{7437514A-290D-4F84-B315-32ED95F710C1}.Release|Any CPU.Build.0 = Release|Any CPU
164+
{919EC990-C586-4B46-900E-8A7496004030}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
165+
{919EC990-C586-4B46-900E-8A7496004030}.Debug|Any CPU.Build.0 = Debug|Any CPU
166+
{919EC990-C586-4B46-900E-8A7496004030}.Release|Any CPU.ActiveCfg = Release|Any CPU
167+
{919EC990-C586-4B46-900E-8A7496004030}.Release|Any CPU.Build.0 = Release|Any CPU
162168
EndGlobalSection
163169
GlobalSection(SolutionProperties) = preSolution
164170
HideSolutionNode = FALSE
@@ -183,11 +189,12 @@ Global
183189
{D121D57A-512E-4F74-ADA1-24482BF5C42B} = {97E81C78-1637-481F-9485-DA1225E94C23}
184190
{938D86EA-0F48-436B-9255-4AD9A8E6B9AC} = {97E81C78-1637-481F-9485-DA1225E94C23}
185191
{A00FC746-1351-4275-B2D9-489477B409C0} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
186-
{7437514A-290D-4F84-B315-32ED95F710C1} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
187-
{9FF233D7-84C2-4947-96F6-88EE3594C66A} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
188192
{FEC96A32-38AB-426B-A93E-D37583BEE901} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
189193
{188D043E-393D-4E5B-A216-4274BF9AFB23} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
190194
{EDDE78BC-2064-4517-B9B2-25BA012A93C1} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
195+
{9FF233D7-84C2-4947-96F6-88EE3594C66A} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
196+
{7437514A-290D-4F84-B315-32ED95F710C1} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
197+
{919EC990-C586-4B46-900E-8A7496004030} = {997874E0-C2A7-4EB2-85AA-180AF592DC6D}
191198
EndGlobalSection
192199
GlobalSection(ExtensibilityGlobals) = postSolution
193200
SolutionGuid = {61D3ADE6-BBFC-402D-AB42-1C71C9F9EDE3}

src/ApplicationLogs/ApplicationLogs.csproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<PackageId>Neo.Plugins.ApplicationLogs</PackageId>
4+
<RootNamespace>Neo.Plugins</RootNamespace>
5+
<ImplicitUsings>enable</ImplicitUsings>
46
</PropertyGroup>
7+
58
<ItemGroup>
6-
<ProjectReference Include="..\RpcServer\RpcServer.csproj">
9+
<ProjectReference Include="..\..\neo\src\Neo.ConsoleService\Neo.ConsoleService.csproj" />
10+
<ProjectReference Include="..\RpcServer\RpcServer.csproj" AdditionalProperties="IncludeSettingsFileOutput=False">
711
<Private>false</Private>
812
<ExcludeAssets>runtime</ExcludeAssets>
913
</ProjectReference>

0 commit comments

Comments
 (0)