-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
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
Intermittent warning with Microsoft.Build.Engine, Version 14.0 #32
Comments
I've seen this before as well. Seems very similar to #26. This appears to resolve itself by closing and reopening Visual Studio in some cases. |
FYI - this is occurring on VS 2017 ... version 15.3.2 to be precise. |
Can you tell me a little bit about the project being scanned? Web / API / Class project? What version of the framework are they targeting? |
MVC Web project, .NET 4.6.1 |
We have the same issues. Puma scan complains about requiering msbuild V14, but VS 2017 is built on msbuild V15. |
Thanks, this will need to be investigated. .NET Standard / Core may not function the same way as the traditional framework references. |
VS Community 2017, .net core 1.1 shows this error permanently. Tried restarting IDE, uninstall, reinstall - nothing works. |
Thanks Omar, this is expected. .NET Core is not currently supported. The analyzer rules are currently targeting .NET 4.5 in order to complete the web.config transformation. We are planning on supporting netstandard20 (.NET Core 2.0) eventually but will need to recompile the code and do some regression testing. |
Config and markup file rules work in core! @ejohn20 , any timeline for .NET Core support? |
Wow, I didn't expect that to work ;) Opening a separate issue for .NET Core testing and support. I'm open to suggestions if anyone wants to do some testing and let us know the right configuration / packages to reference for full .NET Core support. |
We are getting this error also. Our project is targeting .NET 4.6. Even though this error is logged we still get some analysis warnings. I'm using v1.0.6 when I run this. Is there something we need to do to remove this warning? |
Updates in v2.0 will handle binding redirects and resolving the assemblies. New documentation will cover how to address these issues as well. |
Workaround until the next release is to edit projects files to not include the Microsoft.Build.*.dll's as analyzer references. Remove the following from project file. |
Closing until after the 2.0 release. We'll see how the latest version of Roslyn handles this. |
Receive an intermittent warning that says: Analyzer assembly \packages\Puma.Security.Rules.1.0.6\analyzers\dotnet\cs\Microsoft.Build.dll' depends on 'Microsoft.Build.Engine, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well.
If I uninstall and re-install the nuget - it goes away temporarily. Any ideas?
The text was updated successfully, but these errors were encountered: