By following Angular-Dart tutorial Chapter 07 I get:
'Scope' doesn't implement 'containsValue'.
It dosin't build...
For the record I did :
dart -c bin/generator.dart
It may have to do with Dart update, but I am not sure.
I am using a Windows 7 x64, Dart 1.1.1, Angular-Dart 0.9.4.
Chapter 7 is currently broken. Track https://github.com/angular/angular.dart.tutorial/issues/35
Related
I am trying to upgrade my Angular application that uses material from Angular 13 (13.1.0) to 14 (14.0.1). I am using steps provided at https://update.angular.io/?v=13.0-14.0.
My Angular and CLI versions upgraded successfully but getting following error while upgrading Material:
As of today, flex-layout was not updated to support Angular 14 (see this git issue). So either you can wait until it does, or try updating with the --force flag and hope that everything works.
I've installed electron-vue to use vue with electron-app. When I wrote the following command npm run dev an error was shown to me, I found listing directory instead of the LandingPage.
The electron-vue is not being updated at this time. (currently, electronic version 2.x)
There's a boilerplate that I forked the electron-vue and updated all the modules with the latest modules. The use method is the same and we have added the ui framework and css-precessor.
Electron 5
Vue-CLI 3
Babel 7
Vue 2.6
css-preprocessor
Sass
Less
Stylus
UI Framework
Quasar 1.x
Vuteify 2.x
We recommend you try it.
https://github.com/kdydesign/vue-electron5
After setting up VS Code, I'm trying to run an ASP.NET 5 project using Visual studio code's command palette on Ubuntu Linux 14.4.
The DNVM installed is for Mono. Following the steps given on VS code's official docs, the project is created with Yeoman scaffolder.
Whenever trying to start the project, I get the following error:
OmniSharp server is not running.
I found some posts when trying to solve this but most seems to be addressing either Console project or are given for OS x:
For a Console App
This is for debugging not running
The output of mono --version shows that it is >3.12:
My dnvm is already the latest
I can run the project by using dnx web command from Terminal.
However, my simple question:
How do I run ASP.NET 5 on Ubuntu using VS Code?
Side question : Not sure by when the debugging will be supported. Any rumours about the extension will be appreciated.
This seems to be a bug with OmniSharp and not specifically with VSCode
I am using specflow for BDD for a POC project. I had installed the nuget packages for Specflow ,Specflow.NUnit, NUnitTestAdapter and NUnit (version 2.6). I seemed to be happy since i was getting the expected result.
After a few days, I am working on a new project and i installed all the nuget packages mentioned above. Everything worked fine again. However, when i upgraded Nunit from version 2.6 to the latest stable version 3.0, my tests were not discovered in the Test explorer.
I can continue with the older version but still i would like to go with the latest stable version
I am not sure what steps do i need to take to get my specs running and see all my tests in the Test Explorer.
Any help would be appreciated.
Thanks.
The current version of specflow at time of writing (1.9) won't work with nunit 3. The new version, currently under development (v2) will support it so you will need to wait for that to use nunit v3, or use the beta version from the CI build
I had some trouble to display my project in FF cause of shadow_dom. I read that the shadow_dom package is deprecated so I followed the steps in http://pub.dartlang.org/packages/web_components and added web_components to my project.
Now I can build and run my project in FF. However when I include packages/web_components/platform.js and run my project in dartium it displays without css whereever I use shadow_dom. I also get the following error :
ShadowDOMPolyfill polyfill was loaded in Dartium. This will not work.
This indicates that Dartium's Chrome version is not compatible with
this version of web_components.
How to solve this ?