Skip to content

Commit efbdc94

Browse files
cschuchardt88shargonNGDAdmin
authored
Fixed pathing and Property (#3306)
Co-authored-by: Shargon <[email protected]> Co-authored-by: NGD Admin <[email protected]>
1 parent e0ba897 commit efbdc94

File tree

21 files changed

+21
-21
lines changed

21 files changed

+21
-21
lines changed

src/Neo.CLI/Neo.CLI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Product>Neo.CLI</Product>
1111
<ApplicationIcon>neo.ico</ApplicationIcon>
1212
<Nullable>enable</Nullable>
13-
<BaseOutputPath>$(SolutionDir)/bin/$(AssemblyTitle)</BaseOutputPath>
13+
<OutputPath>../../bin/$(AssemblyTitle)</OutputPath>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

src/Neo.ConsoleService/Neo.ConsoleService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
55
<PackageId>Neo.ConsoleService</PackageId>
66
<Nullable>enable</Nullable>
7-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
7+
<OutputPath>../../bin/$(PackageId)</OutputPath>
88
</PropertyGroup>
99

1010
<ItemGroup>

src/Neo.Cryptography.BLS12_381/Neo.Cryptography.BLS12_381.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<PackageId>Neo.Cryptography.BLS12_381</PackageId>
9-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
9+
<OutputPath>../../bin/$(PackageId)</OutputPath>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

src/Neo.Extensions/Neo.Extensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Nullable>enable</Nullable>
66
<PackageId>Neo.Extensions</PackageId>
77
<PackageTags>NEO;Blockchain;Extensions</PackageTags>
8-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
8+
<OutputPath>../../bin/$(PackageId)</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/Neo.GUI/Neo.GUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Product>Neo.GUI</Product>
1212
<ApplicationIcon>neo.ico</ApplicationIcon>
1313
<GenerateResourceWarnOnBinaryFormatterUse>false</GenerateResourceWarnOnBinaryFormatterUse>
14-
<BaseOutputPath>$(SolutionDir)/bin/$(AssemblyTitle)</BaseOutputPath>
14+
<OutputPath>../../bin/$(AssemblyTitle)</OutputPath>
1515
</PropertyGroup>
1616

1717
<ItemGroup>

src/Neo.IO/Neo.IO.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<PackageId>Neo.IO</PackageId>
88
<PackageTags>NEO;Blockchain;IO</PackageTags>
9-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
9+
<OutputPath>../../bin/$(PackageId)</OutputPath>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

src/Neo.Json/Neo.Json.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<PackageId>Neo.Json</PackageId>
88
<PackageTags>NEO;JSON</PackageTags>
9-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
9+
<OutputPath>../../bin/$(PackageId)</OutputPath>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

src/Neo.VM/Neo.VM.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<Nullable>enable</Nullable>
77
<PackageId>Neo.VM</PackageId>
8-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
8+
<OutputPath>../../bin/$(PackageId)</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/Neo/Neo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<PackageId>Neo</PackageId>
77
<PackageTags>NEO;AntShares;Blockchain;Smart Contract</PackageTags>
8-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
8+
<OutputPath>../../bin/$(PackageId)</OutputPath>
99
</PropertyGroup>
1010

1111
<ItemGroup>

src/Plugins/ApplicationLogs/ApplicationLogs.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PackageId>Neo.Plugins.ApplicationLogs</PackageId>
55
<RootNamespace>Neo.Plugins</RootNamespace>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<BaseOutputPath>$(SolutionDir)/bin/$(PackageId)</BaseOutputPath>
7+
<OutputPath>../../../bin/$(PackageId)</OutputPath>
88
</PropertyGroup>
99

1010
<ItemGroup>

0 commit comments

Comments
 (0)