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.71k stars 1.06k forks source link

Unable to rebuild deps.json if reference project rebuilt #23678

Open manojsitapara opened 2 years ago

manojsitapara commented 2 years ago

Let's say I have project A (exe), B(dll), C(dll) & D(dll)

A depends on B - A and B are in the same solution C depends on B (A loads C dynamically) - C is in a separate solution D depends on B (A loads D dynamically) - D is in a separate solution

There were code changes in B & C. therefore A.exe got rebuilt B.dll got rebuilt C.dll got rebuilt (deps.json got rebuilt) D.dll got rebuilt (deps.json did not get rebuilt, note: .csproj.AssemblyReference.cache is missing in obj/release folder)

Why deps.json didn't rebuilt for D.dll?
Also can you please explain what is the purpose of AssemblyReference.cache in obj/release folder and why it is missing for project D?

manojsitapara commented 2 years ago

@dsplaisted is there any update?

dsplaisted commented 2 years ago

How are the projects depending on projects outside of the solution? Is it a DLL reference, a ProjectReference, or what? How are you building (from command line, or Visual Studio, etc).

The best way for us to investigate this would be if you can provide a repro project, or a binlog of the build.

The AssemblyReference.cache file is used to speed up the ResolveAssemblyReference task, my guess is that it didn't get written for D because D wasn't fully built.

manojsitapara commented 2 years ago

How are the projects depending on projects outside of the solution?

Project A: MyCompEngine (exe), Project B: MyCompCore (dll) - both are part of the same solution

Is it a DLL reference, a ProjectReference, or what?

Project D: MyCompMyClient2 (dll) which depends on Project B (via dll reference) - its in a separate solution , (Project A loads Project D dynamically)

How are you building (from command line, or Visual Studio, etc).

Building using MSBuild command line

The best way for us to investigate this would be if you can provide a repro project, or a binlog of the build.

Log detail


dotnet restore H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2.sln
  Determining projects to restore...
  All projects are up to date for restore.
Global Properties:
  CustomAfterMicrosoftCommonTargets=H:\US_MyComp\msbuild\MSBuild_XO\20211028\bin\\MyComp.MyApp.Assembly.Version.Targets
  Configuration=Release
