We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TargetFramework: netcoreapp3.1 AzureFunctionsVersion: v3 Using the following targets from the Readme:
<Target Name="FunctionsPostBuildDepsCopy" AfterTargets="PostBuildEvent"> <Copy SourceFiles="$(OutDir)$(AssemblyName).deps.json" DestinationFiles="$(OutDir)bin\$(AssemblyName).deps.json" /> </Target> <Target Name="FunctionsPublishDepsCopy" AfterTargets="Publish"> <Copy SourceFiles="$(PublishDir)$(AssemblyName).deps.json" DestinationFiles="$(PublishDir)bin\$(AssemblyName).deps.json" /> </Target>
Result:
error MSB3030: Could not copy the file <elided> because it was not found.
When publishing, the source file appears to be located at "$(OutDir)$(AssemblyName).deps.json" not "$(PublishDir)$(AssemblyName).deps.json"
"$(OutDir)$(AssemblyName).deps.json"
"$(PublishDir)$(AssemblyName).deps.json"
The text was updated successfully, but these errors were encountered:
Thanks, @robertkety! Fixed
Sorry, something went wrong.
No branches or pull requests
TargetFramework: netcoreapp3.1
AzureFunctionsVersion: v3
Using the following targets from the Readme:
Result:
When publishing, the source file appears to be located at
"$(OutDir)$(AssemblyName).deps.json"
not"$(PublishDir)$(AssemblyName).deps.json"
The text was updated successfully, but these errors were encountered: