Answers for "Could not find a part of the path ... bin\roslyn\csc.exe"

1

Could not find a part of the path ... bin\roslyn\csc.exe

<Target Name="CopyRoslynFiles" AfterTargets="AfterBuild" Condition="!$(Disable_CopyWebApplication) And '$(OutDir)' != '$(OutputPath)'">
    <ItemGroup>
      <RoslynFiles Include="$(CscToolPath)\*" />
    </ItemGroup>
    <MakeDir Directories="$(WebProjectOutputDir)\bin\roslyn" />
    <Copy SourceFiles="@(RoslynFiles)" DestinationFolder="$(WebProjectOutputDir)\bin\roslyn" SkipUnchangedFiles="true" Retries="$(CopyRetryCount)" RetryDelayMilliseconds="$(CopyRetryDelayMilliseconds)" />
</Target>
Posted by: Guest on September-08-2021

Code answers related to "Could not find a part of the path ... bin\roslyn\csc.exe"

Browse Popular Code Answers by Language