Building with tools version "Current".
Target ValidateSolutionConfiguration has been started
Task "Error" skipped, due to false condition; (('$(CurrentSolutionConfigurationContents)' == '') and ('$(SkipInvalidConfigurations)' != 'true')) was evaluated as (('<SolutionConfiguration>
  <ProjectConfiguration Project="{79FF0F39 CE7D 47F9 98B7 627E01BF852F}" AbsolutePath="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\MyCompMyClient2.csproj" BuildProjectInSolution="True">Release|AnyCPU</ProjectConfiguration>
</SolutionConfiguration>' == '') and ('' != 'true')).
Task "Warning" skipped, due to false condition; (('$(CurrentSolutionConfigurationContents)' == '') and ('$(SkipInvalidConfigurations)' == 'true')) was evaluated as (('<SolutionConfiguration>
  <ProjectConfiguration Project="{79FF0F39 CE7D 47F9 98B7 627E01BF852F}" AbsolutePath="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\MyCompMyClient2.csproj" BuildProjectInSolution="True">Release|AnyCPU</ProjectConfiguration>
</SolutionConfiguration>' == '') and ('' == 'true')).
Using "Message" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Building solution configuration "Release|Any CPU".
Target ValidateSolutionConfiguration has been completed
Target ValidateToolsVersions has been started
Task "Error" skipped, due to false condition; ('$(MSBuildToolsVersion)' == '2.0' and ('$(ProjectToolsVersion)' != '2.0' and '$(ProjectToolsVersion)' != '')) was evaluated as ('Current' == '2.0' and ('' != '2.0' and '' != '')).
Target ValidateToolsVersions has been completed
Target ValidateProjects has been started
Target ValidateProjects has been completed
Target Build has been started
Using "MSBuild" task from assembly "Microsoft.Build.Tasks.Core, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Global Properties:
  BuildingSolutionFile=true
  CurrentSolutionConfigurationContents=<SolutionConfiguration>
  <ProjectConfiguration Project="{79FF0F39 CE7D 47F9 98B7 627E01BF852F}" AbsolutePath="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\MyCompMyClient2.csproj" BuildProjectInSolution="True">Release|AnyCPU</ProjectConfiguration>
</SolutionConfiguration>
  SolutionDir=H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\
  SolutionExt=.sln
  SolutionFileName=MyCompMyClient2.sln
  SolutionName=MyCompMyClient2
  SolutionPath=H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2.sln
Additional Properties for project "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\MyCompMyClient2.csproj":
  Configuration=Release
  Platform=AnyCPU
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Trying to import C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\$(MSBuildToolsVersion)\Microsoft.Common.props using extensions path C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild
Property reassignment: $(MSBuildProjectExtensionsPath)="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\" (previous value: "obj\") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Microsoft.Common.props (57,5)
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Trying to import C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\$(MSBuildToolsVersion)\Imports\Microsoft.Common.props\ImportBefore\* using extensions path C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
The "Configuration" property is a global property, and cannot be modified.
The "Platform" property is a global property, and cannot be modified.
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
The "Configuration" property is a global property, and cannot be modified.
The "Platform" property is a global property, and cannot be modified.
Property reassignment: $(TargetsForTfmSpecificContentInPackage)=";PackTool;_PackProjectToolValidation" (previous value: ";PackTool") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.PackProjectTool.props (15,5)
Property reassignment: $(RootNamespace)="MyComp.MyClient2" (previous value: "MyCompMyClient2") at H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\MyCompMyClient2.csproj (5,5)
The "Configuration" property is a global property, and cannot be modified.
The "Platform" property is a global property, and cannot be modified.
Property reassignment: $(OutputPath)="bin\Release\" (previous value: "") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.DefaultOutputPaths.targets (33,5)
Property reassignment: $(PublishProfileImported)="false" (previous value: "true") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.ImportPublishProfile.targets (28,5)
Property reassignment: $(TargetPlatformVersion)="" (previous value: "0.0") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.TargetFrameworkInference.targets (65,5)
Property reassignment: $(DefaultItemExcludes)=";bin\Release\/**;obj\Release\/**" (previous value: ";bin\Release\/**") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.TargetFrameworkInference.targets (223,5)
Property reassignment: $(_FrameworkIdentifierForImplicitDefine)="NET" (previous value: "NETCOREAPP") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.BeforeCommon.targets (177,5)
Property reassignment: $(_FrameworkVersionForImplicitDefine)="5_0" (previous value: "5.0") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.BeforeCommon.targets (182,5)
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
The "CustomAfterMicrosoftCommonTargets" property is a global property, and cannot be modified.
The "Platform" property is a global property, and cannot be modified.
The "Configuration" property is a global property, and cannot be modified.
Property reassignment: $(_DebugSymbolsProduced)="true" (previous value: "false") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets (180,5)
Property reassignment: $(_DocumentationFileProduced)="false" (previous value: "true") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets (186,5)
The "SolutionName" property is a global property, and cannot be modified.
The "SolutionFileName" property is a global property, and cannot be modified.
The "SolutionPath" property is a global property, and cannot be modified.
The "SolutionDir" property is a global property, and cannot be modified.
The "SolutionExt" property is a global property, and cannot be modified.
Property reassignment: $(ProcessorArchitecture)="amd64" (previous value: "x64") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets (506,5)
Property reassignment: $(DelaySign)="" (previous value: "false") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets (558,5)
Property reassignment: $(_SGenGenerateSerializationAssembliesConfig)="Auto" (previous value: "") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets (3612,5)
Property reassignment: $(_TargetsThatPrepareProjectReferences)="
      AssignProjectConfiguration;
      _SplitProjectReferencesByFileExistence
    " (previous value: "_SplitProjectReferencesByFileExistence") at C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets (4743,5)
Property reassignment: $(PrepareResourcesDependsOn)="
      XamlMarkupCompilePass1;
      XamlMarkupCompilePass2;

      ;
      PrepareResourceNames;
      ResGen;
      CompileLicxFiles

    " (previous value: "
      ;
      PrepareResourceNames;
      ResGen;
      CompileLicxFiles
    ") at C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Xaml.targets (35,5)
Property reassignment: $(PrepareResourcesDependsOn)="
      ValidationExtension;
      ExpressionBuildExtension;

      XamlMarkupCompilePass1;
      XamlMarkupCompilePass2;

      ;
      PrepareResourceNames;
      ResGen;
      CompileLicxFiles

    " (previous value: "
      XamlMarkupCompilePass1;
      XamlMarkupCompilePass2;

      ;
      PrepareResourceNames;
      ResGen;
      CompileLicxFiles

    ") at C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WorkflowBuildExtensions.targets (16,5)
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Trying to import C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\$(MSBuildToolsVersion)\Microsoft.Common.targets\ImportAfter\* using extensions path C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild
Search paths being used for $(MSBuildExtensionsPath) are C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild;$(MSBuildProgramFiles32)\MSBuild
Property reassignment: $(ProjectAssetsCacheFile)="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.assets.cache" (previous value: "obj\Release\MyCompMyClient2.assets.cache") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.PackageDependencyResolution.targets (29,5)
Property reassignment: $(ResolveAssemblyReferencesDependsOn)="

      ResolveProjectReferences;
      FindInvalidProjectReferences;
      GetFrameworkPaths;
      GetReferenceAssemblyPaths;
      PrepareForBuild;
      ResolveSDKReferences;
      ExpandSDKReferences;
    ;
      ResolvePackageDependenciesForBuild;
      _HandlePackageFileConflicts;
    " (previous value: "
      ResolveProjectReferences;
      FindInvalidProjectReferences;
      GetFrameworkPaths;
      GetReferenceAssemblyPaths;
      PrepareForBuild;
      ResolveSDKReferences;
      ExpandSDKReferences;
    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.PackageDependencyResolution.targets (71,5)
Property reassignment: $(PrepareResourcesDependsOn)="
      ResolvePackageDependenciesForBuild;
      _HandlePackageFileConflicts;

      ValidationExtension;
      ExpressionBuildExtension;

      XamlMarkupCompilePass1;
      XamlMarkupCompilePass2;

      ;
      PrepareResourceNames;
      ResGen;
      CompileLicxFiles

    " (previous value: "
      ValidationExtension;
      ExpressionBuildExtension;

      XamlMarkupCompilePass1;
      XamlMarkupCompilePass2;

      ;
      PrepareResourceNames;
      ResGen;
      CompileLicxFiles

    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.PackageDependencyResolution.targets (77,5)
Property reassignment: $(DefaultItemExcludes)=";bin\Release\/**;obj\Release\/**;bin\/**" (previous value: ";bin\Release\/**;obj\Release\/**") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.targets (27,5)
Property reassignment: $(DefaultItemExcludes)=";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**" (previous value: ";bin\Release\/**;obj\Release\/**;bin\/**") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.targets (29,5)
Property reassignment: $(DefaultItemExcludes)=";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**;**/*.user" (previous value: ";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.targets (32,5)
Property reassignment: $(DefaultItemExcludes)=";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**;**/*.user;**/*.*proj" (previous value: ";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**;**/*.user") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.targets (33,5)
Property reassignment: $(DefaultItemExcludes)=";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**;**/*.user;**/*.*proj;**/*.sln" (previous value: ";bin\Release\/**;obj\Release\/**;bin\/**;obj\/**;**/*.user;**/*.*proj") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.targets (34,5)
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 C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.targets (35,5)
Property reassignment: $(ResolveAssemblyReferencesDependsOn)="

      ResolveProjectReferences;
      FindInvalidProjectReferences;
      GetFrameworkPaths;
      GetReferenceAssemblyPaths;
      PrepareForBuild;
      ResolveSDKReferences;
      ExpandSDKReferences;
    ;
      ResolvePackageDependenciesForBuild;
      _HandlePackageFileConflicts;
    ;
      ResolveTargetingPackAssets;
    " (previous value: "

      ResolveProjectReferences;
      FindInvalidProjectReferences;
      GetFrameworkPaths;
      GetReferenceAssemblyPaths;
      PrepareForBuild;
      ResolveSDKReferences;
      ExpandSDKReferences;
    ;
      ResolvePackageDependenciesForBuild;
      _HandlePackageFileConflicts;
    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets (14,5)
Property reassignment: $(_GenerateRuntimeConfigurationPropertyInputsCache)="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.genruntimeconfig.cache" (previous value: "obj\Release\MyCompMyClient2.genruntimeconfig.cache") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (39,5)
Property reassignment: $(_DefaultUserProfileRuntimeStorePath)="C:\Users\Administrator" (previous value: "") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (61,5)
Property reassignment: $(_DefaultUserProfileRuntimeStorePath)="C:\Users\Administrator\.dotnet\store" (previous value: "C:\Users\Administrator") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (62,5)
Property reassignment: $(AvailablePlatforms)="Any CPU,x86,x64,ARM32" (previous value: "Any CPU,x86,x64") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (83,5)
Property reassignment: $(AvailablePlatforms)="Any CPU,x86,x64,ARM32,ARM64" (previous value: "Any CPU,x86,x64,ARM32") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (87,5)
Property reassignment: $(CoreBuildDependsOn)="
      _CheckForBuildWithNoBuild;

      BuildOnlySettings;
      PrepareForBuild;
      PreBuildEvent;
      ResolveReferences;
      PrepareResources;
      ResolveKeySource;
      Compile;
      ExportWindowsMDFile;
      UnmanagedUnregistration;
      GenerateSerializationAssemblies;
      CreateSatelliteAssemblies;
      GenerateManifests;
      GetTargetPath;
      PrepareForRun;
      UnmanagedRegistration;
      IncrementalClean;
      PostBuildEvent
    ;
      GenerateBuildDependencyFile;
      GenerateBuildRuntimeConfigurationFiles
    " (previous value: "
      BuildOnlySettings;
      PrepareForBuild;
      PreBuildEvent;
      ResolveReferences;
      PrepareResources;
      ResolveKeySource;
      Compile;
      ExportWindowsMDFile;
      UnmanagedUnregistration;
      GenerateSerializationAssemblies;
      CreateSatelliteAssemblies;
      GenerateManifests;
      GetTargetPath;
      PrepareForRun;
      UnmanagedRegistration;
      IncrementalClean;
      PostBuildEvent
    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (91,5)
Property reassignment: $(CoreCleanDependsOn)="
      _SdkBeforeClean;

    " (previous value: "") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (100,5)
Property reassignment: $(RebuildDependsOn)="
      _SdkBeforeRebuild;

      BeforeRebuild;
      Clean;
      Build;
      AfterRebuild;

    " (previous value: "
      BeforeRebuild;
      Clean;
      Build;
      AfterRebuild;
    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (107,5)
Property reassignment: $(CompileDependsOn)="

      ResolveReferences;
      ResolveKeySource;
      SetWin32ManifestProperties;
      FindReferenceAssembliesForReferences;
      _GenerateCompileInputs;
      BeforeCompile;
      _TimeStampBeforeCompile;
      _GenerateCompileDependencyCache;
      CoreCompile;
      _TimeStampAfterCompile;
      AfterCompile;
    ;
      _CreateAppHost;
      _CreateComHost;
      _GetIjwHostPaths;
    " (previous value: "
      ResolveReferences;
      ResolveKeySource;
      SetWin32ManifestProperties;
      FindReferenceAssembliesForReferences;
      _GenerateCompileInputs;
      BeforeCompile;
      _TimeStampBeforeCompile;
      _GenerateCompileDependencyCache;
      CoreCompile;
      _TimeStampAfterCompile;
      AfterCompile;
    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (436,5)
Property reassignment: $(CreateSatelliteAssembliesDependsOn)="

      _GenerateSatelliteAssemblyInputs;
      ComputeIntermediateSatelliteAssemblies;
      GenerateSatelliteAssemblies
    ;
      CoreGenerateSatelliteAssemblies
    " (previous value: "
      _GenerateSatelliteAssemblyInputs;
      ComputeIntermediateSatelliteAssemblies;
      GenerateSatelliteAssemblies
    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets (817,5)
Property reassignment: $(DesignerRuntimeImplementationProjectOutputGroupDependsOn)="

      ;

      ;
      BuildOnlySettings;
      PrepareForBuild;
      AssignTargetPaths;
      ResolveReferences

    ;
      _GenerateDesignerDepsFile;
      _GenerateDesignerRuntimeConfigFile;
      _GatherDesignerShadowCopyFiles;
    " (previous value: "
      ;

      ;
      BuildOnlySettings;
      PrepareForBuild;
      AssignTargetPaths;
      ResolveReferences

    ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.DesignerSupport.targets (21,5)
Property reassignment: $(PublishReadyToRunComposite)="false" (previous value: "true") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Publish.targets (20,5)
Property reassignment: $(_ShimInputCacheFile)="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.shiminput.cache" (previous value: "obj\Release\MyCompMyClient2.shiminput.cache") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.PackTool.targets (109,5)
Property reassignment: $(_ShimCreatedSentinelFile)="H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.shimcreated.sentinel" (previous value: "obj\Release\MyCompMyClient2.shimcreated.sentinel") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.PackTool.targets (111,5)
Property reassignment: $(DefineConstants)="TRACE;RELEASE" (previous value: "TRACE") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.CSharp.targets (31,5)
Property reassignment: $(DefineConstants)="TRACE;RELEASE;NET;NET5_0;NETCOREAPP" (previous value: "TRACE;RELEASE") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.CSharp.targets (34,5)
Property reassignment: $(WarningLevel)="5" (previous value: "4") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.Analyzers.targets (45,5)
Property reassignment: $(PackageDescription)="Package Description" (previous value: "") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\NuGet.Build.Tasks.Pack\build\NuGet.Build.Tasks.Pack.targets (35,5)
Property reassignment: $(GenerateNuspecDependsOn)="Build;_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; " (previous value: "_LoadPackInputItems; _GetTargetFrameworksOutput; _WalkEachTargetPerFramework; _GetPackageFiles; ") at C:\Program Files\dotnet\sdk\5.0.402\Sdks\NuGet.Build.Tasks.Pack\build\NuGet.Build.Tasks.Pack.targets (59,5)
Overriding target "GenerateCompiledExpressionsTempFile" in project "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.WorkflowBuildExtensions.targets" with target "GenerateCompiledExpressionsTempFile" from project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.WorkflowBuildExtensions.targets".
Overriding target "BeforeCompile" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "BeforeCompile" from project "H:\US_MyComp\msbuild\MSBuild_XO\20211028\bin\MyComp.MyApp.Assembly.Version.Targets".
Overriding target "GetTargetFrameworkProperties" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "GetTargetFrameworkProperties" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.Common.targets".
Overriding target "ResolveFrameworkReferences" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "ResolveFrameworkReferences" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets".
Overriding target "Run" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "Run" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets".
Overriding target "GenerateSupportedTargetFrameworkAlias" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "GenerateSupportedTargetFrameworkAlias" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.targets".
Overriding target "GetReferenceAssemblyPaths" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "GetReferenceAssemblyPaths" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.DisableStandardFrameworkResolution.targets".
Overriding target "GetFrameworkPaths" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "GetFrameworkPaths" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.DisableStandardFrameworkResolution.targets".
Overriding target "DesignerRuntimeImplementationProjectOutputGroup" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "DesignerRuntimeImplementationProjectOutputGroup" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.DesignerSupport.targets".
Overriding target "Publish" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "Publish" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Publish.targets".
Overriding target "GetCopyToPublishDirectoryItems" in project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets" with target "GetCopyToPublishDirectoryItems" from project "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Publish.targets".
Building with tools version "Current".
Target "_CheckForUnsupportedTargetFramework" skipped, due to false condition; ('$(_UnsupportedTargetFrameworkError)' == 'true') was evaluated as ('' == 'true').
Target _CollectTargetFrameworkForTelemetry has been started
Using "AllowEmptyTelemetry" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target _CollectTargetFrameworkForTelemetry has been completed
Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0))) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True).
Target _CheckForUnsupportedNETCoreVersion has been started
Task "NETSdkError" skipped, due to false condition; ('$(_TargetFrameworkVersionWithoutV)' > '$(NETCoreAppMaximumVersion)') was evaluated as ('5.0' > '5.0').
Target _CheckForUnsupportedNETCoreVersion has been completed
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' == 'true').
Target _CheckForUnsupportedCppNETCoreVersion has been started
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 '5.0' < '3.1' and ('C#' == 'C++' and '' != 'true')).
Target _CheckForUnsupportedCppNETCoreVersion has been completed
Target "_CheckForUnsupportedNETStandardVersion" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETStandard' And '$(NETStandardMaximumVersion)' != '') was evaluated as ('.NETCoreApp' == '.NETStandard' And '' != '').
Target "_CheckForUnsupportedTargetFrameworkAndFeatureCombination" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETFramework') was evaluated as ('.NETCoreApp' == '.NETFramework').
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).
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')).
Target "_CheckForUnsupportedAppHostUsage" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' and '$(HasRuntimeOutput)' == 'true') was evaluated as ('.NETCoreApp' == '.NETCoreApp' and '' == 'true').
Target _CheckForUnsupportedHostingUsage has been started
Task "NETSdkWarning" skipped, due to false condition; ('$(SelfContained)' == 'true' and '$(EnableComHosting)' == 'true') was evaluated as ('false' == 'true' and '' == 'true').
Target _CheckForUnsupportedHostingUsage has been completed
Target _CheckForMismatchingPlatform has been started
Task "NETSdkError" skipped, due to false condition; ('$(PlatformTarget)' != 'AnyCPU' and !$(RuntimeIdentifier.ToUpperInvariant().Contains($(PlatformTarget.ToUpperInvariant())))) was evaluated as ('x64' != 'AnyCPU' and !True).
Target _CheckForMismatchingPlatform has been completed
Target _CheckForLanguageAndFeatureCombinationSupport has been started
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').
Task "NETSdkError" skipped, due to false condition; (('$(Language)' == 'C++' and '$(_EnablePackageReferencesInVCProjects)' != 'true') and $(EnableComHosting) == 'true') was evaluated as (('C#' == 'C++' and '' != 'true') and  == 'true').
Task "NETSdkError" skipped, due to false condition; (('$(Language)' == 'C++' and '$(_EnablePackageReferencesInVCProjects)' != 'true') and $(SelfContained) == 'true') was evaluated as (('C#' == 'C++' and '' != 'true') and false == 'true').
Target _CheckForLanguageAndFeatureCombinationSupport has been completed
Target "_CheckForNETCoreSdkIsPreview" skipped, due to false condition; ( '$(_NETCoreSdkIsPreview)' == 'true' AND '$(SuppressNETCoreSdkPreviewMessage)' != 'true' ) was evaluated as ( 'false' == 'true' AND '' != 'true' ).
Target _GetProjectJsonPath has been started
Task "GetRestoreProjectJsonPathTask" skipped, due to false condition; ( '$(RestoreProjectStyle)' == 'ProjectJson' OR '$(RestoreProjectStyle)' == '' ) was evaluated as ( 'PackageReference' == 'ProjectJson' OR 'PackageReference' == '' ).
Target _GetProjectJsonPath has been completed
Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0))) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True).
Target "_CheckForUnsupportedNETStandardVersion" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETStandard' And '$(NETStandardMaximumVersion)' != '') was evaluated as ('.NETCoreApp' == '.NETStandard' And '' != '').
Target "_CheckForUnsupportedTargetFrameworkAndFeatureCombination" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETFramework') was evaluated as ('.NETCoreApp' == '.NETFramework').
Target UpdateAspNetToFrameworkReference has been started
Using "CheckIfPackageReferenceShouldBeFrameworkReference" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Task "NETSdkError" skipped, due to false condition; ('$(_ShouldRemoveAspNetCoreAll)' == 'true') was evaluated as ('False' == 'true').
Task "NETSdkWarning" skipped, due to false condition; ('$(_ShouldRemoveAspNetCoreApp)' == 'true') was evaluated as ('False' == 'true').
Target UpdateAspNetToFrameworkReference has been completed
Target "IncludeTargetingPackReference" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(AutomaticallyUseReferenceAssemblyPackages)' == 'true') was evaluated as ('.NETCoreApp,Version=v5.0' != '' and '.NETCoreApp' == '.NETFramework' and 'true' == 'true').
Target CheckForImplicitPackageReferenceOverrides has been started
Using "CheckForImplicitPackageReferenceOverrides" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target CheckForImplicitPackageReferenceOverrides has been completed
Target ApplyImplicitVersions has been started
Using "ApplyImplicitVersions" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ApplyImplicitVersions has been completed
Target "CheckForImplicitPackageReferenceOverrides" skipped. Previously built successfully.
Target "AddWindowsSdkKnownFrameworkReferences" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' And '$(TargetPlatformIdentifier)' == 'Windows') was evaluated as ('.NETCoreApp' == '.NETCoreApp' And '' == 'Windows').
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')).
Target ProcessFrameworkReferences has been started
Using "CheckForDuplicateFrameworkReferences" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Using "ProcessFrameworkReferences" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Using "ResolveAppHosts" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ProcessFrameworkReferences has been completed
Target "IncludeTargetingPackReference" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(AutomaticallyUseReferenceAssemblyPackages)' == 'true') was evaluated as ('.NETCoreApp,Version=v5.0' != '' and '.NETCoreApp' == '.NETFramework' and 'true' == 'true').
Target _CheckForObsoleteDotNetCliToolReferences has been started
Task "NETSdkWarning" skipped, due to false condition; ( '%(_ReferenceToObsoleteDotNetCliTool.Identity)' != '' ) was evaluated as ( '' != '' ).
Target _CheckForObsoleteDotNetCliToolReferences has been completed
Target CollectPackageReferences has been started
Target CollectPackageReferences has been completed
Target _GetRestoreProjectStyle has been started
Using "GetRestoreProjectStyleTask" task from assembly "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.Build.Tasks.dll".
(in) HasPackageReferenceItems 'True'
(in) MSBuildProjectDirectory 'H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2'
(in) MSBuildProjectName 'MyCompMyClient2'
(in) ProjectJsonPath ''
(in) RestoreProjectStyle 'PackageReference'
(out) IsPackageReferenceCompatibleProjectStyle 'True'
(out) ProjectStyle 'PackageReference'
Target _GetRestoreProjectStyle has been completed
Target EnableIntermediateOutputPathMismatchWarning has been started
Target EnableIntermediateOutputPathMismatchWarning has been completed
Target "ApplyImplicitVersions" skipped. Previously built successfully.
Target "CheckForImplicitPackageReferenceOverrides" skipped. Previously built successfully.
Target CheckForDuplicateItems has been started
Using "CheckForDuplicateItems" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target CheckForDuplicateItems has been completed
Target "WarnForExplicitVersions" skipped, due to false condition; ('@(SdkBuildWarning)' != '') was evaluated as ('' != '').
Target "_CheckForFailedSDKResolution" skipped, due to false condition; ('$(SdkResolverHonoredGlobalJson)' == 'false') was evaluated as ('' == 'false').
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')).
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 '' == '').
Target "ProcessFrameworkReferences" skipped. Previously built successfully.
Target "IncludeTargetingPackReference" skipped, due to false condition; ('$(TargetFrameworkMoniker)' != '' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(AutomaticallyUseReferenceAssemblyPackages)' == 'true') was evaluated as ('.NETCoreApp,Version=v5.0' != '' and '.NETCoreApp' == '.NETFramework' and 'true' == 'true').
Target _CheckForInvalidConfigurationAndPlatform has been started
Task "Error" skipped, due to false condition; ( '$(_InvalidConfigurationError)' == 'true' ) was evaluated as ( '' == 'true' ).
Task "Warning" skipped, due to false condition; ( '$(_InvalidConfigurationWarning)' == 'true' ) was evaluated as ( '' == 'true' ).
Configuration=Release
Platform=AnyCPU
Task "Error" skipped, due to false condition; ('$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')) was evaluated as ('bin\Release\' != '' and !HasTrailingSlash('bin\Release\')).
Task "Error" skipped, due to false condition; ('$(IntermediateOutputPath)' != '' and !HasTrailingSlash('$(IntermediateOutputPath)')) was evaluated as ('obj\Release\' != '' and !HasTrailingSlash('obj\Release\')).
Task "Error" skipped, due to false condition; ('$(BaseIntermediateOutputPath)' != '' and !HasTrailingSlash('$(BaseIntermediateOutputPath)')) was evaluated as ('obj\' != '' and !HasTrailingSlash('obj\')).
Task "Error" skipped, due to false condition; ( '$(_InitialMSBuildProjectExtensionsPath)' != '' And '$(MSBuildProjectExtensionsPath)' != '$(_InitialMSBuildProjectExtensionsPath)' ) was evaluated as ( 'H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\' != '' And 'H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\' != 'H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\' ).
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\' != 'H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\' ).
Target _CheckForInvalidConfigurationAndPlatform has been completed
Target BeforeBuild has been started
Target BeforeBuild has been completed
Target "_CheckForBuildWithNoBuild" skipped, due to false condition; ('$(NoBuild)' == 'true' and '$(GeneratePackageOnBuild)' != 'true') was evaluated as ('' == 'true' and 'false' != 'true').
Target BuildOnlySettings has been started
Target BuildOnlySettings has been completed
Target "_CheckForUnsupportedTargetFramework" skipped, due to false condition; ('$(_UnsupportedTargetFrameworkError)' == 'true') was evaluated as ('' == 'true').
Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0))) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True).
Target GetFrameworkPaths has been started
Target GetFrameworkPaths has been completed
Target "_CheckForUnsupportedTargetFramework" skipped, due to false condition; ('$(_UnsupportedTargetFrameworkError)' == 'true') was evaluated as ('' == 'true').
Target "_CheckForUnsupportedTargetPlatformIdentifier" skipped, due to false condition; ('$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0))) was evaluated as ('' != '' and '.NETCoreApp' == '.NETCoreApp' and True).
Target GetReferenceAssemblyPaths has been started
Target GetReferenceAssemblyPaths has been completed
Target "AssignLinkMetadata" skipped, due to false condition; ( '$(SynthesizeLinkMetadata)' == 'true' ) was evaluated as ( '' == 'true' ).
Target PrepareForBuild has been started
Target PrepareForBuild has been completed
Target "PreBuildEvent" skipped, due to false condition; ('$(PreBuildEvent)'!='') was evaluated as (''!='').
Target PreBuild has been started
rmdir /S/Q  H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2

mkdir H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2
mkdir H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2\config
mkdir H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2\sqls
mkdir H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2\layout
exit 0
Target PreBuild has been completed
Target BeforeResolveReferences has been started
Target BeforeResolveReferences has been completed
Target "ProcessFrameworkReferences" skipped. Previously built successfully.
Target _DefaultMicrosoftNETPlatformLibrary has been started
Target _DefaultMicrosoftNETPlatformLibrary has been completed
Target _ComputePackageReferencePublish has been started
Target _ComputePackageReferencePublish has been completed
Target ResolvePackageAssets has been started
Using "ResolvePackageAssets" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ResolvePackageAssets has been completed
Target "AdjustDefaultPlatformTargetForNetFrameworkExeWithNoNativeCopyLocalItems" skipped, due to false condition; ('$(_UsingDefaultPlatformTarget)' == 'true' and
                     '$(_UsingDefaultRuntimeIdentifier)' == 'true') was evaluated as ('true' == 'true' and
                     '' == 'true').
Target "_CheckForTransitiveWindowsDesktopDependencies" skipped, due to false condition; ('$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(_TargetFrameworkVersionWithoutV), '5.0')) and '$(TargetPlatformIdentifier)' != 'Windows' and '@(TransitiveFrameworkReference)' != '') was evaluated as ('.NETCoreApp' == '.NETCoreApp' and True and '' != 'Windows' and '' != '').
Target "AddTransitiveFrameworkReferences" skipped, due to false condition; ('@(TransitiveFrameworkReference)' != '') was evaluated as ('' != '').
Target ResolveLockFileReferences has been started
Using "JoinItems" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ResolveLockFileReferences has been completed
Target "ResolvePackageAssets" skipped. Previously built successfully.
Target ResolveLockFileAnalyzers has been started
Target ResolveLockFileAnalyzers has been completed
Target "ResolvePackageAssets" skipped. Previously built successfully.
Target "RunProduceContentAssets" skipped, due to false condition; ('@(_ContentFilesToPreprocess)' != '') was evaluated as ('' != '').
Target ResolveLockFileCopyLocalFiles has been started
Target ResolveLockFileCopyLocalFiles has been completed
Target "ResolveRuntimePackAssets" skipped, due to false condition; ('@(RuntimePack)' != '') was evaluated as ('' != '').
Target "RunProduceContentAssets" skipped, due to false condition; ('@(_ContentFilesToPreprocess)' != '') was evaluated as ('' != '').
Target "ResolvePackageAssets" skipped. Previously built successfully.
Target IncludeTransitiveProjectReferences has been started
Target IncludeTransitiveProjectReferences has been completed
Target ResolvePackageDependenciesForBuild has been started
Target ResolvePackageDependenciesForBuild has been completed
Target AssignProjectConfiguration has been started
Target AssignProjectConfiguration has been completed
Target "AssignProjectConfiguration" skipped. Previously built successfully.
Target _SplitProjectReferencesByFileExistence has been started
Task "ResolveNonMSBuildProjectOutput" skipped, due to false condition; ('$(BuildingInsideVisualStudio)'=='true' and '@(ProjectReferenceWithConfiguration)'!='') was evaluated as (''=='true' and ''!='').
Target _SplitProjectReferencesByFileExistence has been completed
Target _AddOutputPathToGlobalPropertiesToRemove has been started
Target _AddOutputPathToGlobalPropertiesToRemove has been completed
Target _GetProjectReferenceTargetFrameworkProperties has been started
Task "GetReferenceNearestTargetFrameworkTask" skipped, due to false condition; ('@(_ProjectReferenceTargetFrameworkPossibilities >Count())' != '0' and '$(ReferringTargetFrameworkForProjectReferences)' != ''
                                                        And '$(GetReferenceNearestTargetFrameworkTaskSupportsTargetPlatformParameter)' == 'true') was evaluated as ('0' != '0' and '.NETCoreApp,Version=v5.0' != ''
                                                        And 'true' == 'true').
Task "GetReferenceNearestTargetFrameworkTask" skipped, due to false condition; ('@(_ProjectReferenceTargetFrameworkPossibilities >Count())' != '0' and '$(ReferringTargetFrameworkForProjectReferences)' != ''
                                                        And '$(GetReferenceNearestTargetFrameworkTaskSupportsTargetPlatformParameter)' != 'true') was evaluated as ('0' != '0' and '.NETCoreApp,Version=v5.0' != ''
                                                        And 'true' != 'true').
Target _GetProjectReferenceTargetFrameworkProperties has been completed
Target ValidateExecutableReferences has been started
Using "ValidateExecutableReferences" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ValidateExecutableReferences has been completed
Target PrepareProjectReferences has been started
Target PrepareProjectReferences has been completed
Target ResolveProjectReferences has been started
Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and ('$(BuildingInsideVisualStudio)' == 'true' or '$(BuildProjectReferences)' != 'true') and '$(VisualStudioVersion)' != '10.0' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and ('' == 'true' or 'true' != 'true') and '16.0' != '10.0' and '' != '').
Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '$(BuildingInsideVisualStudio)' != 'true' and '$(BuildProjectReferences)' == 'true' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and '' != 'true' and 'true' == 'true' and '' != '').
Task "MSBuild" skipped, due to false condition; ('%(_MSBuildProjectReferenceExistent.BuildReference)' == 'true' and '@(ProjectReferenceWithConfiguration)' != '' and '$(BuildingProject)' == 'true' and '@(_MSBuildProjectReferenceExistent)' != '') was evaluated as ('' == 'true' and '' != '' and 'true' == 'true' and '' != '').
Task "Warning" skipped, due to false condition; ('@(ProjectReferenceWithConfiguration)' != '' and '@(_MSBuildProjectReferenceNonexistent)' != '') was evaluated as ('' != '' and '' != '').
Target ResolveProjectReferences has been completed
Target "FindInvalidProjectReferences" skipped, due to false condition; ('$(FindInvalidProjectReferences)' == 'true') was evaluated as ('' == 'true').
Target "ResolveNativeReferences" skipped, due to false condition; ('@(NativeReference)'!='') was evaluated as (''!='').
Target "ResolveProjectReferences" skipped. Previously built successfully.
Target "FindInvalidProjectReferences" skipped, due to false condition; ('$(FindInvalidProjectReferences)' == 'true') was evaluated as ('' == 'true').
Target "GetFrameworkPaths" skipped. Previously built successfully.
Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
Target "PrepareForBuild" skipped. Previously built successfully.
Target "GetInstalledSDKLocations" skipped, due to false condition; ('@(SDKReference)' != '') was evaluated as ('' != '').
Target ResolveSDKReferences has been started
Task "ResolveSDKReference" skipped, due to false condition; ('@(SDKReference)'!='') was evaluated as (''!='').
Target ResolveSDKReferences has been completed
Target "ResolveSDKReferences" skipped. Previously built successfully.
Target ExpandSDKReferences has been started
Task "GetSDKReferenceFiles" skipped, due to false condition; ('@(ResolvedSDKReference)'!='') was evaluated as (''!='').
Target ExpandSDKReferences has been completed
Target "ResolvePackageDependenciesForBuild" skipped. Previously built successfully.
Target "GetFrameworkPaths" skipped. Previously built successfully.
Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
Target "ProcessFrameworkReferences" skipped. Previously built successfully.
Target "ResolvePackageAssets" skipped. Previously built successfully.
Target ResolveFrameworkReferences has been started
Using "GetPackageDirectory" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Using "ResolveFrameworkReferences" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ResolveFrameworkReferences has been completed
Target ResolveTargetingPackAssets has been started
Using "ResolveTargetingPackAssets" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Target ResolveTargetingPackAssets has been completed
Target _HandlePackageFileConflicts has been started
Using "ResolvePackageFileConflicts" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Encountered conflict between 'Platform:System.Security.AccessControl.dll' and 'Runtime:C:\Users\Administrator\.nuget\packages\system.security.accesscontrol\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll'. Choosing 'Platform:System.Security.AccessControl.dll' because AssemblyVersion '5.0.0.0' is greater than '4.1.1.0'.
Encountered conflict between 'Platform:System.Security.Principal.Windows.dll' and 'Runtime:C:\Users\Administrator\.nuget\packages\system.security.principal.windows\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.Principal.Windows.dll'. Choosing 'Platform:System.Security.Principal.Windows.dll' because AssemblyVersion '5.0.0.0' is greater than '4.1.1.0'.
Target _HandlePackageFileConflicts has been completed
Target "ResolveTargetingPackAssets" skipped. Previously built successfully.
Target ResolveAssemblyReferences has been started
TargetFrameworkMoniker:
    .NETCoreApp,Version=v5.0
