dotnet / sdk

Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
https://dot.net/core
MIT License
2.68k stars 1.06k forks source link

Files and process remain open when building projects with docker container #40021

Open vncoelho opened 6 months ago

vncoelho commented 6 months ago

Version Used: FROM mcr.microsoft.com/dotnet/sdk:8.0.203-jammy or FROM mcr.microsoft.com/dotnet/sdk:8.0.202-jammy

Steps to Reproduce:

We have a project with multiple csproj, I am building each of them like this:

#!/bin/bash
source /opt/env-repositories.sh

for i in "${PLUGINS_LIST_NEO_PACKAGE[@]}"
do 
    # Informing the user about the plugin being built
    echo "GOING TO BUILD PLUGIN ${i}"
        echo ""

        # Calling the build script for each plugin
    /opt/build_plugin_3x.sh --plugin-name ${i}

    # Capturing the exit status of the build script
    res=$?

    # Checking if the build script exited with a status of 1 (indicating an error)
    if [ $res = 1 ]; then
        echo "GOING TO EXIT BECAUSE LAST VERIFICATION RETURNED $res"
        echo ""
        exit 1
    fi
done

echo "PLUGINS_RUN_TESTS is $PLUGINS_RUN_TESTS, WHICH DEFINES IF TESTS ARE GOING TO RUN"
echo ""

/opt/test_plugin_3x.sh

echo "Script buildAllList_Plugins finished!!"
echo ""
#!/bin/bash
PLUGIN_TO_INCLUDE=1

function usage {
    echo "Usage: $0 [--plugin-name <plugin to build>]"
}

while [[ "$#" > 0 ]]; do case $1 in
    -h)
        usage
        exit 0
        ;;
    --plugin-name)
    echo "GETTING PLUGIN NAME AS PARAMETER $2";
        PLUGIN_TO_INCLUDE=$2
        shift; shift
        ;;
    *)
        usage
        exit 1
        ;;
  esac;
done

#================= PUBLISH ==============================
echo ""
echo "GOING TO FOLDER /opt/neo-modules/src/$PLUGIN_TO_INCLUDE"
cd /opt/neo-modules/src/$PLUGIN_TO_INCLUDE

echo ""
echo "DOTNET INFO"
dotnet --info

echo ""
echo "GOING TO RESTORE $PLUGIN_TO_INCLUDE..."
dotnet restore 

echo ""
echo ""
echo "GREP DOTNET PROCESS BEFORE SHUTDOWN"
ps aux | grep dotnet

===============================================
THIS SOLVED THE PROBLEM BUT IT IS STRANGE TO USE THIS
echo ""
echo "GOING build-server shutdown $PLUGIN_TO_INCLUDE..."
dotnet build-server shutdown

========================================================

echo ""
echo "GREP DOTNET PROCESS AFTER SHUTDOWN"
ps aux | grep dotnet
echo ""
echo ""

#echo "lsof"
#lsof | grep dotnet

echo ""
echo "GOING TO BUILD $PLUGIN_TO_INCLUDE..."
dotnet build --no-restore

echo ""
echo "GOING TO PUBLISH $PLUGIN_TO_INCLUDE..."
dotnet publish -c Release -f net8.0 --no-restore -o app
#================= PUBLISH ==============================

# Sometimes LS is important in order to DEBUG BETTER if output is correct
#ls -R /opt/neo-modules/src/$PLUGIN_TO_INCLUDE

ORIGIN_PATH=/opt/neo-modules/src/$PLUGIN_TO_INCLUDE/app

echo "GOING TO CHECK CREATED DLL $PLUGIN_TO_INCLUDE..."
echo ""

if [ ! -f $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll ]; then
    echo "PLUGIN DLL File does not exist at $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll"
    exit 1
fi

DEST_FOLDER=/opt/neoLib/src/Neo.CLI/Plugins/$PLUGIN_TO_INCLUDE/
mkdir $DEST_FOLDER

echo "GOING TO COPY DEPENDENCIES (IF NEEDED - CURRENTLY JUST ORACLE SERVICES)"
echo ""

# =========================================================
# cp -ri $ORIGIN_PATH/*.dll $DEST_FOLDER
# =========================================================
# OR COPY MANUALLY - TODO FOR SQLIT PLUGIN

if [ $PLUGIN_TO_INCLUDE = "OracleService" ]; then
    echo "Going to copy file $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll TO $DEST_FOLDER - and some other dependencies"
    cp -ri $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Neo.FileStorage.API.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Grpc.Net.Common.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Grpc.Net.ClientFactory.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Grpc.Net.Client.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Grpc.Core.Api.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Grpc.AspNetCore.Server.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Grpc.AspNetCore.Server.ClientFactory.dll $DEST_FOLDER
    cp -ri $ORIGIN_PATH/Google.Protobuf.dll $DEST_FOLDER
    exit 
fi

