Zhoujiazhiwork

- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 12
-
Created Why Git Show History Does Not Show the Most Recent Commit?
I made two commits to a file (file A): CommitA CommitB When I use "Git Show History" in Rider, only CommitA appears. Why doesn't CommitB show up, and how can I view all changes? -
-
Created How to combine "Reformat Code" and "Optimize Imports" into a Single Hotkey in Rider
I would like to combine two actions into a single hotkey in mac: Reformat Code (currently bound to Option+Cmd+L) Optimize Imports (currently bound to Ctrl+Option+O) -
Created How to move all methods to another class
HelloI'm going to move lots of static methods in static class B into static class A, but it's very tedious that I move them one by one by select the method => refactor => move => select the target ... -
Created Change all access modifiers by Refactor/Rename
Like the code below, What I want to do is change access modifier of Test method from “public” to “protected”, However it did not like the rename operator which will automatically rename the B.Test(... -
Created Rider stuck after I'm creating a csharp file
It happen lots of times, sometime I need to create many csharp class this problem will occur, then the rider will be frozen thus I have to force close it -
Edited How to ensure that a field of enum be referenced only once
HiI have a enum which looks like:```public enum Code{Code1, Code2, Code3, ….}```I want every individual Code be referenced only once, if a Code is being used more than one place, a warning or error... -
Created How to auto import without I approved
when I copy the code into file, I have to click (option + enter in Mac) to approve the import tooltip, which is tired when sometime I'm refactoring the project with so many (option + enter). so wo... -
-
Created Is it possible to sync the project to another machine in real-time
I have two computers, I want to sync the project to another computer in real-time. I do not want to use git to do it because I need to input git command every time which is annoying.