TargetFrameworkMonikerDisplayName:

TargetedRuntimeVersion:

Assemblies:
    MyCompCore
        HintPath = '..\..\..\MyComp\MyCompCore\bin\Release\MyCompCore.dll'
    MyCompDataAccess
        HintPath = '..\..\..\MyComp\MyCompCore\bin\Release\MyCompDataAccess.dll'
    MyCompFileWriter
        HintPath = '..\..\..\MyComp\MyCompCore\bin\Release\MyCompFileWriter.dll'
    MyCompNotifier
        HintPath = '..\..\..\MyComp\MyCompCore\bin\Release\MyCompNotifier.dll'
    MyCompSecurity
        HintPath = '..\..\..\MyComp\MyCompCore\bin\Release\MyCompSecurity.dll'
    C:\Users\Administrator\.nuget\packages\log4net\2.0.12\lib\netstandard2.0\log4net.dll
        Private = 'false'
        HintPath = 'C:\Users\Administrator\.nuget\packages\log4net\2.0.12\lib\netstandard2.0\log4net.dll'
    C:\Users\Administrator\.nuget\packages\system.configuration.configurationmanager\4.5.0\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll
        Private = 'false'
        HintPath = 'C:\Users\Administrator\.nuget\packages\system.configuration.configurationmanager\4.5.0\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll'
    C:\Users\Administrator\.nuget\packages\system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll
        Private = 'false'
        HintPath = 'C:\Users\Administrator\.nuget\packages\system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll'
    C:\Users\Administrator\.nuget\packages\system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll
        Private = 'false'
        HintPath = 'C:\Users\Administrator\.nuget\packages\system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll'
    C:\Users\Administrator\.nuget\packages\system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll
        Private = 'false'
        HintPath = 'C:\Users\Administrator\.nuget\packages\system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.CSharp.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.VisualBasic.Core.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.VisualBasic.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.Win32.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.AppContext.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Buffers.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Concurrent.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Immutable.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.NonGeneric.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Specialized.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.Annotations.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.DataAnnotations.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.EventBasedAsync.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.TypeConverter.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Configuration.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Console.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Core.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.Common.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.DataSetExtensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Contracts.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Debug.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.DiagnosticSource.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.FileVersionInfo.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Process.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.StackTrace.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.TextWriterTraceListener.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Tools.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.TraceSource.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Tracing.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Drawing.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Drawing.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Dynamic.Runtime.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Formats.Asn1.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.Calendars.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.Extensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.Brotli.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.FileSystem.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.ZipFile.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.DriveInfo.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.Watcher.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.IsolatedStorage.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.MemoryMappedFiles.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Pipes.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.UnmanagedMemoryStream.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Expressions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Parallel.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Queryable.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Memory.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Http.Json.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Http.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.HttpListener.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Mail.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.NameResolution.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.NetworkInformation.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Ping.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Requests.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Security.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.ServicePoint.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Sockets.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebClient.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebHeaderCollection.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebProxy.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebSockets.Client.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebSockets.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Numerics.Vectors.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Numerics.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ObjectModel.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.DispatchProxy.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.ILGeneration.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.Lightweight.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Extensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Metadata.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.TypeExtensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.Reader.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.ResourceManager.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.Writer.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.CompilerServices.Unsafe.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.CompilerServices.VisualC.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Extensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Handles.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.InteropServices.RuntimeInformation.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.InteropServices.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Intrinsics.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Loader.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Numerics.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Formatters.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Json.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Xml.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Claims.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Algorithms.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Csp.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Encoding.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Primitives.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.X509Certificates.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Principal.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.SecureString.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ServiceModel.Web.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ServiceProcess.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.CodePages.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.Extensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encodings.Web.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Json.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.RegularExpressions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Channels.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Overlapped.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Dataflow.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Extensions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Parallel.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Thread.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.ThreadPool.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Timer.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Transactions.Local.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Transactions.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ValueTuple.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Web.HttpUtility.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Web.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Windows.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.Linq.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.ReaderWriter.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.Serialization.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XDocument.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XPath.XDocument.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XPath.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XmlDocument.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XmlSerializer.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\WindowsBase.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\mscorlib.dll
        Private = 'false'
    C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\netstandard.dll
        Private = 'false'
