Reputation: 994
Our team is now trying Rider and we quite like it. We would like to setup some run configurations to run projects and some associated tasks with them (such as running grunt
prebuild).
When I setup the configurations, mark them all as "Share through VCS" and add them to git, after restarting Rider the configurations are not loaded. We have ignored everything in .idea/**
folder in our .gitignore
, except these run configurations in runConfigurations
folder.
Is it a problem with .gitignore
setup? Or is there some special setting we have to use in order to force Rider to load these configurations?
Upvotes: 1
Views: 1706
Reputation: 994
Rider 2019.3.2 saves run configurations as XML files with UTF-8 with BOM encoding. When you change the encoding manually to UTF-8 (without BOM) it starts working and the configurations are loaded as expected.
Upvotes: 3