I have downloaded a running project from stackblitz (https://stackblitz.com/edit/angular-dynamic-form-builder) of dynamic form builder.
I am using angular 9, and unable to run it on local machine after installing dependencies(using npm install).
it is saying error TS2339: Property 'isHovering' does not exist on type 'FileComponent'. But on stackblitz it is working fine. any help will be appreciated.
Great question. I had the exact same problem.
I ran ng update #angular/cli #angular/core and everything then worked accordingly.
Hope this helps. Cheers.
M
Related
I notice that the mosaic package was updated a few days ago (1.8.3). Since then, I keep getting an error message that mosaic can't load.
> library(mosaic)
Error: package or namespace load failed for ‘mosaic’:
object ‘compare’ is not exported by 'namespace:mosaicCore'
The package installed, and it works on a PC. I've tried reinstalling R and R studio to be sure but I keep getting the same error. Anyone who has had the same problem or figured out how to fix it?
It works fine on a Mac (it was developed on a Mac).
I'm not sure how you did your installation, but you also need to have an updated version of mosaicCore. Looks like that didn't happen for some reason.
I'd suggest updating mosaicData and ggformula as well, if your update method didn't trigger those already. All four packages went to CRAN last week. If it has been awhile, you might do update.packages().
My daughter met the same problem today.
As per the suggestion here, we install the newest mosaicData, and the problem remains.
Then quit Rstudio, restart Rstudio, after running library(mosaic) again, it mentions that several packages are missing,
After installing the missing packages, everything is ok.
I had other people in my class that had the same issue. Similar to the above answer, i had to:
Uninstall/delete the package ggformula
Update the package mosaicCore
Reinstall ggformula
Reinstall mosaic
That is how i was able to resolve the issue.
I am getting the following error when i try to build an AspNetCore Web Application targeting netcoreapp2.2.
Error MSB4057 The target "ResolveTagHelperRazorGenerateInputs" does not exist in the project. C:\Program Files\dotnet\sdk\2.2.103\Sdks\Microsoft.NET.Sdk.Razor\build\netstandard2.0\Sdk.Razor.CurrentVersion.targets
I have tried the following:
clear cache on vs according to this post
update vs2017 to 15.9.5
reinstall net core sdks
reinstall vs
Nothing helped. I first got the error during an upgrade from core 2.1 to core 2.2 on a different project, and it's possible that by mistake edited the
Sdk.Razor.CurrentVersion.targets file. From that moment on, i keep getting this error on any project that targets core 2.2 (even new ones).
Does anyone encountered this problem or have any clues about solving it?
Thanks
After long battles it figured out to be a problem with VS NuGet Package Manager.
All I had to do was:
VS > Tools > Options > NuGet Package Manager > Clear All NuGet Cache(s).
The Following Link was my solution. I also struggled to get this fixed.
Just copy the files from the NetStandard2.0 folder from GitHub then replace it with you Directory from the same location.
Hopefully this helps someone.!
Here is the Answered Link:
https://social.msdn.microsoft.com/Forums/en-US/cafc9823-eb61-46f7-8489-007242ef2ad2/target-quotresolvetaghelperrazorgenerateinputsquot-does-not-exist-in-the-project?forum=msbuild
Here is the GitHub Link
https://github.com/aspnet/Razor/tree/master/src/Microsoft.NET.Sdk.Razor/build/netstandard2.0
I encountered the same issue during the Azure build pipeline process, and clearing the NuGet package cache resolved the issue.
Solution:
I used a dotnet tasks with "custom" to issue the following command before NuGet package restore task:
command:
dotnet nuget locals global-packages -c
Screenshot shows the build pipeline task
For me the solution was as follows:
In Visual Studio
Right click on each project and click "Unload Project"
Right click on each project and click "Reload Project"
I created a new project in Angular, using Visual Studio.
I noticed the angular version that visual studio that was attributed to the project was the 5.2 version of Angular.
My client wants the version to specifically be the version 6 of Angular.
I researched and found out you could just change the version manually on the package.json file. I had an error after doing these changes to the file. I did find some posts here on stackoverflow , which say to run some commands like here.
But this hasn't worked out for me. I get this error:
"ERROR in node_modules/#angular/common/src/location/location.d.ts(1,10): error TS2305: Module '"C:/Users/ABCUSER/source/repos/ABC/ABC/ClientApp/node_modules/rxjs/Rx"' has no exported member 'SubscriptionLike'."
What else should I try?
my package.json file can be found here:
api.myjson.com/bins/e7rcc
Thanks in advance!
i have issue when i run fat jar of actframework which is created using shade plugin.
java -jar jarFile
I still got App not found issue. What is missing ? Appreciate for you help. Thanks.
#user3242789 please fire a bug report on https://github.com/actframework/actframework/issues
Actually this is because your app dir is not set correctly. Checkout http://actframework.org/doc/faq
I am finding error in compiling my android project containing a sample scoreloop integration in cocos2dx.
Thanks
I faced a similar situation. I figured out it was due to too long directory path. Try to put IDE somewhere else having shorter path.
I had your very same problem. syslimit.h is shipped within the NDK.
Reinstall the NDK and it will work. It worked for me.