AssemblyFiles:
CandidateAssemblyFiles:
TargetFrameworkDirectories:

InstalledAssemblyTables:
IgnoreInstalledAssemblyTable:
    False
SearchPaths:
    {CandidateAssemblyFiles}
    {HintPathFromItem}
    {TargetFrameworkDirectory}
    {RawFileName}
AllowedAssemblyExtensions:
    .winmd
    .dll
    .exe
AllowedRelatedFileExtensions:
    .pdb
    .xml
    .pri
    .dll.config
    .exe.config
AppConfigFile:

AutoUnify:
    True
CopyLocalDependenciesWhenParentReferenceInGac:
    True
FindDependencies:
    True
TargetProcessorArchitecture:
    amd64
StateFile:
    obj\Release\MyCompMyClient2.csproj.AssemblyReference.cache
InstalledAssemblySubsetTables:
IgnoreInstalledAssemblySubsetTable:
    False
TargetFrameworkSubsets:
FullTargetFrameworkSubsetNames:
    Full
ProfileName:

FullFrameworkFolders:
LatestTargetFrameworkDirectories:
ProfileTablesLocation:
Primary reference "MyCompCore, Version=2022.1.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.dll".
    Reference found at search path location "{HintPathFromItem}".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.pdb".
Primary reference "MyCompDataAccess, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.dll".
    Reference found at search path location "{HintPathFromItem}".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.pdb".
Primary reference "MyCompFileWriter, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.dll".
    Reference found at search path location "{HintPathFromItem}".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.pdb".
Primary reference "MyCompNotifier, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompNotifier.dll".
    Reference found at search path location "{HintPathFromItem}".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompNotifier.pdb".
Primary reference "MyCompSecurity, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompSecurity.dll".
    Reference found at search path location "{HintPathFromItem}".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompSecurity.pdb".
Primary reference "log4net, Version=2.0.12.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a".
    Resolved file path is "C:\Users\Administrator\.nuget\packages\log4net\2.0.12\lib\netstandard2.0\log4net.dll".
    Reference found at search path location "{HintPathFromItem}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Configuration.ConfigurationManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Users\Administrator\.nuget\packages\system.configuration.configurationmanager\4.5.0\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll".
    Reference found at search path location "{HintPathFromItem}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.AccessControl, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Users\Administrator\.nuget\packages\system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll".
    Reference found at search path location "{HintPathFromItem}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Permissions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Users\Administrator\.nuget\packages\system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll".
    Reference found at search path location "{HintPathFromItem}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Principal.Windows, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Users\Administrator\.nuget\packages\system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll".
    Reference found at search path location "{HintPathFromItem}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "Microsoft.CSharp, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.CSharp.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "Microsoft.VisualBasic.Core, Version=10.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.VisualBasic.Core.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.VisualBasic.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "Microsoft.Win32.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.Win32.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.AppContext, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.AppContext.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Buffers, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Buffers.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Collections.Concurrent, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Concurrent.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Immutable.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Collections.NonGeneric, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.NonGeneric.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Collections.Specialized, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Specialized.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Collections, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ComponentModel.Annotations, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.Annotations.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.DataAnnotations.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ComponentModel.EventBasedAsync, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.EventBasedAsync.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ComponentModel.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ComponentModel.TypeConverter, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.TypeConverter.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ComponentModel, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Configuration.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Console, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Console.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Core.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Data.Common, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.Common.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Data.DataSetExtensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.DataSetExtensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Unified primary reference "System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.dll" because AutoUnify is 'true'.
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.Contracts, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Contracts.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.Debug, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Debug.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.DiagnosticSource, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.DiagnosticSource.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.FileVersionInfo, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.FileVersionInfo.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.Process, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Process.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.StackTrace, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.StackTrace.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.TextWriterTraceListener, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.TextWriterTraceListener.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.Tools, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Tools.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.TraceSource, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.TraceSource.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Diagnostics.Tracing, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Tracing.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Drawing.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Drawing.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Unified primary reference "System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.dll" because AutoUnify is 'true'.
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.dll" because AutoUnify is 'true'.
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Drawing.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Dynamic.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Dynamic.Runtime.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Formats.Asn1, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Formats.Asn1.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Globalization.Calendars, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.Calendars.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Globalization.Extensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.Extensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Globalization, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.Compression.Brotli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.Brotli.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.FileSystem.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.Compression.ZipFile, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.ZipFile.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.Compression, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.FileSystem.DriveInfo, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.DriveInfo.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.FileSystem.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.FileSystem.Watcher, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.Watcher.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.FileSystem, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.IsolatedStorage, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.IsolatedStorage.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.MemoryMappedFiles, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.MemoryMappedFiles.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.Pipes, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Pipes.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO.UnmanagedMemoryStream, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.UnmanagedMemoryStream.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.IO, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Linq.Expressions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Expressions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Linq.Parallel, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Parallel.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Linq.Queryable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Queryable.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Linq, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Memory, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Memory.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Http.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Http.Json.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Unified primary reference "System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Using this version instead of original version "4.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.Core.dll" because AutoUnify is 'true'.
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Http.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.HttpListener, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.HttpListener.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Mail, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Mail.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.NameResolution, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.NameResolution.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.NetworkInformation, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.NetworkInformation.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Ping, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Ping.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Requests, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Requests.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Security, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Security.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.ServicePoint, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.ServicePoint.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.Sockets, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Sockets.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.WebClient, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebClient.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.WebHeaderCollection, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebHeaderCollection.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.WebProxy, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebProxy.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.WebSockets.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebSockets.Client.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net.WebSockets, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebSockets.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Net, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Numerics.Vectors, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Numerics.Vectors.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Numerics.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ObjectModel, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ObjectModel.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.DispatchProxy, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.DispatchProxy.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.Emit.ILGeneration, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.ILGeneration.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.Emit.Lightweight, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.Lightweight.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.Emit, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.Extensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Extensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.Metadata, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Metadata.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection.TypeExtensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.TypeExtensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Reflection, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Resources.Reader, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.Reader.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Resources.ResourceManager, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.ResourceManager.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Resources.Writer, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.Writer.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.CompilerServices.Unsafe.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.CompilerServices.VisualC, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.CompilerServices.VisualC.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Extensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Extensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Handles, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Handles.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.InteropServices.RuntimeInformation, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.InteropServices.RuntimeInformation.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.InteropServices, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.InteropServices.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Intrinsics, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Intrinsics.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Loader, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Loader.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Numerics, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Numerics.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Serialization.Formatters, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Formatters.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Serialization.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Json.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Serialization.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Serialization.Xml, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Xml.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Claims, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Claims.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Cryptography.Algorithms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Algorithms.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Cryptography.Csp, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Csp.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Cryptography.Encoding, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Encoding.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Cryptography.Primitives, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Primitives.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Cryptography.X509Certificates, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.X509Certificates.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.Principal, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Principal.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security.SecureString, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.SecureString.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ServiceModel.Web.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ServiceProcess.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Text.Encoding.CodePages, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.CodePages.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Text.Encoding.Extensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.Extensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Text.Encoding, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Text.Encodings.Web, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encodings.Web.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Text.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Json.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Text.RegularExpressions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.RegularExpressions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Channels, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Channels.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Overlapped, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Overlapped.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Tasks.Dataflow, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Dataflow.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Tasks.Extensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Extensions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Tasks.Parallel, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Parallel.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Tasks, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Thread, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Thread.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.ThreadPool, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.ThreadPool.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading.Timer, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Timer.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Threading, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Transactions.Local, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Transactions.Local.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Transactions.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ValueTuple.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Web.HttpUtility, Version=5.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Web.HttpUtility.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Web.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Windows.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.Linq.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.ReaderWriter, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.ReaderWriter.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.Serialization.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.XDocument, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XDocument.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.XPath.XDocument, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XPath.XDocument.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.XPath, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XPath.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.XmlDocument, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XmlDocument.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "System.Xml.XmlSerializer, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XmlSerializer.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Unified primary reference "System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.dll" because AutoUnify is 'true'.
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Unified primary reference "System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.dll" because AutoUnify is 'true'.
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Org.Mentalis.Security.dll" because AutoUnify is 'true'.
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ICSharpCode.SharpZipLib.dll" because AutoUnify is 'true'.
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\WindowsBase.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Unified primary reference "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.dll" because AutoUnify is 'true'.
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\DiffieHellman.dll" because AutoUnify is 'true'.
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Org.Mentalis.Security.dll" because AutoUnify is 'true'.
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Excel.dll" because AutoUnify is 'true'.
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.dll" because AutoUnify is 'true'.
    Using this version instead of original version "2.0.0.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ICSharpCode.SharpZipLib.dll" because AutoUnify is 'true'.
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\mscorlib.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Primary reference "netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
    Resolved file path is "C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\netstandard.dll".
    Reference found at search path location "{RawFileName}".
    This reference is not "CopyLocal" because at least one source item had "Private" set to "false" and no source items had "Private" set to "true".