if [ $PLUGIN_TO_INCLUDE = "RestServer" ]; then
    echo "Going to copy file $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll TO $DEST_FOLDER - and some other dependencies"
    cp -ri $ORIGIN_PATH/*.dll $DEST_FOLDER    
    cp -ri $ORIGIN_PATH/RestServer.xml $DEST_FOLDER
    exit
fi

if [ $PLUGIN_TO_INCLUDE = "SQLiteWallet" ]; then
    echo "Going to copy file $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll TO $DEST_FOLDER - and some other dependencies"
    cp -ri $ORIGIN_PATH/*.dll $DEST_FOLDER    
    exit
fi

echo "GOING TO COPY DLL ITSELF"
echo ""

echo "Going to copy file /opt/neo-modules/src/$PLUGIN_TO_INCLUDE/app/$PLUGIN_TO_INCLUDE.dll TO /opt/neoNode/neo-cli/Plugins/"
cp -ri $ORIGIN_PATH/$PLUGIN_TO_INCLUDE.dll $DEST_FOLDER

A minimal repro, with source-code provided, is ideal. Using sharplab is preferred for compiler/language issues whenever possible.

Diagnostic Id:

If this is a report about a bug in an analyzer, please include the diagnostic if possible (e.g. "IDE0030").

Expected Behavior: The csproj are all build in different folders with: cd /opt/neo-modules/src/$PLUGIN_TO_INCLUDE dotnet publish -c Release -f net8.0 --no-restore -o app

There is not parallel process with & at end of commands. It was working normally with net7.0 and problems started when we migrated to net8.0.

The problem was just solved when dotnet build-server shutdown was introduced.

We tried with and without "no-restore", without building before...all combination had the same error described below.

Actual Behavior: Some logs

dotnet/roslyn#41 0.330 DOTNET INFO
dotnet/roslyn#41 0.421 .NET SDK:
dotnet/roslyn#41 0.421  Version:           8.0.202
dotnet/roslyn#41 0.421  Commit:            25674bb2f4
dotnet/roslyn#41 0.459  Workload version:  8.0.200-manifests.4e94be9c
dotnet/roslyn#41 0.459 
dotnet/roslyn#41 0.459 Runtime Environment:
dotnet/roslyn#41 0.460  OS Name:     ubuntu
dotnet/roslyn#41 0.460  OS Version:  22.04
dotnet/roslyn#41 0.461  OS Platform: Linux
dotnet/roslyn#41 0.465  RID:         linux-x64
dotnet/roslyn#41 0.465  Base Path:   /usr/share/dotnet/sdk/8.0.202/
dotnet/roslyn#41 0.465 
dotnet/roslyn#41 0.465 .NET workloads installed:
dotnet/roslyn#41 0.468 There are no installed workloads to display.
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 Host:
dotnet/roslyn#41 0.469   Version:      8.0.3
dotnet/roslyn#41 0.469   Architecture: x64
dotnet/roslyn#41 0.469   Commit:       9f4b1f5d66
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 .NET SDKs installed:
dotnet/roslyn#41 0.469   8.0.202 [/usr/share/dotnet/sdk]
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 .NET runtimes installed:
dotnet/roslyn#41 0.469   Microsoft.AspNetCore.App 8.0.3 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App]
dotnet/roslyn#41 0.469   Microsoft.NETCore.App 8.0.3 [/usr/share/dotnet/shared/Microsoft.NETCore.App]
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 Other architectures found:
dotnet/roslyn#41 0.469   None
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 Environment variables:
dotnet/roslyn#41 0.469   Not set
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 global.json file:
dotnet/roslyn#41 0.469   /opt/neo-modules/global.json
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 Learn more:
dotnet/roslyn#41 0.469   https://aka.ms/dotnet/info
dotnet/roslyn#41 0.469 
dotnet/roslyn#41 0.469 Download .NET:
dotnet/roslyn#41 0.469   https://aka.ms/dotnet/download
dotnet/roslyn#41 0.472 

dotnet/roslyn#41 0.472 DOTNET CLEAN
dotnet/roslyn#41 0.585 MSBuild version 17.9.6+a4ecab324 for .NET
dotnet/roslyn#41 0.623 Build started 03/25/2024 19:04:57.
dotnet/roslyn#41 0.867      1>Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" on node 1 (Clean target(s)).
dotnet/roslyn#41 0.867      1>Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (1) is building "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (1:2) on node 1 (Clean target(s)).
dotnet/roslyn#41 0.867      1>CoreClean:
dotnet/roslyn#41 0.867          Creating directory "obj/Debug/net8.0/".
dotnet/roslyn#41 1.432    1:2>Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (1:2) is building "/opt/neo-modules/src/RpcServer/RpcServer.csproj" (4:3) on node 2 (Clean target(s)).
dotnet/roslyn#41 1.432      4>CoreClean:
dotnet/roslyn#41 1.432          Creating directory "obj/Debug/net8.0/".
dotnet/roslyn#41 2.274      4>Done Building Project "/opt/neo-modules/src/RpcServer/RpcServer.csproj" (Clean target(s)).
dotnet/roslyn#41 2.274      1>Done Building Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (Clean target(s)).
dotnet/roslyn#41 2.275      1>Done Building Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (Clean target(s)).
dotnet/roslyn#41 2.281 
dotnet/roslyn#41 2.281 Build succeeded.
dotnet/roslyn#41 2.281     0 Warning(s)
dotnet/roslyn#41 2.281     0 Error(s)
dotnet/roslyn#41 2.281 
dotnet/roslyn#41 2.281 Time Elapsed 00:00:01.66
dotnet/roslyn#41 2.308 

dotnet restore

dotnet/roslyn#41 2.308 GOING TO RESTORE ApplicationLogs...
dotnet/roslyn#41 2.624   Determining projects to restore...
dotnet/roslyn#41 3.419   Restored /opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj (in 47 ms).
dotnet/roslyn#41 4.517   Restored /opt/neo-modules/neo/src/Neo.Cryptography.BLS12_381/Neo.Cryptography.BLS12_381.csproj (in 1.15 sec).
dotnet/roslyn#41 4.519   Restored /opt/neo-modules/neo/src/Neo.Json/Neo.Json.csproj (in 1.16 sec).
dotnet/roslyn#41 4.522   Restored /opt/neo-modules/neo/src/Neo.Extensions/Neo.Extensions.csproj (in 1.17 sec).
dotnet/roslyn#41 4.523   Restored /opt/neo-modules/neo/src/Neo.IO/Neo.IO.csproj (in 1.17 sec).
dotnet/roslyn#41 4.523   Restored /opt/neo-modules/neo/src/Neo.ConsoleService/Neo.ConsoleService.csproj (in 1.17 sec).
dotnet/roslyn#41 4.524   Restored /opt/neo-modules/src/RpcServer/RpcServer.csproj (in 1.17 sec).
dotnet/roslyn#41 4.524   Restored /opt/neo-modules/neo/src/Neo/Neo.csproj (in 1.17 sec).
dotnet/roslyn#41 4.525   Restored /opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj (in 1.17 sec).
dotnet/roslyn#41 4.552 
dotnet-issue-labeler[bot] commented 6 months ago

I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.

vncoelho commented 6 months ago
dotnet publish -c Release -f net8.0 --no-restore --verbosity detailed --use-current-runtime -o app

dotnet/roslyn#41 4.552 GOING TO PUBLISH ApplicationLogs...
dotnet/roslyn#41 4.673 MSBuild version 17.9.6+a4ecab324 for .NET
dotnet/roslyn#41 4.711 Build started 03/25/2024 19:05:01.
dotnet/roslyn#41 4.713      0>Process = "/usr/share/dotnet/dotnet"
dotnet/roslyn#41 4.713        MSBuild executable path = "/usr/share/dotnet/sdk/8.0.202/MSBuild.dll"
dotnet/roslyn#41 4.713        Command line arguments = "/usr/share/dotnet/sdk/8.0.202/MSBuild.dll -maxcpucount -verbosity:m -target:Publish --property:_IsPublishing=true -property:UseCurrentRuntimeIdentifier=True -property:PublishDir=/opt/neo-modules/src/ApplicationLogs/app -property:_CommandLineDefinedOutputPath=true -property:TargetFramework=net8.0 -property:Configuration=Release -verbosity:detailed -property:DOTNET_CLI_DISABLE_PUBLISH_AND_PACK_RELEASE=true -distributedlogger:Microsoft.DotNet.Tools.MSBuild.MSBuildLogger,/usr/share/dotnet/sdk/8.0.202/dotnet.dll*Microsoft.DotNet.Tools.MSBuild.MSBuildForwardingLogger,/usr/share/dotnet/sdk/8.0.202/dotnet.dll"
dotnet/roslyn#41 4.713        Current directory = "/opt/neo-modules/src/ApplicationLogs"
dotnet/roslyn#41 4.713        MSBuild version = "17.9.6+a4ecab324"
dotnet/roslyn#41 4.730        Assembly loaded during Evaluation: System.Reflection.Metadata, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (location: /usr/share/dotnet/shared/Microsoft.NETCore.App/8.0.3/System.Reflection.Metadata.dll, MVID: 3c81bd4b-3c92-44fd-8b06-2751ffea96e9, AssemblyLoadContext: Default)
dotnet/roslyn#41 4.734        Assembly loaded during Evaluation: Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver, Version=8.0.202.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.dll, MVID: f96ff03b-cf6c-4145-a109-709cdee3a4d2, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.dll)
dotnet/roslyn#41 4.735        Assembly loaded during Evaluation: Microsoft.Build.NuGetSdkResolver, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/Microsoft.Build.NuGetSdkResolver.dll, MVID: ceadfb98-3438-4989-9b59-109742289296, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/Microsoft.Build.NuGetSdkResolver.dll)
dotnet/roslyn#41 4.736        Resolving SDK 'Microsoft.NET.Sdk'...
dotnet/roslyn#41 4.737        Assembly loaded during Evaluation: Microsoft.DotNet.Cli.Utils, Version=8.0.202.0, Culture=neutral, PublicKeyToken=adb9793829ddae60 (location: /usr/share/dotnet/sdk/8.0.202/Microsoft.DotNet.Cli.Utils.dll, MVID: 63e22dea-068d-4415-bbe2-f5bf85d32215, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.dll)
dotnet/roslyn#41 4.737        Assembly loaded during Evaluation: Microsoft.NET.Sdk.WorkloadManifestReader, Version=8.0.202.0, Culture=neutral, PublicKeyToken=adb9793829ddae60 (location: /usr/share/dotnet/sdk/8.0.202/Microsoft.NET.Sdk.WorkloadManifestReader.dll, MVID: 42fe3dab-5288-4e37-b257-fdc468d12c60, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.dll)
dotnet/roslyn#41 4.737        Assembly loaded during Evaluation: Microsoft.Deployment.DotNet.Releases, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/Microsoft.Deployment.DotNet.Releases.dll, MVID: eb340e0e-b895-41fa-8fc4-c04faee03b3b, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver.dll)
dotnet/roslyn#41 4.756        Assembly loaded during Evaluation: NuGet.Common, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/NuGet.Common.dll, MVID: a262e05f-083e-411d-a1c4-2e6195b1b293, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/Microsoft.Build.NuGetSdkResolver.dll)
dotnet/roslyn#41 4.760        Property 'MSBuildExtensionsPath' with value '/usr/share/dotnet/sdk/8.0.202/' expanded from the environment.
dotnet/roslyn#41 4.767        Property reassignment: $(MSBuildProjectExtensionsPath)="/opt/neo-modules/src/ApplicationLogs/obj/" (previous value: "obj/") at /usr/share/dotnet/sdk/8.0.202/Current/Microsoft.Common.props (60,5)
dotnet/roslyn#41 4.767        Assembly loaded during Evaluation: System.Threading.Tasks.Parallel, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (location: /usr/share/dotnet/shared/Microsoft.NETCore.App/8.0.3/System.Threading.Tasks.Parallel.dll, MVID: fc7cdd51-9900-4ca1-a717-3a3eb3728290, AssemblyLoadContext: Default)
dotnet/roslyn#41 4.768        The "Configuration" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.769        The "Configuration" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.769        Property reassignment: $(AssemblySearchPaths)="{CandidateAssemblyFiles};{HintPathFromItem}" (previous value: "{CandidateAssemblyFiles}") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.props (91,5)
dotnet/roslyn#41 4.769        Property reassignment: $(AssemblySearchPaths)="{CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory}" (previous value: "{CandidateAssemblyFiles};{HintPathFromItem}") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.props (92,5)
dotnet/roslyn#41 4.769        Property reassignment: $(AssemblySearchPaths)="{CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName}" (previous value: "{CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory}") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.props (93,5)
dotnet/roslyn#41 4.771        Resolving SDK 'Microsoft.NET.SDK.WorkloadAutoImportPropsLocator'...
dotnet/roslyn#41 4.773        Property reassignment: $(TargetsForTfmSpecificContentInPackage)=";PackTool;_PackProjectToolValidation" (previous value: ";PackTool") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.PackProjectTool.props (15,5)
dotnet/roslyn#41 4.775        The "Configuration" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.775        Property reassignment: $(PublishProfileImported)="false" (previous value: "true") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.ImportPublishProfile.targets (28,5)
dotnet/roslyn#41 4.776        Assembly loaded during Evaluation: NuGet.Frameworks, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/NuGet.Frameworks.dll, MVID: 1511df14-e1a4-4098-a7a3-94b91f1149ea, AssemblyLoadContext: Assembly.LoadFile(/usr/share/dotnet/sdk/8.0.202/NuGet.Frameworks.dll))
dotnet/roslyn#41 4.780        Property reassignment: $(TargetPlatformVersion)="" (previous value: "0.0") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets (69,5)
dotnet/roslyn#41 4.781        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**" (previous value: ";bin\Release//**") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultOutputPaths.targets (122,5)
dotnet/roslyn#41 4.781        Property reassignment: $(OutputPath)="bin\Release/net8.0/" (previous value: "bin\Release/") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultOutputPaths.targets (137,5)
dotnet/roslyn#41 4.781        Property reassignment: $(IntermediateOutputPath)="obj/Release/net8.0/" (previous value: "obj/Release/") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultOutputPaths.targets (142,5)
dotnet/roslyn#41 4.781        Resolving SDK 'Microsoft.NET.SDK.WorkloadManifestTargetsLocator'...
dotnet/roslyn#41 4.785        Property reassignment: $(IntermediateOutputPath)="obj/Release/net8.0/linux-x64/" (previous value: "obj/Release/net8.0/") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets (329,5)
dotnet/roslyn#41 4.785        Property reassignment: $(OutputPath)="bin\Release/net8.0/linux-x64/" (previous value: "bin\Release/net8.0/") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets (330,5)
dotnet/roslyn#41 4.785        The "PublishDir" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.785        The "PublishDir" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.788        Property reassignment: $(_FrameworkIdentifierForImplicitDefine)="NET" (previous value: "NETCOREAPP") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.BeforeCommon.targets (187,5)
dotnet/roslyn#41 4.788        Property reassignment: $(_FrameworkVersionForImplicitDefine)="8_0" (previous value: "8.0") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.BeforeCommon.targets (192,5)
dotnet/roslyn#41 4.789        Property reassignment: $(CommandLineArgsForDesignTimeEvaluation)="-langversion:12.0 -define:TRACE" (previous value: "-langversion:12.0") at /usr/share/dotnet/sdk/8.0.202/Roslyn/Microsoft.CSharp.Core.targets (197,5)
dotnet/roslyn#41 4.795        Assembly loaded during Evaluation: Microsoft.Build.Utilities.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (location: /usr/share/dotnet/sdk/8.0.202/Microsoft.Build.Utilities.Core.dll, MVID: 14bcfd22-ed3d-48f2-809c-9ea8dab488b2, AssemblyLoadContext: Default)
dotnet/roslyn#41 4.795        The "Configuration" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.795        Property reassignment: $(_DebugSymbolsProduced)="true" (previous value: "false") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (179,5)
dotnet/roslyn#41 4.795        Property reassignment: $(_DocumentationFileProduced)="false" (previous value: "true") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (185,5)
dotnet/roslyn#41 4.796        Property reassignment: $(MSBuildCopyMarkerName)="Applicat.965BC0EF" (previous value: "ApplicationLogs.csproj") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (392,5)
dotnet/roslyn#41 4.796        Property reassignment: $(MSBuildCopyMarkerName)="Applicat.965BC0EF.Up2Date" (previous value: "Applicat.965BC0EF") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (393,5)
dotnet/roslyn#41 4.796        The "PublishDir" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.796        The "PublishDir" property is a global property, and cannot be modified.
dotnet/roslyn#41 4.796        Property reassignment: $(ClickOncePublishDir)="/opt/neo-modules/src/ApplicationLogs/app/" (previous value: "/opt/neo-modules/src/ApplicationLogs/app") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (504,5)
dotnet/roslyn#41 4.796        Property reassignment: $(ProcessorArchitecture)="amd64" (previous value: "x64") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (523,5)
dotnet/roslyn#41 4.796        Property reassignment: $(DelaySign)="" (previous value: "false") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (575,5)
dotnet/roslyn#41 4.796        Property 'LocalAppData' with value '/root/.local/share' expanded from the environment.
dotnet/roslyn#41 4.797        Property reassignment: $(_SGenGenerateSerializationAssembliesConfig)="Auto" (previous value: "") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (3865,5)
dotnet/roslyn#41 4.797        Property reassignment: $(_TargetsThatPrepareProjectReferences)="
dotnet/roslyn#41 4.797              AssignProjectConfiguration;
dotnet/roslyn#41 4.797              _SplitProjectReferencesByFileExistence
dotnet/roslyn#41 4.797            " (previous value: "_SplitProjectReferencesByFileExistence") at /usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets (5032,5)
dotnet/roslyn#41 4.797        Property 'MSBuildExtensionsPath32' with value '/usr/share/dotnet/sdk/8.0.202' expanded from the environment.
dotnet/roslyn#41 4.802        Property reassignment: $(ProjectAssetsCacheFile)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.assets.cache" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.assets.cache") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets (29,5)
dotnet/roslyn#41 4.802        Property reassignment: $(ResolveAssemblyReferencesDependsOn)="
dotnet/roslyn#41 4.802              
dotnet/roslyn#41 4.802              ResolveProjectReferences;
dotnet/roslyn#41 4.802              FindInvalidProjectReferences;
dotnet/roslyn#41 4.802              GetFrameworkPaths;
dotnet/roslyn#41 4.802              GetReferenceAssemblyPaths;
dotnet/roslyn#41 4.802              PrepareForBuild;
dotnet/roslyn#41 4.802              ResolveSDKReferences;
dotnet/roslyn#41 4.802              ExpandSDKReferences;
dotnet/roslyn#41 4.802            ;
dotnet/roslyn#41 4.802              ResolvePackageDependenciesForBuild;
dotnet/roslyn#41 4.802              _HandlePackageFileConflicts;
dotnet/roslyn#41 4.802            " (previous value: "
dotnet/roslyn#41 4.802              ResolveProjectReferences;
dotnet/roslyn#41 4.802              FindInvalidProjectReferences;
dotnet/roslyn#41 4.802              GetFrameworkPaths;
dotnet/roslyn#41 4.802              GetReferenceAssemblyPaths;
dotnet/roslyn#41 4.802              PrepareForBuild;
dotnet/roslyn#41 4.802              ResolveSDKReferences;
dotnet/roslyn#41 4.802              ExpandSDKReferences;
dotnet/roslyn#41 4.802            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets (80,5)
dotnet/roslyn#41 4.802        Property reassignment: $(PrepareResourcesDependsOn)="
dotnet/roslyn#41 4.802              ResolvePackageDependenciesForBuild;
dotnet/roslyn#41 4.802              _HandlePackageFileConflicts;
dotnet/roslyn#41 4.802              
dotnet/roslyn#41 4.802              ;
dotnet/roslyn#41 4.802              PrepareResourceNames;
dotnet/roslyn#41 4.802              ResGen;
dotnet/roslyn#41 4.802              CompileLicxFiles
dotnet/roslyn#41 4.802            
dotnet/roslyn#41 4.802            " (previous value: "
dotnet/roslyn#41 4.802              ;
dotnet/roslyn#41 4.802              PrepareResourceNames;
dotnet/roslyn#41 4.802              ResGen;
dotnet/roslyn#41 4.802              CompileLicxFiles
dotnet/roslyn#41 4.802            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets (86,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**" (previous value: ";bin\Release//**;obj/Release//**") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (27,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**;obj//**" (previous value: ";bin\Release//**;obj/Release//**;bin\/**") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (29,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user" (previous value: ";bin\Release//**;obj/Release//**;bin\/**;obj//**") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (32,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj" (previous value: ";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (33,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj;**/*.sln" (previous value: ";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (34,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc" (previous value: ";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj;**/*.sln") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (35,5)
dotnet/roslyn#41 4.802        Property reassignment: $(DefaultItemExcludes)=";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc;**/.DS_Store" (previous value: ";bin\Release//**;obj/Release//**;bin\/**;obj//**;**/*.user;**/*.*proj;**/*.sln;**/*.vssscc") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets (36,5)
dotnet/roslyn#41 4.803        Property reassignment: $(ResolveAssemblyReferencesDependsOn)="
dotnet/roslyn#41 4.803              
dotnet/roslyn#41 4.803              
dotnet/roslyn#41 4.803              ResolveProjectReferences;
dotnet/roslyn#41 4.803              FindInvalidProjectReferences;
dotnet/roslyn#41 4.803              GetFrameworkPaths;
dotnet/roslyn#41 4.803              GetReferenceAssemblyPaths;
dotnet/roslyn#41 4.803              PrepareForBuild;
dotnet/roslyn#41 4.803              ResolveSDKReferences;
dotnet/roslyn#41 4.803              ExpandSDKReferences;
dotnet/roslyn#41 4.803            ;
dotnet/roslyn#41 4.803              ResolvePackageDependenciesForBuild;
dotnet/roslyn#41 4.803              _HandlePackageFileConflicts;
dotnet/roslyn#41 4.803            ;
dotnet/roslyn#41 4.803              ResolveTargetingPackAssets;
dotnet/roslyn#41 4.803            " (previous value: "
dotnet/roslyn#41 4.803              
dotnet/roslyn#41 4.803              ResolveProjectReferences;
dotnet/roslyn#41 4.803              FindInvalidProjectReferences;
dotnet/roslyn#41 4.803              GetFrameworkPaths;
dotnet/roslyn#41 4.803              GetReferenceAssemblyPaths;
dotnet/roslyn#41 4.803              PrepareForBuild;
dotnet/roslyn#41 4.803              ResolveSDKReferences;
dotnet/roslyn#41 4.803              ExpandSDKReferences;
dotnet/roslyn#41 4.803            ;
dotnet/roslyn#41 4.803              ResolvePackageDependenciesForBuild;
dotnet/roslyn#41 4.803              _HandlePackageFileConflicts;
dotnet/roslyn#41 4.803            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FrameworkReferenceResolution.targets (14,5)
dotnet/roslyn#41 4.803        Property reassignment: $(_GenerateRuntimeConfigurationPropertyInputsCache)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.genruntimeconfig.cache" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.genruntimeconfig.cache") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (44,5)
dotnet/roslyn#41 4.803        Property reassignment: $(_GeneratePublishDependencyFilePropertyInputsCache)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.genpublishdeps.cache" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.genpublishdeps.cache") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (46,5)
dotnet/roslyn#41 4.803        Property reassignment: $(_GenerateSingleFileBundlePropertyInputsCache)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.genbundle.cache" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.genbundle.cache") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (48,5)
dotnet/roslyn#41 4.804        Property reassignment: $(GenerateRuntimeConfigDevFile)="false" (previous value: "true") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (81,5)
dotnet/roslyn#41 4.804        Property 'HOME' with value '/root' expanded from the environment.
dotnet/roslyn#41 4.804        Property reassignment: $(_DefaultUserProfileRuntimeStorePath)="/root/.dotnet/store" (previous value: "/root") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (98,5)
dotnet/roslyn#41 4.804        Property reassignment: $(AvailablePlatforms)="Any CPU,x86,x64,ARM32" (previous value: "Any CPU,x86,x64") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (136,5)
dotnet/roslyn#41 4.804        Property reassignment: $(AvailablePlatforms)="Any CPU,x86,x64,ARM32,ARM64" (previous value: "Any CPU,x86,x64,ARM32") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (140,5)
dotnet/roslyn#41 4.804        Property reassignment: $(CoreBuildDependsOn)="
dotnet/roslyn#41 4.804              _CheckForBuildWithNoBuild;
dotnet/roslyn#41 4.804              
dotnet/roslyn#41 4.804              BuildOnlySettings;
dotnet/roslyn#41 4.804              PrepareForBuild;
dotnet/roslyn#41 4.804              PreBuildEvent;
dotnet/roslyn#41 4.804              ResolveReferences;
dotnet/roslyn#41 4.804              PrepareResources;
dotnet/roslyn#41 4.804              ResolveKeySource;
dotnet/roslyn#41 4.804              Compile;
dotnet/roslyn#41 4.804              ExportWindowsMDFile;
dotnet/roslyn#41 4.804              UnmanagedUnregistration;
dotnet/roslyn#41 4.804              GenerateSerializationAssemblies;
dotnet/roslyn#41 4.804              CreateSatelliteAssemblies;
dotnet/roslyn#41 4.804              GenerateManifests;
dotnet/roslyn#41 4.804              GetTargetPath;
dotnet/roslyn#41 4.804              PrepareForRun;
dotnet/roslyn#41 4.804              UnmanagedRegistration;
dotnet/roslyn#41 4.804              IncrementalClean;
dotnet/roslyn#41 4.804              PostBuildEvent
dotnet/roslyn#41 4.804            ;
dotnet/roslyn#41 4.804              GenerateBuildDependencyFile;
dotnet/roslyn#41 4.804              GenerateBuildRuntimeConfigurationFiles
dotnet/roslyn#41 4.804            " (previous value: "
dotnet/roslyn#41 4.804              BuildOnlySettings;
dotnet/roslyn#41 4.804              PrepareForBuild;
dotnet/roslyn#41 4.804              PreBuildEvent;
dotnet/roslyn#41 4.804              ResolveReferences;
dotnet/roslyn#41 4.804              PrepareResources;
dotnet/roslyn#41 4.804              ResolveKeySource;
dotnet/roslyn#41 4.804              Compile;
dotnet/roslyn#41 4.804              ExportWindowsMDFile;
dotnet/roslyn#41 4.804              UnmanagedUnregistration;
dotnet/roslyn#41 4.804              GenerateSerializationAssemblies;
dotnet/roslyn#41 4.804              CreateSatelliteAssemblies;
dotnet/roslyn#41 4.804              GenerateManifests;
dotnet/roslyn#41 4.804              GetTargetPath;
dotnet/roslyn#41 4.804              PrepareForRun;
dotnet/roslyn#41 4.804              UnmanagedRegistration;
dotnet/roslyn#41 4.804              IncrementalClean;
dotnet/roslyn#41 4.804              PostBuildEvent
dotnet/roslyn#41 4.804            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (197,5)
dotnet/roslyn#41 4.804        Property reassignment: $(CoreCleanDependsOn)="
dotnet/roslyn#41 4.804              _SdkBeforeClean;
dotnet/roslyn#41 4.804              
dotnet/roslyn#41 4.804            " (previous value: "") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (206,5)
dotnet/roslyn#41 4.804        Property reassignment: $(RebuildDependsOn)="
dotnet/roslyn#41 4.804              _SdkBeforeRebuild;
dotnet/roslyn#41 4.804              
dotnet/roslyn#41 4.804              BeforeRebuild;
dotnet/roslyn#41 4.804              Clean;
dotnet/roslyn#41 4.804              Build;
dotnet/roslyn#41 4.804              AfterRebuild;
dotnet/roslyn#41 4.804            
dotnet/roslyn#41 4.804            " (previous value: "
dotnet/roslyn#41 4.804              BeforeRebuild;
dotnet/roslyn#41 4.804              Clean;
dotnet/roslyn#41 4.804              Build;
dotnet/roslyn#41 4.804              AfterRebuild;
dotnet/roslyn#41 4.804            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (213,5)
dotnet/roslyn#41 4.804        Property reassignment: $(CompileDependsOn)="
dotnet/roslyn#41 4.804              
dotnet/roslyn#41 4.804              ResolveReferences;
dotnet/roslyn#41 4.804              ResolveKeySource;
dotnet/roslyn#41 4.804              SetWin32ManifestProperties;
dotnet/roslyn#41 4.804              FindReferenceAssembliesForReferences;
dotnet/roslyn#41 4.804              _GenerateCompileInputs;
dotnet/roslyn#41 4.804              BeforeCompile;
dotnet/roslyn#41 4.804              _TimeStampBeforeCompile;
dotnet/roslyn#41 4.804              _GenerateCompileDependencyCache;
dotnet/roslyn#41 4.804              CoreCompile;
dotnet/roslyn#41 4.804              _TimeStampAfterCompile;
dotnet/roslyn#41 4.804              AfterCompile;
dotnet/roslyn#41 4.804            ;
dotnet/roslyn#41 4.804              _CreateAppHost;
dotnet/roslyn#41 4.804              _CreateComHost;
dotnet/roslyn#41 4.804              _GetIjwHostPaths;
dotnet/roslyn#41 4.804            " (previous value: "
dotnet/roslyn#41 4.804              ResolveReferences;
dotnet/roslyn#41 4.804              ResolveKeySource;
dotnet/roslyn#41 4.804              SetWin32ManifestProperties;
dotnet/roslyn#41 4.804              FindReferenceAssembliesForReferences;
dotnet/roslyn#41 4.804              _GenerateCompileInputs;
dotnet/roslyn#41 4.804              BeforeCompile;
dotnet/roslyn#41 4.804              _TimeStampBeforeCompile;
dotnet/roslyn#41 4.804              _GenerateCompileDependencyCache;
dotnet/roslyn#41 4.804              CoreCompile;
dotnet/roslyn#41 4.804              _TimeStampAfterCompile;
dotnet/roslyn#41 4.804              AfterCompile;
dotnet/roslyn#41 4.804            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (679,5)
dotnet/roslyn#41 4.804        Property reassignment: $(CreateSatelliteAssembliesDependsOn)="
dotnet/roslyn#41 4.804              
dotnet/roslyn#41 4.804              _GenerateSatelliteAssemblyInputs;
dotnet/roslyn#41 4.804              ComputeIntermediateSatelliteAssemblies;
dotnet/roslyn#41 4.804              GenerateSatelliteAssemblies
dotnet/roslyn#41 4.804            ;
dotnet/roslyn#41 4.804              CoreGenerateSatelliteAssemblies
dotnet/roslyn#41 4.804            " (previous value: "
dotnet/roslyn#41 4.804              _GenerateSatelliteAssemblyInputs;
dotnet/roslyn#41 4.804              ComputeIntermediateSatelliteAssemblies;
dotnet/roslyn#41 4.804              GenerateSatelliteAssemblies
dotnet/roslyn#41 4.804            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets (1065,5)
dotnet/roslyn#41 4.820        Property reassignment: $(SourceLinkUrlInitializerTargets)=";_InitializeGitHubSourceLinkUrl;_InitializeGitLabSourceLinkUrl" (previous value: ";_InitializeGitHubSourceLinkUrl") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.SourceLink.GitLab/build/Microsoft.SourceLink.GitLab.targets (12,5)
dotnet/roslyn#41 4.820        Property reassignment: $(SourceControlManagerUrlTranslationTargets)=";TranslateGitHubUrlsInSourceControlInformation;TranslateGitLabUrlsInSourceControlInformation" (previous value: ";TranslateGitHubUrlsInSourceControlInformation") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.SourceLink.GitLab/build/Microsoft.SourceLink.GitLab.targets (13,5)
dotnet/roslyn#41 4.820        Property reassignment: $(SourceLinkUrlInitializerTargets)=";_InitializeGitHubSourceLinkUrl;_InitializeGitLabSourceLinkUrl;_InitializeAzureReposGitSourceLinkUrl" (previous value: ";_InitializeGitHubSourceLinkUrl;_InitializeGitLabSourceLinkUrl") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.SourceLink.AzureRepos.Git/build/Microsoft.SourceLink.AzureRepos.Git.targets (12,5)
dotnet/roslyn#41 4.820        Property reassignment: $(SourceControlManagerUrlTranslationTargets)=";TranslateGitHubUrlsInSourceControlInformation;TranslateGitLabUrlsInSourceControlInformation;TranslateAzureReposGitUrlsInSourceControlInformation" (previous value: ";TranslateGitHubUrlsInSourceControlInformation;TranslateGitLabUrlsInSourceControlInformation") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.SourceLink.AzureRepos.Git/build/Microsoft.SourceLink.AzureRepos.Git.targets (13,5)
dotnet/roslyn#41 4.821        Property reassignment: $(SourceLinkUrlInitializerTargets)=";_InitializeGitHubSourceLinkUrl;_InitializeGitLabSourceLinkUrl;_InitializeAzureReposGitSourceLinkUrl;_InitializeBitbucketGitSourceLinkUrl" (previous value: ";_InitializeGitHubSourceLinkUrl;_InitializeGitLabSourceLinkUrl;_InitializeAzureReposGitSourceLinkUrl") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.SourceLink.Bitbucket.Git/build/Microsoft.SourceLink.Bitbucket.Git.targets (12,5)
dotnet/roslyn#41 4.821        Property reassignment: $(SourceControlManagerUrlTranslationTargets)=";TranslateGitHubUrlsInSourceControlInformation;TranslateGitLabUrlsInSourceControlInformation;TranslateAzureReposGitUrlsInSourceControlInformation;TranslateBitbucketGitUrlsInSourceControlInformation" (previous value: ";TranslateGitHubUrlsInSourceControlInformation;TranslateGitLabUrlsInSourceControlInformation;TranslateAzureReposGitUrlsInSourceControlInformation") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.SourceLink.Bitbucket.Git/build/Microsoft.SourceLink.Bitbucket.Git.targets (13,5)
dotnet/roslyn#41 4.821        Property reassignment: $(DesignerRuntimeImplementationProjectOutputGroupDependsOn)="
dotnet/roslyn#41 4.821              
dotnet/roslyn#41 4.821              ;
dotnet/roslyn#41 4.821              
dotnet/roslyn#41 4.821              ;
dotnet/roslyn#41 4.821              BuildOnlySettings;
dotnet/roslyn#41 4.821              PrepareForBuild;
dotnet/roslyn#41 4.821              AssignTargetPaths;
dotnet/roslyn#41 4.821              ResolveReferences
dotnet/roslyn#41 4.821            
dotnet/roslyn#41 4.821            ;
dotnet/roslyn#41 4.821              _GenerateDesignerDepsFile;
dotnet/roslyn#41 4.821              _GenerateDesignerRuntimeConfigFile;
dotnet/roslyn#41 4.821              GetCopyToOutputDirectoryItems;
dotnet/roslyn#41 4.821              _GatherDesignerShadowCopyFiles;
dotnet/roslyn#41 4.821            " (previous value: "
dotnet/roslyn#41 4.821              ;
dotnet/roslyn#41 4.821              
dotnet/roslyn#41 4.821              ;
dotnet/roslyn#41 4.821              BuildOnlySettings;
dotnet/roslyn#41 4.821              PrepareForBuild;
dotnet/roslyn#41 4.821              AssignTargetPaths;
dotnet/roslyn#41 4.821              ResolveReferences
dotnet/roslyn#41 4.821            
dotnet/roslyn#41 4.821            ") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DesignerSupport.targets (21,5)
dotnet/roslyn#41 4.824        Property reassignment: $(_GenerateToolsSettingsFileCacheFile)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.toolssettingsinput.cache" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.toolssettingsinput.cache") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.PackTool.targets (68,5)
dotnet/roslyn#41 4.824        Property reassignment: $(_ShimInputCacheFile)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.shiminput.cache" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.shiminput.cache") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.PackTool.targets (137,5)
dotnet/roslyn#41 4.824        Property reassignment: $(_ShimCreatedSentinelFile)="/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/ApplicationLogs.shimcreated.sentinel" (previous value: "obj/Release/net8.0/linux-x64/ApplicationLogs.shimcreated.sentinel") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.PackTool.targets (139,5)
dotnet/roslyn#41 4.825        Property reassignment: $(DefineConstants)="TRACE;RELEASE" (previous value: "TRACE") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.CSharp.targets (31,5)
dotnet/roslyn#41 4.825        Property reassignment: $(DefineConstants)="TRACE;RELEASE;NET;NET8_0;NETCOREAPP" (previous value: "TRACE;RELEASE") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.CSharp.targets (34,5)
dotnet/roslyn#41 4.825        Property reassignment: $(WarningsAsErrors)=";NU1605;SYSLIB0011" (previous value: ";NU1605") at /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.CSharp.targets (48,5)
dotnet/roslyn#41 4.827        Property reassignment: $(PackageDescription)="Package Description" (previous value: "") at /usr/share/dotnet/sdk/8.0.202/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets (34,5)
dotnet/roslyn#41 4.827        Property reassignment: $(GenerateNuspecDependsOn)="Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; " (previous value: "_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; ") at /usr/share/dotnet/sdk/8.0.202/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets (59,5)
dotnet/roslyn#41 4.828        Property reassignment: $(_IsSDKContainerAllowedVersion)="true" (previous value: "false") at /usr/share/dotnet/sdk/8.0.202/Containers/build/Microsoft.NET.Build.Containers.targets (5,5)
dotnet/roslyn#41 4.828        Property reassignment: $(_ContainerIsTargetingNet8TFM)="true" (previous value: "false") at /usr/share/dotnet/sdk/8.0.202/Containers/build/Microsoft.NET.Build.Containers.targets (15,5)
dotnet/roslyn#41 4.855        Assembly loaded during Evaluation: System.Reflection.Emit.Lightweight, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (location: /usr/share/dotnet/shared/Microsoft.NETCore.App/8.0.3/System.Reflection.Emit.Lightweight.dll, MVID: 7dc9a1f6-52aa-4d23-b611-778bb25c6172, AssemblyLoadContext: Default)
dotnet/roslyn#41 4.855        Assembly loaded during Evaluation: System.Reflection.Emit.ILGeneration, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (location: /usr/share/dotnet/shared/Microsoft.NETCore.App/8.0.3/System.Reflection.Emit.ILGeneration.dll, MVID: d05a3bc9-7ae4-4f96-aa7d-79d4bf10f7b6, AssemblyLoadContext: Default)
dotnet/roslyn#41 4.858        Assembly loaded during Evaluation: System.Reflection.Primitives, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (location: /usr/share/dotnet/shared/Microsoft.NETCore.App/8.0.3/System.Reflection.Primitives.dll, MVID: 8cf6ebaf-89fc-426c-a4d2-6bb65ba3cbbb, AssemblyLoadContext: Default)
dotnet/roslyn#41 4.880        Overriding target "ResolveFrameworkReferences" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "ResolveFrameworkReferences" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FrameworkReferenceResolution.targets".
dotnet/roslyn#41 4.880        Overriding target "Run" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "Run" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets".
dotnet/roslyn#41 4.880        Overriding target "GenerateSupportedTargetFrameworkAlias" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "GenerateSupportedTargetFrameworkAlias" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets".
dotnet/roslyn#41 4.880        Overriding target "GetReferenceAssemblyPaths" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "GetReferenceAssemblyPaths" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DisableStandardFrameworkResolution.targets".
dotnet/roslyn#41 4.880        Overriding target "GetFrameworkPaths" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "GetFrameworkPaths" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DisableStandardFrameworkResolution.targets".
dotnet/roslyn#41 4.880        Overriding target "DesignerRuntimeImplementationProjectOutputGroup" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "DesignerRuntimeImplementationProjectOutputGroup" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DesignerSupport.targets".
dotnet/roslyn#41 4.881        Overriding target "Publish" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "Publish" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Publish.targets".
dotnet/roslyn#41 4.881        Overriding target "ResolveReadyToRunCompilers" in project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.CrossGen.targets" with target "ResolveReadyToRunCompilers" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Publish.targets".
dotnet/roslyn#41 4.881        Overriding target "GetCopyToPublishDirectoryItems" in project "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" with target "GetCopyToPublishDirectoryItems" from project "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Publish.targets".
dotnet/roslyn#41 4.883        The target "ResolveNuGetPackageAssets" listed in an AfterTargets attribute at "/root/.nuget/packages/system.text.json/8.0.3/buildTransitive/net6.0/System.Text.Json.targets (11,11)" does not exist in the project, and will be ignored.
dotnet/roslyn#41 4.883        The target "ResolveNuGetPackageAssets" listed in an AfterTargets attribute at "/root/.nuget/packages/system.text.json/8.0.3/buildTransitive/net6.0/System.Text.Json.targets (23,11)" does not exist in the project, and will be ignored.
dotnet/roslyn#41 4.883        The target "ResolveNuGetPackageAssets" listed in an AfterTargets attribute at "/root/.nuget/packages/microsoft.extensions.configuration.binder/8.0.1/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets (9,13)" does not exist in the project, and will be ignored.
dotnet/roslyn#41 4.892      1>Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" on node 1 (Publish target(s)).
dotnet/roslyn#41 4.892      1>Target "NETStandardCompatError_Microsoft_Extensions_Configuration_Binder" in file "/root/.nuget/packages/microsoft.extensions.configuration.binder/8.0.1/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (entry point):
dotnet/roslyn#41 4.892      1>Task "Warning" skipped, due to false condition; ('$(_Microsoft_Extensions_Configuration_Binder_Compatible_TargetFramework)' != '') was evaluated as ('' != '').
dotnet/roslyn#41 4.892      1>Done building target "NETStandardCompatError_Microsoft_Extensions_Configuration_Binder" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.892        Target "_CheckForUnsupportedTargetFramework" skipped, due to false condition; ('$(_UnsupportedTargetFrameworkError)' == 'true') was evaluated as ('' == 'true').
dotnet/roslyn#41 4.895      1>Target "_CollectTargetFrameworkForTelemetry" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.895        Using "AllowEmptyTelemetry" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.895        Task "AllowEmptyTelemetry"
dotnet/roslyn#41 4.898        Done executing task "AllowEmptyTelemetry".
dotnet/roslyn#41 4.898      1>Done building target "_CollectTargetFrameworkForTelemetry" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898        Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) And ('$(DesignTimeBuild)' != 'true' Or '@(MissingWorkloadPack)' == '')) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True And ('' != 'true' Or '' == '')).
dotnet/roslyn#41 4.898        Target "_CheckForMissingWorkload" skipped, due to false condition; ('@(MissingWorkloadPack)' != '' And '$(DesignTimeBuild)' != 'true') was evaluated as ('' != '' And '' != 'true').
dotnet/roslyn#41 4.898      1>Target "_CheckForUnsupportedNETCoreVersion" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NETSdkError" skipped, due to false condition; ('$(_TargetFrameworkVersionWithoutV)' > '$(NETCoreAppMaximumVersion)' and '$(DisplayVSMessage)' != 'true') was evaluated as ('8.0' > '8.0' and '' != 'true').
dotnet/roslyn#41 4.898        Task "NETSdkError" skipped, due to false condition; ('$(DisplayVSMessage)' == 'true') was evaluated as ('' == 'true').
dotnet/roslyn#41 4.898      1>Done building target "_CheckForUnsupportedNETCoreVersion" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898        Target "_CheckForEolTargetFrameworks" skipped, due to false condition; ('@(_EolNetCoreTargetFrameworkVersions->AnyHaveMetadataValue('Identity', '$(_TargetFrameworkVersionWithoutV)'))' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and '$(CheckEolTargetFramework)' == 'true') was evaluated as ('false' and '.NETCoreApp' == '.NETCoreApp' and '' == 'true').
dotnet/roslyn#41 4.898        Target "_CheckForEolWorkloads" skipped, due to false condition; ('@(EolWorkload)' != '' and '$(CheckEolWorkloads)' == 'true') was evaluated as ('' != '' and 'true' == 'true').
dotnet/roslyn#41 4.898      1>Target "_CheckForUnsupportedCppNETCoreVersion" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NETSdkError" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' and '$(_TargetFrameworkVersionWithoutV)' < '3.1' and ('$(Language)' == 'C++' and '$(_EnablePackageReferencesInVCProjects)' != 'true')) was evaluated as ('.NETCoreApp' == '.NETCoreApp' and '8.0' < '3.1' and ('C#' == 'C++' and '' != 'true')).
dotnet/roslyn#41 4.898      1>Done building target "_CheckForUnsupportedCppNETCoreVersion" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898        Target "_CheckForUnsupportedNETStandardVersion" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETStandard' And '$(NETStandardMaximumVersion)' != '') was evaluated as ('.NETCoreApp' == '.NETStandard' And '' != '').
dotnet/roslyn#41 4.898        Target "_CheckForUnsupportedTargetFrameworkAndFeatureCombination" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETFramework') was evaluated as ('.NETCoreApp' == '.NETFramework').
dotnet/roslyn#41 4.898        Target "_CheckForSupportedOSPlatformVersionHigherThanTargetPlatformVersion" skipped, due to false condition; ('$(TargetPlatformVersion)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0))) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True).
dotnet/roslyn#41 4.898        Target "_CheckForInvalidTargetPlatformVersion" skipped, due to false condition; ('$(TargetPlatformVersion)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) and ('$(Language)' != 'C++' or '$(_EnablePackageReferencesInVCProjects)' == 'true')) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True and ('C#' != 'C++' or '' == 'true')).
dotnet/roslyn#41 4.898      1>Target "_CheckForUnsupportedArtifactsPath" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultOutputPaths.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NetSdkError" skipped, due to false condition; ('$(UseArtifactsOutput)' == 'true' and '$(_ArtifactsPathSetEarly)' != 'true') was evaluated as ('' == 'true' and '' != 'true').
dotnet/roslyn#41 4.898        Task "NetSdkError" skipped, due to false condition; ('$(_ArtifactsPathLocationType)' == 'ProjectFolder') was evaluated as ('' == 'ProjectFolder').
dotnet/roslyn#41 4.898      1>Done building target "_CheckForUnsupportedArtifactsPath" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898        Target "_CheckForMissingWorkload" skipped, due to false condition; ('@(MissingWorkloadPack)' != '' And '$(DesignTimeBuild)' != 'true') was evaluated as ('' != '' And '' != 'true').
dotnet/roslyn#41 4.898        Target "_CheckForUnsupportedAppHostUsage" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' and '$(HasRuntimeOutput)' == 'true') was evaluated as ('.NETCoreApp' == '.NETCoreApp' and '' == 'true').
dotnet/roslyn#41 4.898      1>Target "_CheckForUnsupportedHostingUsage" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NETSdkWarning" skipped, due to false condition; ('$(SelfContained)' == 'true' and '$(EnableComHosting)' == 'true') was evaluated as ('' == 'true' and '' == 'true').
dotnet/roslyn#41 4.898      1>Done building target "_CheckForUnsupportedHostingUsage" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898      1>Target "_CheckAndUnsetUnsupportedPrefer32Bit" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NETSdkWarning" skipped, due to false condition; ('$(Prefer32Bit)' == 'true') was evaluated as ('false' == 'true').
dotnet/roslyn#41 4.898      1>Done building target "_CheckAndUnsetUnsupportedPrefer32Bit" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898      1>Target "_CheckForMismatchingPlatform" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NETSdkError" skipped, due to false condition; ('$(PlatformTarget)' != 'AnyCPU' and !$(RuntimeIdentifier.ToUpperInvariant().Contains($(PlatformTarget.ToUpperInvariant())))) was evaluated as ('x64' != 'AnyCPU' and !True).
dotnet/roslyn#41 4.898      1>Done building target "_CheckForMismatchingPlatform" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.898      1>Target "_CheckForLanguageAndFeatureCombinationSupport" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.898        Task "NETSdkError" skipped, due to false condition; (('$(Language)' == 'C++' and '$(_EnablePackageReferencesInVCProjects)' != 'true') and $(OutputType) != 'library' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp') was evaluated as (('C#' == 'C++' and '' != 'true') and Library != 'library' and '.NETCoreApp' == '.NETCoreApp').
dotnet/roslyn#41 4.899        Task "NETSdkError" skipped, due to false condition; (('$(Language)' == 'C++' and '$(_EnablePackageReferencesInVCProjects)' != 'true') and $(EnableComHosting) == 'true') was evaluated as (('C#' == 'C++' and '' != 'true') and  == 'true').
dotnet/roslyn#41 4.899        Task "NETSdkError" skipped, due to false condition; (('$(Language)' == 'C++' and '$(_EnablePackageReferencesInVCProjects)' != 'true') and $(SelfContained) == 'true') was evaluated as (('C#' == 'C++' and '' != 'true') and  == 'true').
dotnet/roslyn#41 4.899      1>Done building target "_CheckForLanguageAndFeatureCombinationSupport" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.899        Target "_CheckForNETCoreSdkIsPreview" skipped, due to false condition; ( '$(_NETCoreSdkIsPreview)' == 'true' AND '$(SuppressNETCoreSdkPreviewMessage)' != 'true' ) was evaluated as ( 'false' == 'true' AND '' != 'true' ).
dotnet/roslyn#41 4.899      1>Target "_GetProjectJsonPath" in file "/usr/share/dotnet/sdk/8.0.202/NuGet.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_GetRestoreProjectStyle" depends on it):
dotnet/roslyn#41 4.899        Task "GetRestoreProjectJsonPathTask" skipped, due to false condition; ( '$(RestoreProjectStyle)' == 'ProjectJson' OR '$(RestoreProjectStyle)' == '' ) was evaluated as ( 'PackageReference' == 'ProjectJson' OR 'PackageReference' == '' ).
dotnet/roslyn#41 4.899      1>Done building target "_GetProjectJsonPath" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.899        Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) And ('$(DesignTimeBuild)' != 'true' Or '@(MissingWorkloadPack)' == '')) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True And ('' != 'true' Or '' == '')).
dotnet/roslyn#41 4.899        Target "_CheckForMissingWorkload" skipped, due to false condition; ('@(MissingWorkloadPack)' != '' And '$(DesignTimeBuild)' != 'true') was evaluated as ('' != '' And '' != 'true').
dotnet/roslyn#41 4.899        Target "_CheckForUnsupportedNETStandardVersion" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETStandard' And '$(NETStandardMaximumVersion)' != '') was evaluated as ('.NETCoreApp' == '.NETStandard' And '' != '').
dotnet/roslyn#41 4.899        Target "_CheckForUnsupportedTargetFrameworkAndFeatureCombination" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETFramework') was evaluated as ('.NETCoreApp' == '.NETFramework').
dotnet/roslyn#41 4.899        Target "ApplyImplicitVersions" skipped, due to false condition; ('@(PackageReference)' != '') was evaluated as ('' != '').
dotnet/roslyn#41 4.899        Target "IncludeTargetingPackReference" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(AutomaticallyUseReferenceAssemblyPackages)' == 'true') was evaluated as ('.NETCoreApp,Version=v8.0' != '' and '.NETCoreApp' == '.NETFramework' and 'true' == 'true').
dotnet/roslyn#41 4.899      1>Target "CheckForImplicitPackageReferenceOverrides" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.Shared.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CollectPackageReferences" depends on it):
dotnet/roslyn#41 4.899        Using "CheckForImplicitPackageReferenceOverrides" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.899        Task "CheckForImplicitPackageReferenceOverrides"
dotnet/roslyn#41 4.900        Done executing task "CheckForImplicitPackageReferenceOverrides".
dotnet/roslyn#41 4.900      1>Done building target "CheckForImplicitPackageReferenceOverrides" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.900        Target "AddWindowsSdkKnownFrameworkReferences" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' And '$(TargetPlatformIdentifier)' == 'Windows') was evaluated as ('.NETCoreApp' == '.NETCoreApp' And '' == 'Windows').
dotnet/roslyn#41 4.900        Target "_NormalizeTargetPlatformVersion" skipped, due to false condition; ('$(TargetPlatformVersion)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) and ('$(Language)' != 'C++' or '$(_EnablePackageReferencesInVCProjects)' == 'true')) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True and ('C#' != 'C++' or '' == 'true')).
dotnet/roslyn#41 4.900        Target "ApplyImplicitVersions" skipped, due to false condition; ('@(PackageReference)' != '') was evaluated as ('' != '').
dotnet/roslyn#41 4.902      1>Target "_ComputeToolPackInputsToProcessFrameworkReferences" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Publish.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "ProcessFrameworkReferences" depends on it):
dotnet/roslyn#41 4.902      1>Done building target "_ComputeToolPackInputsToProcessFrameworkReferences" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.902      1>Target "ProcessFrameworkReferences" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FrameworkReferenceResolution.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CollectPackageReferences" depends on it):
dotnet/roslyn#41 4.902        Using "CheckForDuplicateFrameworkReferences" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.902        Task "CheckForDuplicateFrameworkReferences"
dotnet/roslyn#41 4.902        Done executing task "CheckForDuplicateFrameworkReferences".
dotnet/roslyn#41 4.903        Using "ProcessFrameworkReferences" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.903        Task "ProcessFrameworkReferences"
dotnet/roslyn#41 4.923        Done executing task "ProcessFrameworkReferences".
dotnet/roslyn#41 4.924        Using "ResolveAppHosts" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.924        Task "ResolveAppHosts"
dotnet/roslyn#41 4.924        Done executing task "ResolveAppHosts".
dotnet/roslyn#41 4.924      1>Done building target "ProcessFrameworkReferences" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.924        Target "IncludeTargetingPackReference" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(AutomaticallyUseReferenceAssemblyPackages)' == 'true') was evaluated as ('.NETCoreApp,Version=v8.0' != '' and '.NETCoreApp' == '.NETFramework' and 'true' == 'true').
dotnet/roslyn#41 4.924      1>Target "_AddMicrosoftNetCompilerToolsetFrameworkPackage" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CollectPackageReferences" depends on it):
dotnet/roslyn#41 4.924        Task "NETSdkWarning" skipped, due to false condition; ('@(PackageReference->AnyHaveMetadataValue('Identity', 'Microsoft.Net.Compilers.Toolset.Framework'))' == 'true') was evaluated as ('false' == 'true').
dotnet/roslyn#41 4.924      1>Done building target "_AddMicrosoftNetCompilerToolsetFrameworkPackage" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.924      1>Target "_CheckForObsoleteDotNetCliToolReferences" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ObsoleteReferences.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CollectPackageReferences" depends on it):
dotnet/roslyn#41 4.924        Task "NETSdkWarning" skipped, due to false condition; ( '%(_ReferenceToObsoleteDotNetCliTool.Identity)' != '' ) was evaluated as ( '' != '' ).
dotnet/roslyn#41 4.924      1>Done building target "_CheckForObsoleteDotNetCliToolReferences" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.926      1>Target "CollectPackageReferences" in file "/usr/share/dotnet/sdk/8.0.202/NuGet.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_GetRestoreProjectStyle" depends on it):
dotnet/roslyn#41 4.926        Assembly loaded during TaskRun: NuGet.Build.Tasks, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll, MVID: 33b09c1e-6894-4d4a-9d18-cd7327cfe6c1, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll)
dotnet/roslyn#41 4.927        Assembly loaded during TaskRun: NuGet.Common, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/NuGet.Common.dll, MVID: a262e05f-083e-411d-a1c4-2e6195b1b293, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll)
dotnet/roslyn#41 4.927        Assembly loaded during TaskRun: NuGet.Commands, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/NuGet.Commands.dll, MVID: eb7233f2-5f7b-4bae-8a19-18a3018b35b1, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll)
dotnet/roslyn#41 4.928        Assembly loaded during TaskRun: NuGet.ProjectModel, Version=6.9.1.3, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (location: /usr/share/dotnet/sdk/8.0.202/NuGet.ProjectModel.dll, MVID: 551473ad-ea1f-4bb7-ad0a-7d1551ab44c2, AssemblyLoadContext: MSBuild plugin /usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll)
dotnet/roslyn#41 4.928        Using "CheckForDuplicateNuGetItemsTask" task from assembly "/usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll".
dotnet/roslyn#41 4.928        Task "CheckForDuplicateNuGetItemsTask"
dotnet/roslyn#41 4.928        Done executing task "CheckForDuplicateNuGetItemsTask".
dotnet/roslyn#41 4.928      1>Done building target "CollectPackageReferences" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.929      1>Target "_GetRestoreProjectStyle" in file "/usr/share/dotnet/sdk/8.0.202/NuGet.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "EnableIntermediateOutputPathMismatchWarning" depends on it):
dotnet/roslyn#41 4.929        Using "GetRestoreProjectStyleTask" task from assembly "/usr/share/dotnet/sdk/8.0.202/NuGet.Build.Tasks.dll".
dotnet/roslyn#41 4.929        Task "GetRestoreProjectStyleTask"
dotnet/roslyn#41 4.930        Done executing task "GetRestoreProjectStyleTask".
dotnet/roslyn#41 4.930      1>Done building target "_GetRestoreProjectStyle" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.930      1>Target "EnableIntermediateOutputPathMismatchWarning" in file "/usr/share/dotnet/sdk/8.0.202/NuGet.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.930      1>Done building target "EnableIntermediateOutputPathMismatchWarning" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.930        Target "ApplyImplicitVersions" skipped, due to false condition; ('@(PackageReference)' != '') was evaluated as ('' != '').
dotnet/roslyn#41 4.930        Target "CheckForImplicitPackageReferenceOverrides" skipped. Previously built successfully.
dotnet/roslyn#41 4.930      1>Target "CheckForDuplicateItems" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.Shared.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CheckForInvalidConfigurationAndPlatform" depends on it):
dotnet/roslyn#41 4.930        Using "CheckForDuplicateItems" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.930        Task "CheckForDuplicateItems"
dotnet/roslyn#41 4.930        Done executing task "CheckForDuplicateItems".
dotnet/roslyn#41 4.930        Task "CheckForDuplicateItems"
dotnet/roslyn#41 4.931        Done executing task "CheckForDuplicateItems".
dotnet/roslyn#41 4.931        Task "CheckForDuplicateItems"
dotnet/roslyn#41 4.931        Done executing task "CheckForDuplicateItems".
dotnet/roslyn#41 4.931      1>Done building target "CheckForDuplicateItems" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.931        Target "WarnForExplicitVersions" skipped, due to false condition; ('@(SdkBuildWarning)' != '') was evaluated as ('' != '').
dotnet/roslyn#41 4.931        Target "_CheckForFailedSDKResolution" skipped, due to false condition; ('$(SdkResolverHonoredGlobalJson)' == 'false') was evaluated as ('' == 'false').
dotnet/roslyn#41 4.931        Target "_WarnWhenUsingNET8AndVSPriorTo178" skipped, due to false condition; ($([MSBuild]::VersionLessThan($(MSBuildVersion), '17.8.0')) and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(_TargetFrameworkVersionWithoutV), '8.0'))) was evaluated as (False and '.NETCoreApp' == '.NETCoreApp' and True).
dotnet/roslyn#41 4.931        Target "_CheckForInvalidWindowsDesktopTargetingConfiguration" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(_TargetFrameworkVersionWithoutV), '5.0')) and ('$(UseWindowsForms)' == 'true' or '$(UseWPF)' == 'true')) was evaluated as ('.NETCoreApp' == '.NETCoreApp' and True and ('' == 'true' or '' == 'true')).
dotnet/roslyn#41 4.931        Target "_CheckForUnnecessaryWindowsDesktopSDK" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(_TargetFrameworkVersionWithoutV), '5.0')) and '$(_MicrosoftWindowsDesktopSdkImported)' == 'true' and '$(TargetFrameworks)' == '') was evaluated as ('.NETCoreApp' == '.NETCoreApp' and True and '' == 'true' and 'net8.0' == '').
dotnet/roslyn#41 4.931        Target "ProcessFrameworkReferences" skipped. Previously built successfully.
dotnet/roslyn#41 4.931        Target "IncludeTargetingPackReference" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(AutomaticallyUseReferenceAssemblyPackages)' == 'true') was evaluated as ('.NETCoreApp,Version=v8.0' != '' and '.NETCoreApp' == '.NETFramework' and 'true' == 'true').
dotnet/roslyn#41 4.931      1>Target "_CheckForInvalidConfigurationAndPlatform" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "BeforeBuild" depends on it):
dotnet/roslyn#41 4.931        Task "Error" skipped, due to false condition; ( '$(_InvalidConfigurationError)' == 'true' ) was evaluated as ( '' == 'true' ).
dotnet/roslyn#41 4.931        Task "Warning" skipped, due to false condition; ( '$(_InvalidConfigurationWarning)' == 'true' ) was evaluated as ( '' == 'true' ).
dotnet/roslyn#41 4.932        Using "Message" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.932        Task "Message"
dotnet/roslyn#41 4.933          Configuration=Release
dotnet/roslyn#41 4.933        Done executing task "Message".
dotnet/roslyn#41 4.933        Task "Message"
dotnet/roslyn#41 4.933          Platform=AnyCPU
dotnet/roslyn#41 4.933        Done executing task "Message".
dotnet/roslyn#41 4.933        Task "Error" skipped, due to false condition; ('$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')) was evaluated as ('bin\Release/net8.0/linux-x64/' != '' and !HasTrailingSlash('bin\Release/net8.0/linux-x64/')).
dotnet/roslyn#41 4.933        Task "Error" skipped, due to false condition; ('$(IntermediateOutputPath)' != '' and !HasTrailingSlash('$(IntermediateOutputPath)')) was evaluated as ('obj/Release/net8.0/linux-x64/' != '' and !HasTrailingSlash('obj/Release/net8.0/linux-x64/')).
dotnet/roslyn#41 4.933        Task "Error" skipped, due to false condition; ('$(BaseIntermediateOutputPath)' != '' and !HasTrailingSlash('$(BaseIntermediateOutputPath)')) was evaluated as ('obj/' != '' and !HasTrailingSlash('obj/')).
dotnet/roslyn#41 4.933        Task "Error" skipped, due to false condition; ( '$(_InitialMSBuildProjectExtensionsPath)' != '' And '$(MSBuildProjectExtensionsPath)' != '$(_InitialMSBuildProjectExtensionsPath)' ) was evaluated as ( '/opt/neo-modules/src/ApplicationLogs/obj/' != '' And '/opt/neo-modules/src/ApplicationLogs/obj/' != '/opt/neo-modules/src/ApplicationLogs/obj/' ).
dotnet/roslyn#41 4.933        Task "Warning" skipped, due to false condition; ( '$(EnableBaseIntermediateOutputPathMismatchWarning)' == 'true' And '$(_InitialBaseIntermediateOutputPath)' != '$(BaseIntermediateOutputPath)' And '$(BaseIntermediateOutputPath)' != '$(MSBuildProjectExtensionsPath)' ) was evaluated as ( 'true' == 'true' And 'obj/' != 'obj/' And 'obj/' != '/opt/neo-modules/src/ApplicationLogs/obj/' ).
dotnet/roslyn#41 4.933      1>Done building target "_CheckForInvalidConfigurationAndPlatform" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.933      1>Target "ValidateCommandLineProperties" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "BeforeBuild" depends on it):
dotnet/roslyn#41 4.933      1>Done building target "ValidateCommandLineProperties" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.933      1>Target "BeforeBuild" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "Build" depends on it):
dotnet/roslyn#41 4.933      1>Done building target "BeforeBuild" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.933        Target "_CheckForBuildWithNoBuild" skipped, due to false condition; ('$(NoBuild)' == 'true' and '$(GeneratePackageOnBuild)' != 'true') was evaluated as ('' == 'true' and 'false' != 'true').
dotnet/roslyn#41 4.933      1>Target "BuildOnlySettings" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CoreBuild" depends on it):
dotnet/roslyn#41 4.933      1>Done building target "BuildOnlySettings" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.933        Target "_CheckForUnsupportedTargetFramework" skipped, due to false condition; ('$(_UnsupportedTargetFrameworkError)' == 'true') was evaluated as ('' == 'true').
dotnet/roslyn#41 4.933        Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) And ('$(DesignTimeBuild)' != 'true' Or '@(MissingWorkloadPack)' == '')) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True And ('' != 'true' Or '' == '')).
dotnet/roslyn#41 4.933        Target "_CheckForMissingWorkload" skipped, due to false condition; ('@(MissingWorkloadPack)' != '' And '$(DesignTimeBuild)' != 'true') was evaluated as ('' != '' And '' != 'true').
dotnet/roslyn#41 4.933      1>Target "GetFrameworkPaths" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DisableStandardFrameworkResolution.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "PrepareForBuild" depends on it):
dotnet/roslyn#41 4.933      1>Done building target "GetFrameworkPaths" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.933        Target "_CheckForUnsupportedTargetFramework" skipped, due to false condition; ('$(_UnsupportedTargetFrameworkError)' == 'true') was evaluated as ('' == 'true').
dotnet/roslyn#41 4.933        Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) And ('$(DesignTimeBuild)' != 'true' Or '@(MissingWorkloadPack)' == '')) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True And ('' != 'true' Or '' == '')).
dotnet/roslyn#41 4.933        Target "_CheckForMissingWorkload" skipped, due to false condition; ('@(MissingWorkloadPack)' != '' And '$(DesignTimeBuild)' != 'true') was evaluated as ('' != '' And '' != 'true').
dotnet/roslyn#41 4.933      1>Target "GetReferenceAssemblyPaths" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DisableStandardFrameworkResolution.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "PrepareForBuild" depends on it):
dotnet/roslyn#41 4.933      1>Done building target "GetReferenceAssemblyPaths" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.933        Target "AssignLinkMetadata" skipped, due to false condition; ( '$(SynthesizeLinkMetadata)' == 'true' ) was evaluated as ( '' == 'true' ).
dotnet/roslyn#41 4.933        Target "_VerifyPackReleaseConfigurations" skipped, due to false condition; ('$(_IsPacking)' == 'true' and '$(DOTNET_CLI_DISABLE_PUBLISH_AND_PACK_RELEASE)' != 'true' and '$(DOTNET_CLI_LAZY_PUBLISH_AND_PACK_RELEASE_FOR_SOLUTIONS)' == 'true') was evaluated as ('' == 'true' and 'true' != 'true' and '' == 'true').
dotnet/roslyn#41 4.934      1>Target "PrepareForBuild" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CoreBuild" depends on it):
dotnet/roslyn#41 4.934        Using "FindAppConfigFile" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.934        Task "FindAppConfigFile"
dotnet/roslyn#41 4.934        Done executing task "FindAppConfigFile".
dotnet/roslyn#41 4.934        Using "MakeDir" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.934        Task "MakeDir"
dotnet/roslyn#41 4.936          Creating directory "bin/Release/net8.0/linux-x64/".
dotnet/roslyn#41 4.936          Creating directory "obj/Release/net8.0/linux-x64/".
dotnet/roslyn#41 4.936          Creating directory "/opt/neo-modules/src/ApplicationLogs/obj/Release/net8.0/linux-x64/refint/".
dotnet/roslyn#41 4.936          Creating directory "obj/Release/net8.0/linux-x64/ref".
dotnet/roslyn#41 4.936        Done executing task "MakeDir".
dotnet/roslyn#41 4.936      1>Done building target "PrepareForBuild" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.936      1>Target "GenerateGlobalUsings" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.GenerateGlobalUsings.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CoreBuild" depends on it):
dotnet/roslyn#41 4.936        Using "GenerateGlobalUsings" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.936        Task "GenerateGlobalUsings"
dotnet/roslyn#41 4.940        Done executing task "GenerateGlobalUsings".
dotnet/roslyn#41 4.940        Using "WriteLinesToFile" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.940        Task "WriteLinesToFile"
dotnet/roslyn#41 4.940        Done executing task "WriteLinesToFile".
dotnet/roslyn#41 4.940      1>Done building target "GenerateGlobalUsings" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.940        Target "PreBuildEvent" skipped, due to false condition; ('$(PreBuildEvent)'!='') was evaluated as (''!='').
dotnet/roslyn#41 4.941      1>Target "BeforeResolveReferences" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "ResolveReferences" depends on it):
dotnet/roslyn#41 4.941      1>Done building target "BeforeResolveReferences" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.941      1>Target "IgnoreJavaScriptOutputAssembly" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "AssignProjectConfiguration" depends on it):
dotnet/roslyn#41 4.941      1>Done building target "IgnoreJavaScriptOutputAssembly" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.941        Target "ProcessFrameworkReferences" skipped. Previously built successfully.
dotnet/roslyn#41 4.941      1>Target "_DefaultMicrosoftNETPlatformLibrary" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.Shared.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "ResolvePackageAssets" depends on it):
dotnet/roslyn#41 4.941      1>Done building target "_DefaultMicrosoftNETPlatformLibrary" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.941      1>Target "_ComputePackageReferencePublish" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.Shared.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "ResolvePackageAssets" depends on it):
dotnet/roslyn#41 4.941      1>Done building target "_ComputePackageReferencePublish" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.941        Target "_ResolveCompilerVersion" skipped, due to false condition; ('$(CompilerApiVersion)' == '' And
dotnet/roslyn#41 4.941                             ('$(Language)' == 'C#' Or '$(Language)' == 'VB') And
dotnet/roslyn#41 4.941                             Exists('$(RoslynTargetsPath)\Microsoft.Build.Tasks.CodeAnalysis.dll')) was evaluated as ('roslyn4.9' == '' And
dotnet/roslyn#41 4.941                             ('C#' == 'C#' Or 'C#' == 'VB') And
dotnet/roslyn#41 4.941                             Exists('/usr/share/dotnet/sdk/8.0.202/Roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll')).
dotnet/roslyn#41 4.941      1>Target "ResolvePackageAssets" in file "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "ResolveLockFileReferences" depends on it):
dotnet/roslyn#41 4.941        Using "ResolvePackageAssets" task from assembly "/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/../tools/net8.0/Microsoft.NET.Build.Tasks.dll".
dotnet/roslyn#41 4.941        Task "ResolvePackageAssets"
dotnet/roslyn#41 4.969      1>/usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets(266,5): error NETSDK1047: Assets file '/opt/neo-modules/src/ApplicationLogs/obj/project.assets.json' doesn't have a target for 'net8.0/linux-x64'. Ensure that restore has run and that you have included 'net8.0' in the TargetFrameworks for your project. You may also need to include 'linux-x64' in your project's RuntimeIdentifiers. [/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 4.969        Done executing task "ResolvePackageAssets" -- FAILED.
dotnet/roslyn#41 4.969      1>Done building target "ResolvePackageAssets" in project "ApplicationLogs.csproj" -- FAILED.
dotnet/roslyn#41 4.969      1>Target "_CheckForCompileOutputs" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CleanGetCurrentAndPriorFileWrites" depends on it):
dotnet/roslyn#41 4.969      1>Done building target "_CheckForCompileOutputs" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.969        Target "_SGenCheckForOutputs" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Auto' == 'On' or (''!='' and 'Auto' == 'Auto')).
dotnet/roslyn#41 4.969      1>Target "_CleanGetCurrentAndPriorFileWrites" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "_CleanRecordFileWrites" depends on it):
dotnet/roslyn#41 4.969        Using "ReadLinesFromFile" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.969        Task "ReadLinesFromFile"
dotnet/roslyn#41 4.969        Done executing task "ReadLinesFromFile".
dotnet/roslyn#41 4.970        Using "ConvertToAbsolutePath" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.970        Task "ConvertToAbsolutePath"
dotnet/roslyn#41 4.970        Done executing task "ConvertToAbsolutePath".
dotnet/roslyn#41 4.970        Using "FindUnderPath" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.970        Task "FindUnderPath"
dotnet/roslyn#41 4.970          Comparison path is "/opt/neo-modules/src/ApplicationLogs".
dotnet/roslyn#41 4.970        Done executing task "FindUnderPath".
dotnet/roslyn#41 4.970        Task "FindUnderPath"
dotnet/roslyn#41 4.970          Comparison path is "bin/Release/net8.0/linux-x64/".
dotnet/roslyn#41 4.971        Done executing task "FindUnderPath".
dotnet/roslyn#41 4.971        Task "FindUnderPath"
dotnet/roslyn#41 4.971          Comparison path is "obj/Release/net8.0/linux-x64/".
dotnet/roslyn#41 4.971        Done executing task "FindUnderPath".
dotnet/roslyn#41 4.971        Using "RemoveDuplicates" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
dotnet/roslyn#41 4.971        Task "RemoveDuplicates"
dotnet/roslyn#41 4.971        Done executing task "RemoveDuplicates".
dotnet/roslyn#41 4.971      1>Done building target "_CleanGetCurrentAndPriorFileWrites" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.971      1>Target "_CleanRecordFileWrites" in file "/usr/share/dotnet/sdk/8.0.202/Microsoft.Common.CurrentVersion.targets" from project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (target "CoreBuild" depends on it):
dotnet/roslyn#41 4.971        Task "RemoveDuplicates"
dotnet/roslyn#41 4.971        Done executing task "RemoveDuplicates".
dotnet/roslyn#41 4.971        Task "MakeDir"
dotnet/roslyn#41 4.971        Done executing task "MakeDir".
dotnet/roslyn#41 4.972        Task "WriteLinesToFile"
dotnet/roslyn#41 4.972        Done executing task "WriteLinesToFile".
dotnet/roslyn#41 4.972      1>Done building target "_CleanRecordFileWrites" in project "ApplicationLogs.csproj".
dotnet/roslyn#41 4.973      1>Done Building Project "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (Publish target(s)) -- FAILED.
dotnet/roslyn#41 4.975 
dotnet/roslyn#41 4.975 Build FAILED.
dotnet/roslyn#41 4.975 
dotnet/roslyn#41 4.975        "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (Publish target) (1) ->
dotnet/roslyn#41 4.975        (ResolvePackageAssets target) -> 
dotnet/roslyn#41 4.975          /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets(266,5): error NETSDK1047: Assets file '/opt/neo-modules/src/ApplicationLogs/obj/project.assets.json' doesn't have a target for 'net8.0/linux-x64'. Ensure that restore has run and that you have included 'net8.0' in the TargetFrameworks for your project. You may also need to include 'linux-x64' in your project's RuntimeIdentifiers. [/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 4.975 
dotnet/roslyn#41 4.975     0 Warning(s)
dotnet/roslyn#41 4.975     1 Error(s)
dotnet/roslyn#41 4.976 
dotnet/roslyn#41 4.976 Time Elapsed 00:00:00.26
dotnet publish -c Release -f net8.0 --no-restore --verbosity detailed -o app

dotnet/roslyn#41 8.459        "/opt/neo-modules/src/ApplicationLogs/ApplicationLogs.csproj" (Publish target) (1) ->
dotnet/roslyn#41 8.459        "/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj" (default target) (8:4) ->
dotnet/roslyn#41 8.459          /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018: The "GenerateDepsFile" task failed unexpectedly. [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018: System.IO.IOException: The process cannot access the file '/opt/neo-modules/neo/src/Neo.VM/bin/Release/net8.0/Neo.VM.deps.json' because it is being used by another process. [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at Microsoft.Win32.SafeHandles.SafeFileHandle.Init(String path, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize, Int64& fileLength, UnixFileMode& filePermissions) [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at Microsoft.Win32.SafeHandles.SafeFileHandle.Open(String fullPath, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize, UnixFileMode openPermissions, Int64& fileLength, UnixFileMode& filePermissions, Boolean failForSymlink, Boolean& wasSymlink, Func`4 createOpenException) [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at System.IO.Strategies.OSFileStreamStrategy..ctor(String path, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize, Nullable`1 unixCreateMode) [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at System.IO.File.Create(String path) [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at Microsoft.NET.Build.Tasks.GenerateDepsFile.WriteDepsFile(String depsFilePath) [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at Microsoft.NET.Build.Tasks.TaskBase.Execute() [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute() [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 8.459        /usr/share/dotnet/sdk/8.0.202/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(284,5): error MSB4018:    at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExecutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost taskHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask) [/opt/neo-modules/neo/src/Neo.VM/Neo.VM.csproj::TargetFramework=net8.0]
dotnet/roslyn#41 40.67 GREP DOTNET PROCESS BEFORE SHUTDOWN
dotnet/roslyn#41 40.67 root        2067 18.9  0.7 274686940 127932 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2068 23.2  0.8 274763064 135360 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2069 19.1  0.7 274686940 126824 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2070 19.0  0.7 274686940 127372 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2071 20.0  0.7 274687156 127272 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2142 23.0  0.8 274910132 136840 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2174 19.5  0.8 274549540 133080 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2205 18.6  0.8 274762812 133476 ?    Sl   10:07   0:02 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2272 50.6  1.4 276109456 233960 ?    Sl   10:07   0:05 /usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/8.0.203/Roslyn/bincore/VBCSCompiler.dll -pipename:WLp+sSbpON2JIRtcSHdmWH_+0+3a6gQMMayViH7glhE
dotnet/roslyn#41 40.67 root        2371 17.5  0.7 274549488 126496 ?    Sl   10:07   0:01 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2384 17.3  0.7 274549292 126460 ?    Sl   10:07   0:01 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2410 10.5  0.7 274762852 122716 ?    Sl   10:07   0:00 /usr/share/dotnet/dotnet /usr/share/dotnet/sdk/8.0.203/MSBuild.dll /nologo /nodemode:1 /nodeReuse:true /low:false
dotnet/roslyn#41 40.67 root        2530  0.0  0.0   3472  1664 ?        S    10:07   0:00 grep dotnet
dotnet/roslyn#41 40.67 
dotnet/roslyn#41 40.67 GOING build-server shutdown OracleService...
dotnet/roslyn#41 40.77 Shutting down MSBuild server...
dotnet/roslyn#41 40.77 Shutting down VB/C# compiler server...
dotnet/roslyn#41 40.87 VB/C# compiler server shut down successfully.
dotnet/roslyn#41 41.00 MSBuild server shut down successfully.
dotnet/roslyn#41 41.01 
dotnet/roslyn#41 41.01 GREP DOTNET PROCESS AFTER SHUTDOWN
dotnet/roslyn#41 41.01 root        2596  0.0  0.0   3472  1792 ?        S    10:07   0:00 grep dotnet
dotnet/roslyn#41 41.01 
marcpopMSFT commented 4 months ago

Triage: server shutdown is the right path for now. There's discussion of adding a single use mode for the build that does the shutdown automatically. @dotnet/kitten is there any other suggestions here around node reuse they should try.

BTW, please attach a binlog in the future rather than the build output as it's easier to read and search for us.

vncoelho commented 4 months ago

If I can help with anything, let me know.

The scenario is getting more difficult to reproduce from my side because we migrated two repositories into a monorepo. Anyway, fell free to proceed as you want with this issue.