neo-project / neo-modules

MIT License
60 stars 100 forks source link

dotnet output folder not working for AppLog #890

Closed vncoelho closed 6 months ago

vncoelho commented 6 months ago

After commit https://github.com/neo-project/neo-modules/commit/42740769bb18004dccb1602ad57a836e3f3d43d3 the command dotnet publish .... -o YOUR_FOLDER is not publishing there but in bin Perhaps it is related to some change in

    <RootNamespace>Neo.Plugins</RootNamespace>
    <ImplicitUsings>enable</ImplicitUsings>
   <ProjectReference Include="..\..\neo\src\Neo.ConsoleService\Neo.ConsoleService.csproj" />
    <ProjectReference Include="..\RpcServer\RpcServer.csproj" AdditionalProperties="IncludeSettingsFileOutput=False">

ping @cschuchardt88

shargon commented 6 months ago

could you put the full command and the error?

cschuchardt88 commented 6 months ago

@vncoelho

Try running the following commands:

dotnet restore
dotnet publish ./src/ApplicationLogs --framework net7.0 --no-restore --configuration Release --output /app/Plugins/ApplicationLogs
vncoelho commented 6 months ago

@vncoelho

Try running the following commands:

dotnet restore
dotnet publish ./src/ApplicationLogs --framework net7.0 --no-restore --configuration Release --output /app/Plugins/ApplicationLogs

Command is exactly this. Soon I will send more info