Dependency "System.Data.SqlClient, Version=4.6.1.2, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Could not resolve this reference. Could not locate the assembly "System.Data.SqlClient, Version=4.6.1.2, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Data.SqlClient.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Data.SqlClient.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Data.SqlClient.exe", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Data.SqlClient.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Data.SqlClient.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Data.SqlClient.exe", but it didn't exist.
    Required by "MyCompCore".
    Required by "MyCompDataAccess".
Dependency "Microsoft.Extensions.Configuration.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
    Could not resolve this reference. Could not locate the assembly "Microsoft.Extensions.Configuration.Abstractions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Abstractions.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Abstractions.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Abstractions.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "Tamir.SharpSSH, Version=1.1.1.13, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.winmd", but it didn't exist.
    Required by "MyCompCore".
    The ImageRuntimeVersion for this reference is "v1.1.4322".
Dependency "CXFaxer, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\CXFaxer.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\CXFaxer.winmd", but it didn't exist.
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\CXFaxer.pdb".
Dependency "Microsoft.Win32.TaskScheduler, Version=2.5.12.0, Culture=neutral, PublicKeyToken=0d013ddd5178a2ae".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Win32.TaskScheduler.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Win32.TaskScheduler.winmd", but it didn't exist.
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Win32.TaskScheduler.xml".
Dependency "System.ServiceModel.Primitives, Version=4.8.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Could not resolve this reference. Could not locate the assembly "System.ServiceModel.Primitives, Version=4.8.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.ServiceModel.Primitives.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.ServiceModel.Primitives.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.ServiceModel.Primitives.exe", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.ServiceModel.Primitives.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.ServiceModel.Primitives.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.ServiceModel.Primitives.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "Microsoft.Extensions.Configuration, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
    Could not resolve this reference. Could not locate the assembly "Microsoft.Extensions.Configuration, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "Microsoft.Extensions.Configuration.FileExtensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
    Could not resolve this reference. Could not locate the assembly "Microsoft.Extensions.Configuration.FileExtensions, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.FileExtensions.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.FileExtensions.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.FileExtensions.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "Microsoft.Extensions.Configuration.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
    Could not resolve this reference. Could not locate the assembly "Microsoft.Extensions.Configuration.Json, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Json.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Json.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Json.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "Microsoft.Extensions.Configuration.Binder, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60".
    Could not resolve this reference. Could not locate the assembly "Microsoft.Extensions.Configuration.Binder, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Binder.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Binder.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Extensions.Configuration.Binder.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "FileParser, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\FileParser.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\FileParser.winmd", but it didn't exist.
    Required by "MyCompCore".
Dependency "MyCompFileReader, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileReader.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileReader.winmd", but it didn't exist.
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileReader.pdb".
Dependency "MyCompArchiver, Version=2021.12.1.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompArchiver.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompArchiver.winmd", but it didn't exist.
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompArchiver.pdb".
Dependency "AWSSDK.SimpleEmail, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.SimpleEmail.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.SimpleEmail.winmd", but it didn't exist.
    Required by "MyCompNotifier".
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.SimpleEmail.xml".
Dependency "AWSSDK.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.Core.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.Core.winmd", but it didn't exist.
    Required by "MyCompNotifier".
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.Core.xml".
Unified Dependency "System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".
    Using this version instead of original version "1.0.5000.0" in "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.dll" because AutoUnify is 'true'.
    Could not resolve this reference. Could not locate the assembly "System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Windows.Forms.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Windows.Forms.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Windows.Forms.exe", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Windows.Forms.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Windows.Forms.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Windows.Forms.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "DiffieHellman, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\DiffieHellman.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\DiffieHellman.winmd", but it didn't exist.
    Required by "MyCompCore".
    The ImageRuntimeVersion for this reference is "v1.1.4322".
Dependency "Org.Mentalis.Security, Version=1.0.13.715, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Org.Mentalis.Security.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Org.Mentalis.Security.winmd", but it didn't exist.
    Required by "MyCompCore".
    The ImageRuntimeVersion for this reference is "v1.1.4322".
Dependency "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
    Could not resolve this reference. Could not locate the assembly "System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Design.winmd", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Design.dll", but it didn't exist.
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\System.Design.exe", but it didn't exist.
    Required by "MyCompCore".
Dependency "Excel, Version=2016.2.2.0, Culture=neutral, PublicKeyToken=93517dbe6a4012fa".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Excel.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Excel.winmd", but it didn't exist.
    Required by "MyCompCore".
Dependency "ExcelLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.winmd", but it didn't exist.
    Required by "MyCompCore".
    The ImageRuntimeVersion for this reference is "v2.0.50727".
Dependency "AWSSDK.S3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.S3.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.S3.winmd", but it didn't exist.
    Required by "MyCompCore".
    Found related file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.S3.xml".
Dependency "ICSharpCode.SharpZipLib, Version=0.85.5.452, Culture=neutral, PublicKeyToken=1b03e6acf1164f73".
    Resolved file path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ICSharpCode.SharpZipLib.dll".
    Reference found at search path location "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        For SearchPath "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release".
        Considered "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ICSharpCode.SharpZipLib.winmd", but it didn't exist.
    Required by "MyCompCore".
    The ImageRuntimeVersion for this reference is "v2.0.50727".
