You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,17 @@
1
-
# 0.29.0
1
+
# 0.29.1
2
+
## What's Changed
3
+
### Sorting of usings with underscore differs from Visual Studio [#1327](https://github.com/belav/csharpier/issues/1327)
4
+
CSharpier now sorts `_` to the bottom of usings.
5
+
```c#
6
+
usingSomeCompany.MWord;
7
+
usingSomeCompany.ZWord;
8
+
usingSomeCompany._Word;
9
+
```
10
+
### Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. [#1324](https://github.com/belav/csharpier/issues/1324)
11
+
CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file
### The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled [#1131](https://github.com/belav/csharpier/issues/1131)
4
17
Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
0 commit comments