From efbdc94c541ccc70c09e5dd745bb73e2160e6312 Mon Sep 17 00:00:00 2001 From: Christopher Schuchardt Date: Fri, 14 Jun 2024 03:28:38 -0400 Subject: [PATCH] Fixed pathing and Property (#3306) Co-authored-by: Shargon Co-authored-by: NGD Admin <154295625+NGDAdmin@users.noreply.github.com> --- src/Neo.CLI/Neo.CLI.csproj | 2 +- src/Neo.ConsoleService/Neo.ConsoleService.csproj | 2 +- .../Neo.Cryptography.BLS12_381.csproj | 2 +- src/Neo.Extensions/Neo.Extensions.csproj | 2 +- src/Neo.GUI/Neo.GUI.csproj | 2 +- src/Neo.IO/Neo.IO.csproj | 2 +- src/Neo.Json/Neo.Json.csproj | 2 +- src/Neo.VM/Neo.VM.csproj | 2 +- src/Neo/Neo.csproj | 2 +- src/Plugins/ApplicationLogs/ApplicationLogs.csproj | 2 +- src/Plugins/DBFTPlugin/DBFTPlugin.csproj | 2 +- src/Plugins/LevelDBStore/LevelDBStore.csproj | 2 +- src/Plugins/MPTTrie/MPTTrie.csproj | 2 +- src/Plugins/OracleService/OracleService.csproj | 2 +- src/Plugins/RocksDBStore/RocksDBStore.csproj | 2 +- src/Plugins/RpcClient/RpcClient.csproj | 2 +- src/Plugins/RpcServer/RpcServer.csproj | 2 +- src/Plugins/SQLiteWallet/SQLiteWallet.csproj | 2 +- src/Plugins/StateService/StateService.csproj | 2 +- src/Plugins/StorageDumper/StorageDumper.csproj | 2 +- src/Plugins/TokensTracker/TokensTracker.csproj | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/Neo.CLI/Neo.CLI.csproj b/src/Neo.CLI/Neo.CLI.csproj index a9d4c9919e..f3f319d358 100644 --- a/src/Neo.CLI/Neo.CLI.csproj +++ b/src/Neo.CLI/Neo.CLI.csproj @@ -10,7 +10,7 @@ Neo.CLI neo.ico enable - $(SolutionDir)/bin/$(AssemblyTitle) + ../../bin/$(AssemblyTitle) diff --git a/src/Neo.ConsoleService/Neo.ConsoleService.csproj b/src/Neo.ConsoleService/Neo.ConsoleService.csproj index 9b3ad32dfe..b4254a4cad 100644 --- a/src/Neo.ConsoleService/Neo.ConsoleService.csproj +++ b/src/Neo.ConsoleService/Neo.ConsoleService.csproj @@ -4,7 +4,7 @@ netstandard2.1;net8.0 Neo.ConsoleService enable - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Neo.Cryptography.BLS12_381/Neo.Cryptography.BLS12_381.csproj b/src/Neo.Cryptography.BLS12_381/Neo.Cryptography.BLS12_381.csproj index d5313d9eab..f74c9f1ec0 100644 --- a/src/Neo.Cryptography.BLS12_381/Neo.Cryptography.BLS12_381.csproj +++ b/src/Neo.Cryptography.BLS12_381/Neo.Cryptography.BLS12_381.csproj @@ -6,7 +6,7 @@ enable enable Neo.Cryptography.BLS12_381 - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Neo.Extensions/Neo.Extensions.csproj b/src/Neo.Extensions/Neo.Extensions.csproj index c6d549be6a..a7f4870568 100644 --- a/src/Neo.Extensions/Neo.Extensions.csproj +++ b/src/Neo.Extensions/Neo.Extensions.csproj @@ -5,7 +5,7 @@ enable Neo.Extensions NEO;Blockchain;Extensions - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Neo.GUI/Neo.GUI.csproj b/src/Neo.GUI/Neo.GUI.csproj index 014459be4c..078434fc13 100644 --- a/src/Neo.GUI/Neo.GUI.csproj +++ b/src/Neo.GUI/Neo.GUI.csproj @@ -11,7 +11,7 @@ Neo.GUI neo.ico false - $(SolutionDir)/bin/$(AssemblyTitle) + ../../bin/$(AssemblyTitle) diff --git a/src/Neo.IO/Neo.IO.csproj b/src/Neo.IO/Neo.IO.csproj index a1a0a9ea2e..a51ec1110a 100644 --- a/src/Neo.IO/Neo.IO.csproj +++ b/src/Neo.IO/Neo.IO.csproj @@ -6,7 +6,7 @@ enable Neo.IO NEO;Blockchain;IO - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Neo.Json/Neo.Json.csproj b/src/Neo.Json/Neo.Json.csproj index 3d75276dec..15924436e7 100644 --- a/src/Neo.Json/Neo.Json.csproj +++ b/src/Neo.Json/Neo.Json.csproj @@ -6,7 +6,7 @@ enable Neo.Json NEO;JSON - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Neo.VM/Neo.VM.csproj b/src/Neo.VM/Neo.VM.csproj index 9315a850df..eb137b623a 100644 --- a/src/Neo.VM/Neo.VM.csproj +++ b/src/Neo.VM/Neo.VM.csproj @@ -5,7 +5,7 @@ true enable Neo.VM - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Neo/Neo.csproj b/src/Neo/Neo.csproj index 707b94fa4c..835224eddd 100644 --- a/src/Neo/Neo.csproj +++ b/src/Neo/Neo.csproj @@ -5,7 +5,7 @@ true Neo NEO;AntShares;Blockchain;Smart Contract - $(SolutionDir)/bin/$(PackageId) + ../../bin/$(PackageId) diff --git a/src/Plugins/ApplicationLogs/ApplicationLogs.csproj b/src/Plugins/ApplicationLogs/ApplicationLogs.csproj index 4529b946af..0d01281c6a 100644 --- a/src/Plugins/ApplicationLogs/ApplicationLogs.csproj +++ b/src/Plugins/ApplicationLogs/ApplicationLogs.csproj @@ -4,7 +4,7 @@ Neo.Plugins.ApplicationLogs Neo.Plugins enable - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/DBFTPlugin/DBFTPlugin.csproj b/src/Plugins/DBFTPlugin/DBFTPlugin.csproj index 68595be53a..93c77ad1f8 100644 --- a/src/Plugins/DBFTPlugin/DBFTPlugin.csproj +++ b/src/Plugins/DBFTPlugin/DBFTPlugin.csproj @@ -4,7 +4,7 @@ net8.0 Neo.Consensus.DBFT Neo.Consensus - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/LevelDBStore/LevelDBStore.csproj b/src/Plugins/LevelDBStore/LevelDBStore.csproj index ef605a7afe..23cf469640 100644 --- a/src/Plugins/LevelDBStore/LevelDBStore.csproj +++ b/src/Plugins/LevelDBStore/LevelDBStore.csproj @@ -5,7 +5,7 @@ Neo.Plugins.Storage.LevelDBStore Neo.Plugins.Storage true - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/MPTTrie/MPTTrie.csproj b/src/Plugins/MPTTrie/MPTTrie.csproj index ef9e45cc51..3134f7ae5b 100644 --- a/src/Plugins/MPTTrie/MPTTrie.csproj +++ b/src/Plugins/MPTTrie/MPTTrie.csproj @@ -5,7 +5,7 @@ Neo.Cryptography.MPT Neo.Cryptography true - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/OracleService/OracleService.csproj b/src/Plugins/OracleService/OracleService.csproj index 1fa5c5602f..bb5cde6754 100644 --- a/src/Plugins/OracleService/OracleService.csproj +++ b/src/Plugins/OracleService/OracleService.csproj @@ -3,7 +3,7 @@ net8.0 Neo.Plugins.OracleService - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/RocksDBStore/RocksDBStore.csproj b/src/Plugins/RocksDBStore/RocksDBStore.csproj index 441b17306e..d23f089160 100644 --- a/src/Plugins/RocksDBStore/RocksDBStore.csproj +++ b/src/Plugins/RocksDBStore/RocksDBStore.csproj @@ -4,7 +4,7 @@ net8.0 Neo.Plugins.Storage.RocksDBStore Neo.Plugins.Storage - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/RpcClient/RpcClient.csproj b/src/Plugins/RpcClient/RpcClient.csproj index c43c71ef8a..bc6161e3cb 100644 --- a/src/Plugins/RpcClient/RpcClient.csproj +++ b/src/Plugins/RpcClient/RpcClient.csproj @@ -4,7 +4,7 @@ net8.0 Neo.Network.RPC.RpcClient Neo.Network.RPC - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/RpcServer/RpcServer.csproj b/src/Plugins/RpcServer/RpcServer.csproj index 3fb7a7bb9a..c5b72e7a61 100644 --- a/src/Plugins/RpcServer/RpcServer.csproj +++ b/src/Plugins/RpcServer/RpcServer.csproj @@ -3,7 +3,7 @@ net8.0 Neo.Plugins.RpcServer - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/SQLiteWallet/SQLiteWallet.csproj b/src/Plugins/SQLiteWallet/SQLiteWallet.csproj index 4c9029040f..041233af79 100644 --- a/src/Plugins/SQLiteWallet/SQLiteWallet.csproj +++ b/src/Plugins/SQLiteWallet/SQLiteWallet.csproj @@ -5,7 +5,7 @@ Neo.Wallets.SQLite Neo.Wallets.SQLite enable - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/StateService/StateService.csproj b/src/Plugins/StateService/StateService.csproj index 2bf85f1465..58c18ac498 100644 --- a/src/Plugins/StateService/StateService.csproj +++ b/src/Plugins/StateService/StateService.csproj @@ -4,7 +4,7 @@ net8.0 Neo.Plugins.StateService true - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/StorageDumper/StorageDumper.csproj b/src/Plugins/StorageDumper/StorageDumper.csproj index 7805140f3e..ebadda6136 100644 --- a/src/Plugins/StorageDumper/StorageDumper.csproj +++ b/src/Plugins/StorageDumper/StorageDumper.csproj @@ -5,7 +5,7 @@ Neo.Plugins.StorageDumper enable enable - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId) diff --git a/src/Plugins/TokensTracker/TokensTracker.csproj b/src/Plugins/TokensTracker/TokensTracker.csproj index bdacd3839c..5f17120159 100644 --- a/src/Plugins/TokensTracker/TokensTracker.csproj +++ b/src/Plugins/TokensTracker/TokensTracker.csproj @@ -3,7 +3,7 @@ net8.0 Neo.Plugins.TokensTracker - $(SolutionDir)/bin/$(PackageId) + ../../../bin/$(PackageId)