Target ResolveAssemblyReferences has been completed
Target "GenerateBindingRedirects" skipped, due to false condition; ('$(AutoGenerateBindingRedirects)' == 'true' and '$(GenerateBindingRedirectsOutputType)' == 'true') was evaluated as ('' == 'true' and '' == 'true').
Target "GenerateSupportedRuntime" skipped, due to false condition; ('$(GenerateSupportedRuntime)' != 'false' and '$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(HasRuntimeOutput)' == 'true') was evaluated as ('' != 'false' and '.NETCoreApp' == '.NETFramework' and '' == 'true').
Target "GenerateBindingRedirectsUpdateAppConfig" skipped, due to false condition; ('$(AutoGenerateBindingRedirects)' == 'true' and '$(GenerateBindingRedirectsOutputType)' == 'true' and Exists('$(_GenerateBindingRedirectsIntermediateAppConfig)')) was evaluated as ('' == 'true' and '' == 'true' and Exists('obj\Release\MyCompMyClient2.dll.config')).
Target "ResolveComReferences" skipped, due to false condition; ('@(COMReference)'!='' or '@(COMFileReference)'!='') was evaluated as (''!='' or ''!='').
Target AfterResolveReferences has been started
Target AfterResolveReferences has been completed
Target ResolveReferences has been started
Target ResolveReferences has been completed
Target _BlockWinMDsOnUnsupportedTFMs has been started
Using "CheckForUnsupportedWinMDReferences" task from assembly "C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\tools\net472/Microsoft.NET.Build.Tasks.dll".
Task "NETSdkError" skipped, due to false condition; ('$(OutputType)' == 'winmdobj') was evaluated as ('Library' == 'winmdobj').
Target _BlockWinMDsOnUnsupportedTFMs has been completed
Target "ResolveReferences" skipped. Previously built successfully.
Target "ResolvePackageDependenciesForBuild" skipped. Previously built successfully.
Target "_HandlePackageFileConflicts" skipped. Previously built successfully.
Target ValidationExtension has been started
Task "WorkflowBuildMessageTask" skipped, due to false condition; ('$(SkipWorkflowValidation)'!='' and '$(SkipWorkflowValidation)'!='true' and '$(SkipWorkflowValidation)'!='false') was evaluated as (''!='' and ''!='true' and ''!='false').
Target ValidationExtension has been completed
Target ExpressionBuildExtension has been started
Task "WorkflowBuildMessageTask" skipped, due to false condition; ('$(DisableWorkflowCompiledExpressions)'!='' and '$(DisableWorkflowCompiledExpressions)'!='true' and '$(DisableWorkflowCompiledExpressions)'!='false') was evaluated as (''!='' and ''!='true' and ''!='false').
Target ExpressionBuildExtension has been completed
Target "XamlMarkupCompilePass1" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
Target "XamlMarkupCompileReadGeneratedFileList" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
Target "XamlMarkupCompileAddFilesGenerated" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
Target "XamlMarkupCompilePass2" skipped, due to false condition; ('$(XamlRequiresCompilationPass2)' == 'true' ) was evaluated as ('false' == 'true' ).
Target "XamlMarkupCompileReadPass2Flag" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
Target "XamlMarkupCompileAddExtensionFilesGenerated" skipped, due to false condition; ('@(XamlPage)' != '' or '@(XamlAppDef)' != '') was evaluated as ('' != '' or '' != '').
Target "AddDeferredValidationErrorsFileToFileWrites" skipped, due to false condition; (Exists('$(DeferredValidationErrorsFileName)')) was evaluated as (Exists('obj\Release\\AC2C1ABA CCF6 44D4 8127 588FD4D0A860 DeferredValidationErrors.xml')).
Target "ReportValidationBuildExtensionErrors" skipped, due to false condition; ('$(SkipWorkflowValidation)' != 'true' and ('@(XamlPage)' != '' or '@(XamlAppDef)' != '')) was evaluated as ('' != 'true' and ('' != '' or '' != '')).
Target CopyAdditionalFiles has been started
Target CopyAdditionalFiles has been completed
Target "_ChooseAppHost" skipped, due to false condition; ('$(UseAppHost)' == 'true' and '$(_IsExecutable)' == 'true') was evaluated as ('' == 'true' and '' == 'true').
Target "_GetComHostPaths" skipped, due to false condition; ('$(EnableComHosting)' == 'true' and '$(_IsExecutable)' != 'true') was evaluated as ('' == 'true' and '' != 'true').
Target "_GetIjwHostPaths" skipped, due to false condition; ('$(UseIJWHost)' == 'true') was evaluated as ('' == 'true').
Target _ComputeNETCoreBuildOutputFiles has been started
Target _ComputeNETCoreBuildOutputFiles has been completed
Target AssignTargetPaths has been started
Task "AssignTargetPath" skipped, due to false condition; ('@(_DeploymentBaseManifestWithTargetPath)'=='' and '%(None.Extension)'=='.manifest') was evaluated as (''=='' and ''=='.manifest').
Target AssignTargetPaths has been completed
Target "AssignTargetPaths" skipped. Previously built successfully.
Target SplitResourcesByCulture has been started
Task "Warning" skipped, due to false condition; ('@(ResxWithNoCulture)'!='') was evaluated as (''!='').
Task "Warning" skipped, due to false condition; ('@(ResxWithCulture)'!='') was evaluated as (''!='').
Task "Warning" skipped, due to false condition; ('@(NonResxWithCulture)'!='') was evaluated as (''!='').
Task "Warning" skipped, due to false condition; ('@(NonResxWithNoCulture)'!='') was evaluated as (''!='').
Target SplitResourcesByCulture has been completed
Target "CreateManifestResourceNames" skipped, due to false condition; ('@(EmbeddedResource)' != '') was evaluated as ('' != '').
Target CreateCustomManifestResourceNames has been started
Target CreateCustomManifestResourceNames has been completed
Target PrepareResourceNames has been started
Target PrepareResourceNames has been completed
Target "ResolveAssemblyReferences" skipped. Previously built successfully.
Target "SplitResourcesByCulture" skipped. Previously built successfully.
Target BeforeResGen has been started
Target BeforeResGen has been completed
Target "ResolveReferences" skipped. Previously built successfully.
Target FindReferenceAssembliesForReferences has been started
Target FindReferenceAssembliesForReferences has been completed
Target CoreResGen has been started
Task "GenerateResource" skipped, due to false condition; ('%(EmbeddedResource.Type)' == 'Resx' and '%(EmbeddedResource.GenerateResource)' != 'false' and '$(GenerateResourceMSBuildRuntime)' != 'CLR2') was evaluated as ('' == 'Resx' and '' != 'false' and 'CurrentRuntime' != 'CLR2').
Task "GenerateResource" skipped, due to false condition; ('%(EmbeddedResource.Type)' == 'Resx' and '%(EmbeddedResource.GenerateResource)' != 'false' and '$(GenerateResourceMSBuildRuntime)' == 'CLR2') was evaluated as ('' == 'Resx' and '' != 'false' and 'CurrentRuntime' == 'CLR2').
Target CoreResGen has been completed
Target AfterResGen has been started
Target AfterResGen has been completed
Target ResGen has been started
Target ResGen has been completed
Target "CompileLicxFiles" skipped, due to false condition; ('@(_LicxFile)'!='') was evaluated as (''!='').
Target PrepareResources has been started
Target PrepareResources has been completed
Target "ResolveKeySource" skipped, due to false condition; ($(SignManifests) == 'true' or $(SignAssembly) == 'true') was evaluated as ( == 'true' or false == 'true').
Target "ResolveReferences" skipped. Previously built successfully.
Target "ResolveKeySource" skipped, due to false condition; ($(SignManifests) == 'true' or $(SignAssembly) == 'true') was evaluated as ( == 'true' or false == 'true').
Target "ResolveComReferences" skipped, due to false condition; ('@(COMReference)'!='' or '@(COMFileReference)'!='') was evaluated as (''!='' or ''!='').
Target "ResolveNativeReferences" skipped, due to false condition; ('@(NativeReference)'!='') was evaluated as (''!='').
Target "_SetExternalWin32ManifestProperties" skipped, due to false condition; ('$(GenerateClickOnceManifests)'=='true' or '@(NativeReference)'!='' or '@(ResolvedIsolatedComModules)'!='') was evaluated as (''=='true' or ''!='' or ''!='').
Target _SetEmbeddedWin32ManifestProperties has been started
Target _SetEmbeddedWin32ManifestProperties has been completed
Target SetWin32ManifestProperties has been started
Target SetWin32ManifestProperties has been completed
Target "FindReferenceAssembliesForReferences" skipped. Previously built successfully.
Target _GenerateCompileInputs has been started
Task "Warning" skipped, due to false condition; ('@(ManifestResourceWithNoCulture)'!='' and '%(ManifestResourceWithNoCulture.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
Task "Warning" skipped, due to false condition; ('@(ManifestNonResxWithNoCultureOnDisk)'!='' and '%(ManifestNonResxWithNoCultureOnDisk.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
Target _GenerateCompileInputs has been completed
Target "PrepareForBuild" skipped. Previously built successfully.
Target GenerateMSBuildEditorConfigFileShouldRun has been started
Target GenerateMSBuildEditorConfigFileShouldRun has been completed
Target GenerateMSBuildEditorConfigFileCore has been started
Building target "GenerateMSBuildEditorConfigFileCore" completely.
No input files were specified.
Using "GenerateMSBuildEditorConfig" task from assembly "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll".
Skipping write to file "obj\Release\MyCompMyClient2.GeneratedMSBuildEditorConfig.editorconfig" because content would not change.
Target GenerateMSBuildEditorConfigFileCore has been completed
Target GenerateMSBuildEditorConfigFile has been started
Target GenerateMSBuildEditorConfigFile has been completed
Target "PrepareForBuild" skipped. Previously built successfully.
Target "GetReferenceAssemblyPaths" skipped. Previously built successfully.
Target _SetTargetFrameworkMonikerAttribute has been started
Target _SetTargetFrameworkMonikerAttribute has been completed
Target GenerateTargetFrameworkMonikerAttribute has been started
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up to date with respect to the input files.
Input files: C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Common.targets
Output files: obj\Release\.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
Target GenerateTargetFrameworkMonikerAttribute has been completed
Target "GenerateAdditionalSources" skipped, due to false condition; ('@(AssemblyAttributes)' != '' and '$(GenerateAdditionalSources)' == 'true') was evaluated as ('' != '' and '' == 'true').
Target "GenerateAssemblyInfo" skipped, due to false condition; ('$(GenerateAssemblyInfo)' == 'true') was evaluated as ('false' == 'true').
Target BeforeCompile has been started
Building target "BeforeCompile" completely.
Input file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.dll" is newer than output file "obj\Release\MyCompMyClient2.dll".
Target Target_SetNewAssemblyVersionNumber has been started
Using "MSBuild.ExtensionPack.Framework.AssemblyInfo" task from assembly "H:\US_MyComp\msbuild\MSBuild_XO\20211028\lib\MSBuild.Extension.Pack.1.8.0\build\net40\..\..\tools\net40\MSBuild.ExtensionPack.dll".
Updating assembly info for H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\Properties\AssemblyInfo.cs
    Updating assembly version to 2022.01.01.0
    Update method is NoIncrement
    Update method is NoIncrement
    Final assembly version is 2022.01.01.0
    Updating assembly version to 2022.01.01.0
    Update method is NoIncrement
    Update method is NoIncrement
    Final assembly version is 2022.01.01.0
Target Target_SetNewAssemblyVersionNumber has been completed
Target Target_CommitAssemblyInfoFileInSVN has been started
Using "SvnCommit" task from assembly "H:\US_MyComp\msbuild\MSBuild_XO\20211028\lib\\MSBuild.Community.Tasks.dll".
C:\Program Files\TortoiseSVN\bin\svn.exe commit "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\Properties\AssemblyInfo.cs"   message "Set assembly version number: 2022.01.01.0"  non interactive  no auth cache 
Sending        Properties\AssemblyInfo.cs
Transmitting file data .
Committed revision 15684.
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\Properties\AssemblyInfo.cs has been committed with revision id: 15684
Target Target_CommitAssemblyInfoFileInSVN has been completed
Target BeforeCompile has been completed
Target "_TimeStampBeforeCompile" skipped, due to false condition; ('$(RunPostBuildEvent)'=='OnOutputUpdated' or ('$(RegisterForComInterop)'=='true' and '$(OutputType)'=='library')) was evaluated as (''=='OnOutputUpdated' or (''=='true' and 'Library'=='library')).
Target "ResolveAssemblyReferences" skipped. Previously built successfully.
Target _GenerateCompileDependencyCache has been started
Skipping write to file "obj\Release\MyCompMyClient2.csproj.CoreCompileInputs.cache" because content would not change.
Target _GenerateCompileDependencyCache has been completed
Target "_ComputeNonExistentFileProperty" skipped, due to false condition; (('$(BuildingInsideVisualStudio)' == 'true') and ('$(BuildingOutOfProcess)' != 'true') and (('$(BuildingProject)' == 'false') or ('$(UseHostCompilerIfAvailable)' == 'true'))) was evaluated as (('' == 'true') and ('' != 'true') and (('true' == 'false') or ('true' == 'true'))).
Target "ResolveCodeAnalysisRuleSet" skipped, due to false condition; ('$(CodeAnalysisRuleSet)' != '') was evaluated as ('' != '').
Target "ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies" skipped, due to false condition; ('@(ReferencePathWithRefAssemblies)' == '') was evaluated as ('H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.dll;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.dll;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.dll;...' == '').
Target _BeforeVBCSCoreCompile has been started
Target _BeforeVBCSCoreCompile has been completed
Target "AdjustDefaultPlatformTargetForNetFrameworkExeWithNoNativeCopyLocalItems" skipped, due to false condition; ('$(_UsingDefaultPlatformTarget)' == 'true' and
                     '$(_UsingDefaultRuntimeIdentifier)' == 'true') was evaluated as ('true' == 'true' and
                     '' == 'true').
Target "GenerateTargetPlatformDefineConstants" skipped, due to false condition; ( '$(DisableImplicitFrameworkDefines)' != 'true' and '$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) ) was evaluated as ( '' != 'true' and '' != '' and '.NETCoreApp' == '.NETCoreApp' and True ).
Target GenerateNETCompatibleDefineConstants has been started
Target GenerateNETCompatibleDefineConstants has been completed
Target "GeneratePlatformCompatibleDefineConstants" skipped, due to false condition; ( '$(DisableImplicitFrameworkDefines)' != 'true' and '$(TargetPlatformIdentifier)' != '' and '$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), 5.0)) ) was evaluated as ( '' != 'true' and '' != '' and '.NETCoreApp' == '.NETCoreApp' and True ).
Target AddImplicitDefineConstants has been started
Target AddImplicitDefineConstants has been completed
Target "ShimReferencePathsWhenCommonTargetsDoesNotUnderstandReferenceAssemblies" skipped, due to false condition; ('@(ReferencePathWithRefAssemblies)' == '') was evaluated as ('H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.dll;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.dll;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.dll;...' == '').
Target _ComputeSkipAnalyzers has been started
Target _ComputeSkipAnalyzers has been completed
Target "_SetPathMapFromSourceRoots" skipped, due to false condition; ('$(DeterministicSourcePaths)' == 'true') was evaluated as ('' == 'true').
Target "CreateCompilerGeneratedFilesOutputPath" skipped, due to false condition; ('$(EmitCompilerGeneratedFiles)' == 'true' and !('$(DesignTimeBuild)' == 'true' OR '$(BuildingProject)' != 'true')) was evaluated as ('false' == 'true' and !('' == 'true' OR 'true' != 'true')).
Target PreXsdCodeGen has been started
Target CleanXsdCodeGen has been started
Target CleanXsdCodeGen has been completed
Target PreXsdCodeGen has been completed
Target "XsdCodeGen" skipped, due to false condition; ( '$(XsdCodeGenPreCondition)' == 'True' ) was evaluated as ( 'False' == 'True' ).
Target "GenerateAssemblyInfo" skipped, due to false condition; ('$(GenerateAssemblyInfo)' == 'true') was evaluated as ('false' == 'true').
Target AddGlobalAnalyzerConfigForPackage_MicrosoftCodeAnalysisNetAnalyzers has been started
Target AddGlobalAnalyzerConfigForPackage_MicrosoftCodeAnalysisNetAnalyzers has been completed
Target "_CodeAnalysisTreatWarningsNotAsErrors" skipped, due to false condition; ('$(CodeAnalysisTreatWarningsAsErrors)' == 'false' AND ('$(DesignTimeBuild)' == 'true' OR '$(BuildingProject)' != 'true')) was evaluated as ('' == 'false' AND ('' == 'true' OR 'true' != 'true')).
Target _ReportUpgradeNetAnalyzersNuGetWarning has been started
Task "Warning" skipped, due to false condition; ('$(_NETAnalyzersNuGetAssemblyVersion)' != '' AND
                         '$(_NETAnalyzersSDKAssemblyVersion)' != '' AND
                          $(_NETAnalyzersNuGetAssemblyVersion) < $(_NETAnalyzersSDKAssemblyVersion)) was evaluated as ('' != '' AND
                         '5.0.2' != '' AND
                           < 5.0.2).
Target _ReportUpgradeNetAnalyzersNuGetWarning has been completed
Target CoreCompile has been started
Building target "CoreCompile" completely.
Input file "Properties\AssemblyInfo.cs" is newer than output file "obj\Release\MyCompMyClient2.dll".
C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Roslyn\csc.exe /noconfig /unsafe  /checked  /nowarn:1701,1702,1701,1702 /fullpaths /nostdlib+ /platform:x64 /errorreport:prompt /warn:5 /define:TRACE;RELEASE;NET;NET5_0;NETCOREAPP;NET5_0_OR_GREATER;NETCOREAPP1_0_OR_GREATER;NETCOREAPP1_1_OR_GREATER;NETCOREAPP2_0_OR_GREATER;NETCOREAPP2_1_OR_GREATER;NETCOREAPP2_2_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER /highentropyva+ /reference:H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.dll /reference:H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.dll /reference:H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.dll /reference:H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompNotifier.dll /reference:H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompSecurity.dll /reference:C:\Users\Administrator\.nuget\packages\log4net\2.0.12\lib\netstandard2.0\log4net.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.CSharp.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.VisualBasic.Core.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.VisualBasic.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\Microsoft.Win32.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\mscorlib.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\netstandard.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.AppContext.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Buffers.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Concurrent.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Immutable.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.NonGeneric.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Collections.Specialized.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.Annotations.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.DataAnnotations.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.EventBasedAsync.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ComponentModel.TypeConverter.dll" /reference:C:\Users\Administrator\.nuget\packages\system.configuration.configurationmanager\4.5.0\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Configuration.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Console.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Core.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.Common.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.DataSetExtensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Data.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Contracts.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Debug.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.DiagnosticSource.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.FileVersionInfo.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Process.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.StackTrace.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.TextWriterTraceListener.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Tools.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.TraceSource.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Diagnostics.Tracing.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Drawing.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Drawing.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Dynamic.Runtime.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Formats.Asn1.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.Calendars.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Globalization.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.Brotli.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.FileSystem.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Compression.ZipFile.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.DriveInfo.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.FileSystem.Watcher.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.IsolatedStorage.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.MemoryMappedFiles.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.Pipes.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.IO.UnmanagedMemoryStream.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Expressions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Parallel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Linq.Queryable.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Memory.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Http.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Http.Json.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.HttpListener.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Mail.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.NameResolution.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.NetworkInformation.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Ping.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Requests.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Security.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.ServicePoint.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.Sockets.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebClient.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebHeaderCollection.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebProxy.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebSockets.Client.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Net.WebSockets.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Numerics.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Numerics.Vectors.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ObjectModel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.DispatchProxy.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.ILGeneration.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Emit.Lightweight.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Metadata.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Reflection.TypeExtensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.Reader.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.ResourceManager.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Resources.Writer.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.CompilerServices.Unsafe.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.CompilerServices.VisualC.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Handles.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.InteropServices.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.InteropServices.RuntimeInformation.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Intrinsics.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Loader.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Numerics.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Formatters.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Json.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Runtime.Serialization.Xml.dll" /reference:C:\Users\Administrator\.nuget\packages\system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Claims.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Algorithms.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Csp.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Encoding.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.Primitives.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Cryptography.X509Certificates.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.dll" /reference:C:\Users\Administrator\.nuget\packages\system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.Principal.dll" /reference:C:\Users\Administrator\.nuget\packages\system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Security.SecureString.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ServiceModel.Web.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ServiceProcess.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.CodePages.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encoding.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Encodings.Web.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.Json.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Text.RegularExpressions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Channels.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Overlapped.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Dataflow.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Extensions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Tasks.Parallel.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Thread.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.ThreadPool.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Threading.Timer.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Transactions.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Transactions.Local.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.ValueTuple.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Web.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Web.HttpUtility.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Windows.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.Linq.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.ReaderWriter.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.Serialization.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XDocument.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XmlDocument.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XmlSerializer.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XPath.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\System.Xml.XPath.XDocument.dll" /reference:"C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0\ref\net5.0\WindowsBase.dll" /debug  /debug:portable /filealign:512 /optimize+ /out:obj\Release\MyCompMyClient2.dll /target:library /warnaserror  /utf8output /deterministic+ /langversion:9.0 /analyzerconfig:obj\Release\MyCompMyClient2.GeneratedMSBuildEditorConfig.editorconfig /analyzerconfig:"C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\analyzers\build\config\AnalysisLevel_5_Default.editorconfig" /analyzer:"C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\analyzers\Microsoft.CodeAnalysis.CSharp.NetAnalyzers.dll" /analyzer:"C:\Program Files\dotnet\sdk\5.0.402\Sdks\Microsoft.NET.Sdk\targets\..\analyzers\Microsoft.CodeAnalysis.NetAnalyzers.dll" MyClient2_Constants.cs Properties\AssemblyInfo.cs Utility\MyClient2_Helper.cs Utility\MyClient2_SQLSource.cs "obj\Release\.NETCoreApp,Version=v5.0.AssemblyAttributes.cs" /warnaserror+:NU1605
Microsoft (R) Visual C# Compiler version 3.11.0 4.21403.6 (ae1fff34)
Copyright (C) Microsoft Corporation. All rights reserved.
CompilerServer: server   server processed compilation   1457500f b892 403a a7aa 8caf47b93ba8
Task "CallTarget" skipped, due to false condition; ('$(TargetsTriggeredByCompilation)' != '') was evaluated as ('' != '').
Target CoreCompile has been completed
Target "_TimeStampAfterCompile" skipped, due to false condition; ('$(RunPostBuildEvent)'=='OnOutputUpdated' or ('$(RegisterForComInterop)'=='true' and '$(OutputType)'=='library')) was evaluated as (''=='OnOutputUpdated' or (''=='true' and 'Library'=='library')).
Target AfterCompile has been started
Target AfterCompile has been completed
Target "_CreateAppHost" skipped, due to false condition; ('$(ComputeNETCoreBuildOutputFiles)' == 'true' and
                     '$(AppHostSourcePath)' != '' and
                     Exists('@(IntermediateAssembly)') and
                     Exists('$(AppHostSourcePath)')) was evaluated as ('true' == 'true' and
                     '' != '' and
                     Exists('obj\Release\MyCompMyClient2.dll') and
                     Exists('')).
Target "_CreateComHost" skipped, due to false condition; ('$(ComputeNETCoreBuildOutputFiles)' == 'true' and
                     '$(ComHostIntermediatePath)' != '' and
                     Exists('@(IntermediateAssembly)') and
                     Exists('$(ComHostSourcePath)')) was evaluated as ('true' == 'true' and
                     '' != '' and
                     Exists('obj\Release\MyCompMyClient2.dll') and
                     Exists('')).
Target "_GetIjwHostPaths" skipped, due to false condition; ('$(UseIJWHost)' == 'true') was evaluated as ('' == 'true').
Target Compile has been started
Target Compile has been completed
Target "DeferredValidation" skipped, due to false condition; ('$(SkipWorkflowValidation)' != 'true' and ('@(XamlPage)' != '' or '@(XamlAppDef)' != '')) was evaluated as ('' != 'true' and ('' != '' or '' != '')).
Target "ExportWindowsMDFile" skipped, due to false condition; ('$(ExportWinMDFile)' == 'true') was evaluated as ('' == 'true').
Target "UnmanagedUnregistration" skipped, due to false condition; ((('$(_AssemblyTimestampBeforeCompile)' != '$(_AssemblyTimestampAfterCompile)' or '$(RegisterForComInterop)' != 'true' or '$(OutputType)' != 'library') or
                    ('$(_AssemblyTimestampBeforeCompile)' == '')) and
                   Exists('@(_UnmanagedRegistrationCache)')) was evaluated as ((('' != '' or '' != 'true' or 'Library' != 'library') or
                    ('' == '')) and
                   Exists('obj\MyCompMyClient2.csproj.UnmanagedRegistration.cache')).
Target "GenerateSerializationAssemblies" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Auto' == 'On' or (''!='' and 'Auto' == 'Auto')).
Target _GenerateSatelliteAssemblyInputs has been started
Task "Warning" skipped, due to false condition; ('@(ManifestResourceWithCulture)'!='' and '%(ManifestResourceWithCulture.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
Task "Warning" skipped, due to false condition; ('@(ManifestNonResxWithCultureOnDisk)'!='' and '%(ManifestNonResxWithCultureOnDisk.EmittedForCompatibilityOnly)'=='') was evaluated as (''!='' and ''=='').
Target _GenerateSatelliteAssemblyInputs has been completed
Target "ComputeIntermediateSatelliteAssemblies" skipped, due to false condition; (@(EmbeddedResource >'%(WithCulture)') != '') was evaluated as ( != '').
Target "GenerateSatelliteAssemblies" skipped, due to false condition; ('@(_SatelliteAssemblyResourceInputs)' != '' and '$(GenerateSatelliteAssembliesForCore)' != 'true') was evaluated as ('' != '' and '' != 'true').
Target "CoreGenerateSatelliteAssemblies" skipped, due to false condition; ('@(_SatelliteAssemblyResourceInputs)' != ''  and '$(GenerateSatelliteAssembliesForCore)' == 'true' ) was evaluated as ('' != ''  and '' == 'true' ).
Target CreateSatelliteAssemblies has been started
Target CreateSatelliteAssemblies has been completed
Target "GenerateManifests" skipped, due to false condition; ('$(GenerateClickOnceManifests)'=='true' or '@(NativeReference)'!='' or '@(ResolvedIsolatedComModules)'!='' or '$(GenerateAppxManifest)' == 'true') was evaluated as (''=='true' or ''!='' or ''!='' or '' == 'true').
Target GetTargetPathWithTargetPlatformMoniker has been started
Target GetTargetPathWithTargetPlatformMoniker has been completed
Target GetTargetPath has been started
Target GetTargetPath has been completed
Target "ComputeIntermediateSatelliteAssemblies" skipped, due to false condition; (@(EmbeddedResource >'%(WithCulture)') != '') was evaluated as ( != '').
Target _CopyFilesMarkedCopyLocal has been started
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompFileWriter.dll".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompNotifier.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompNotifier.dll".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompCore.dll".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompDataAccess.dll".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompSecurity.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompSecurity.dll".
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Win32.TaskScheduler.dll" to file "bin\Release\Microsoft.Win32.TaskScheduler.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Tamir.SharpSSH.dll" to file "bin\Release\Tamir.SharpSSH.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\FileParser.dll" to file "bin\Release\FileParser.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompArchiver.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompArchiver.dll".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\CXFaxer.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\CXFaxer.dll".
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.SimpleEmail.dll" to file "bin\Release\AWSSDK.SimpleEmail.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.Core.dll" to file "bin\Release\AWSSDK.Core.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\DiffieHellman.dll" to file "bin\Release\DiffieHellman.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileReader.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompFileReader.dll".
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Excel.dll" to file "bin\Release\Excel.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Org.Mentalis.Security.dll" to file "bin\Release\Org.Mentalis.Security.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.S3.dll" to file "bin\Release\AWSSDK.S3.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ICSharpCode.SharpZipLib.dll" to file "bin\Release\ICSharpCode.SharpZipLib.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompCore.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompCore.pdb".
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\ExcelLibrary.dll" to file "bin\Release\ExcelLibrary.dll" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompDataAccess.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompDataAccess.pdb".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileWriter.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompFileWriter.pdb".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompSecurity.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompSecurity.pdb".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompNotifier.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompNotifier.pdb".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\CXFaxer.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\CXFaxer.pdb".
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompFileReader.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompFileReader.pdb".
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\Microsoft.Win32.TaskScheduler.xml" to file "bin\Release\Microsoft.Win32.TaskScheduler.xml" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.Core.xml" to file "bin\Release\AWSSDK.Core.xml" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.SimpleEmail.xml" to file "bin\Release\AWSSDK.SimpleEmail.xml" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\MyCompArchiver.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompArchiver.pdb".
Did not copy from file "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyComp\MyCompCore\bin\Release\AWSSDK.S3.xml" to file "bin\Release\AWSSDK.S3.xml" because the "SkipUnchangedFiles" parameter was set to "true" in the project and the files' sizes and timestamps match.
Touching "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.csproj.CopyComplete".
Target _CopyFilesMarkedCopyLocal has been completed
Target "AssignTargetPaths" skipped. Previously built successfully.
Target "AssignProjectConfiguration" skipped. Previously built successfully.
Target "_SplitProjectReferencesByFileExistence" skipped. Previously built successfully.
Target "_GetProjectReferenceTargetFrameworkProperties" skipped. Previously built successfully.
Target _PopulateCommonStateForGetCopyToOutputDirectoryItems has been started
Target _PopulateCommonStateForGetCopyToOutputDirectoryItems has been completed
Target GetCopyToOutputDirectoryXamlAppDefs has been started
Target GetCopyToOutputDirectoryXamlAppDefs has been completed
Target "AddDepsJsonAndRuntimeConfigToCopyItemsForReferencingProjects" skipped, due to false condition; ('$(HasRuntimeOutput)' == 'true') was evaluated as ('' == 'true').
Target GetCopyToOutputDirectoryItems has been started
Target "_PopulateCommonStateForGetCopyToOutputDirectoryItems" skipped. Previously built successfully.
Target "_AddOutputPathToGlobalPropertiesToRemove" skipped. Previously built successfully.
Target _GetCopyToOutputDirectoryItemsFromTransitiveProjectReferences has been started
Task "MSBuild" skipped, due to false condition; ('@(_MSBuildProjectReferenceExistent)' != '' and '$(_GetChildProjectCopyToOutputDirectoryItems)' == 'true' and '%(_MSBuildProjectReferenceExistent.Private)' != 'false' and '$(UseCommonOutputDirectory)' != 'true') was evaluated as ('' != '' and 'true' == 'true' and '' != 'false' and 'false' != 'true').
Target _GetCopyToOutputDirectoryItemsFromTransitiveProjectReferences has been completed
Target "AssignTargetPaths" skipped. Previously built successfully.
Target "_PopulateCommonStateForGetCopyToOutputDirectoryItems" skipped. Previously built successfully.
Target "AddDepsJsonAndRuntimeConfigToCopyItemsForReferencingProjects" skipped, due to false condition; ('$(HasRuntimeOutput)' == 'true') was evaluated as ('' == 'true').
Target _GetCopyToOutputDirectoryItemsFromThisProject has been started
Target _GetCopyToOutputDirectoryItemsFromThisProject has been completed
Target GetCopyToOutputDirectoryItems has been completed
Target "_CopyOutOfDateSourceItemsToOutputDirectory" skipped, due to false condition; ( '@(_SourceItemsToCopyToOutputDirectory)' != '' ) was evaluated as ( '' != '' ).
Target "_CopyOutOfDateSourceItemsToOutputDirectoryAlways" skipped, due to false condition; ( '@(_SourceItemsToCopyToOutputDirectoryAlways)' != '' ) was evaluated as ( '' != '' ).
Target _CopySourceItemsToOutputDirectory has been started
Target _CopySourceItemsToOutputDirectory has been completed
Target "_CopyAppConfigFile" skipped, due to false condition; ( '@(AppConfigWithTargetPath)' != '' ) was evaluated as ( '' != '' ).
Target "_CopyManifestFiles" skipped, due to false condition; ( '$(_DeploymentCopyApplicationManifest)'=='true' or '$(GenerateClickOnceManifests)'=='true' ) was evaluated as ( ''=='true' or ''=='true' ).
Target _CheckForCompileOutputs has been started
Target _CheckForCompileOutputs has been completed
Target "_SGenCheckForOutputs" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Auto' == 'On' or (''!='' and 'Auto' == 'Auto')).
Target "_DefaultMicrosoftNETPlatformLibrary" skipped. Previously built successfully.
Target "_HandlePackageFileConflicts" skipped. Previously built successfully.
Target "ResolveAssemblyReferences" skipped. Previously built successfully.
Target _ComputeReferenceAssemblies has been started
Target _ComputeReferenceAssemblies has been completed
Target _ComputeUserRuntimeAssemblies has been started
Target _ComputeUserRuntimeAssemblies has been completed
Target "ResolveRuntimePackAssets" skipped, due to false condition; ('@(RuntimePack)' != '') was evaluated as ('' != '').
Target "_ComputePackageReferencePublish" skipped. Previously built successfully.
Target "ComputeDependencyFileCompilerOptions" skipped, due to false condition; ('$(PreserveCompilationContext)' == 'true') was evaluated as ('' == 'true').
Target GenerateBuildDependencyFile has been started
Skipping target "GenerateBuildDependencyFile" because all output files are up to date with respect to the input files.
Input files: 
    H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\project.assets.json
    H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.assets.cache
    H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\MyCompMyClient2.csproj
    H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\MyCompMyClient2.csproj.nuget.g.props
    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Microsoft.Xaml.targets
    C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targets
    H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\MyCompMyClient2.csproj.nuget.g.targets
    C:\Program Files\dotnet\sdk\5.0.402\Sdks\NuGet.Build.Tasks.Pack\build\NuGet.Build.Tasks.Pack.targets
Output files: H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.deps.json
Target GenerateBuildDependencyFile has been completed
Target "GenerateBuildRuntimeConfigurationFiles" skipped, due to false condition; ( '$(GenerateRuntimeConfigurationFiles)' == 'true') was evaluated as ( '' == 'true').
Target "GenerateShimsAssets" skipped, due to false condition; ('$(PackAsTool)' == 'true' and $(PackAsToolShimRuntimeIdentifiers) != '' ) was evaluated as ('' == 'true' and  != '' ).
Target CopyFilesToOutputDirectory has been started
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.dll" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.dll".
Task "CopyRefAssembly" skipped, due to false condition; ('$(ProduceReferenceAssembly)' == 'true' and '$(CopyBuildOutputToOutputDirectory)' == 'true' and '$(SkipCopyBuildProduct)' != 'true') was evaluated as ('false' == 'true' and 'true' == 'true' and '' != 'true').
MyCompMyClient2  > H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.dll
Task "Copy" skipped, due to false condition; ('@(AddModules)' != '') was evaluated as ('' != '').
Task "Copy" skipped, due to false condition; ('$(_SGenDllCreated)'=='true') was evaluated as ('false'=='true').
Copying file from "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\obj\Release\MyCompMyClient2.pdb" to "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.pdb".
Task "Copy" skipped, due to false condition; ('$(_DocumentationFileProduced)'=='true' and '$(CopyDocumentationFileToOutputDirectory)'=='true') was evaluated as ('false'=='true' and 'true'=='true').
Task "Copy" skipped, due to false condition; ('@(IntermediateSatelliteAssembliesWithTargetPath)' != '') was evaluated as ('' != '').
Task "Copy" skipped, due to false condition; ('@(ReferenceComWrappersToCopyLocal)' != '' or '@(ResolvedIsolatedComModules)' != '' or '@(_DeploymentLooseManifestFile)' != '' or '@(NativeReferenceFile)' != '' ) was evaluated as ('' != '' or '' != '' or '' != '' or '' != '' ).
Task "Copy" skipped, due to false condition; ('$(SkipCopyWinMDArtifact)' != 'true' and '@(WinMDExpArtifacts)' != '') was evaluated as ('' != 'true' and '' != '').
Task "Message" skipped, due to false condition; ('$(SkipCopyWinMDArtifact)' != 'true' and '$(_WindowsMetadataOutputPath)' != '') was evaluated as ('' != 'true' and '' != '').
Target CopyFilesToOutputDirectory has been completed
Target "_CopyReferenceOnlyAssembliesForBuild" skipped, due to false condition; ('$(PreserveCompilationReferences)' == 'true') was evaluated as ('' == 'true').
Target PrepareForRun has been started
Target PrepareForRun has been completed
Target "UnmanagedRegistration" skipped, due to false condition; ('$(RegisterForComInterop)'=='true' and '$(OutputType)'=='library') was evaluated as (''=='true' and 'Library'=='library').
Target "_CheckForCompileOutputs" skipped. Previously built successfully.
Target "_SGenCheckForOutputs" skipped, due to false condition; ('$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')) was evaluated as ('Auto' == 'On' or (''!='' and 'Auto' == 'Auto')).
Target _CleanGetCurrentAndPriorFileWrites has been started
Comparison path is "H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2".
Comparison path is "bin\Release\".
Comparison path is "obj\Release\".
Target _CleanGetCurrentAndPriorFileWrites has been completed
Target IncrementalClean has been started
Comparison path is "bin\Release\".
Comparison path is "obj\Release\".
Task "WriteLinesToFile" skipped, due to false condition; ('@(_CleanUnfilteredPriorFileWrites)'!='@(_CleanUniqueRemainingFileWritesAfterIncrementalClean)') was evaluated as ('H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.dll;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.pdb;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompCore.dll;...'!='H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.dll;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.pdb;H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompCore.dll;...').
Target IncrementalClean has been completed
Target "PostBuildEvent" skipped, due to false condition; ('$(PostBuildEvent)' != '' and ('$(RunPostBuildEvent)' != 'OnOutputUpdated' or '$(_AssemblyTimestampBeforeCompile)' != '$(_AssemblyTimestampAfterCompile)')) was evaluated as ('' != '' and ('' != 'OnOutputUpdated' or '' != '')).
Target PostBuild has been started
copy H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.*  H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\
 copy H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\Config\*.xml H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2\config\
 copy H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\sqls\*.*  H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2\sqls\
 copy H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\layout\*.*  H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\..\..\..\MyComp\MyCompEngine\bin\Release\MyClient2\layout\
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.deps.json
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.dll
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\bin\Release\MyCompMyClient2.pdb
        3 file(s) copied.
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\Config\Executors.xml
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\Config\StateParams.xml
        2 file(s) copied.
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\sqls\Meta.sql
        1 file(s) copied.
H:\US_MyComp\MSBuild_Workarea\Prod\MyApp\Source\MyCustomer\MyClient2\MyCompMyClient2\layout\MyClient2_TargetImport_schema.xml
        1 file(s) copied.
Target PostBuild has been completed
Target "GenerateBuildDependencyFile" skipped. Previously built successfully.
Target "GenerateBuildRuntimeConfigurationFiles" skipped, due to false condition; ( '$(GenerateRuntimeConfigurationFiles)' == 'true') was evaluated as ( '' == 'true').
Target CoreBuild has been started
Target CoreBuild has been completed
Target AfterBuild has been started
Target AfterBuild has been completed
Target "_CheckForInvalidConfigurationAndPlatform" skipped. Previously built successfully.
Target "_CheckForInvalidConfigurationAndPlatform" skipped. Previously built successfully.
Target Build has been started
Target Build has been completed
Target "_PackAsBuildAfterTarget" skipped, due to false condition; ('$(GeneratePackageOnBuild)' == 'true' AND '$(IsInnerBuild)' != 'true') was evaluated as ('false' == 'true' AND '' != 'true').
Target Build has been completed
manojsitapara commented 2 years ago

@dsplaisted is there any update on this? let us know if you need any other information from our side. we are desperately waiting on this.

manojsitapara commented 2 years ago

Any update on this?

dsplaisted commented 2 years ago

Hi,

We would really need either a repro project or a binlog of the build to investigate this.

manojsitapara commented 2 years ago

I have added log details

https://github.com/dotnet/sdk/issues/23678#issuecomment-1033402194

geetmenon commented 2 years ago

Why is there no update on this issue?

Here are the details again. There are 3 solutions: 1) VS Solution1: This sln has MyCompEngine (executable) and MyCompCore (class library) projects. MyCompEngine has a project reference to MyCompCore.
MyCompEngine loads MyCompMyClient1.dll and MyCompMyClient2.dll dynamically at runtime. 2) VS Solution2: This has MyCompMyClient1 (class library) project. MyCompMyClient1 has a dll reference to MyCompCore.
3) VS Solution3: This has MyCompMyClient2 (class library) project. MyCompMyClient2 has a dll reference to MyCompCore.

Scenario: There were code changes in MyCompCore and MyCompMyClient1 projects. When we ran MSBuild: a) MyCompEngine.exe got rebuilt b) MyCompCore .dll got rebuilt c) MyCompMyClient1 dll got rebuilt (deps.json got rebuilt) d) MyCompMyClient2.dll got rebuilt (but deps.json did not get rebuilt, and therefore we get a runtime exception)

Based on the log file provided to you by @manojsitapara, please let us know why deps.json was not rebuilt for MyCompMyClient2.dll for the above scenario. Please provide us a fix for the same.

dsplaisted commented 2 years ago

It's not really feasible to investigate the issue with the text log. I would need a binlog or a repro project to investigate this.