Skip to content

Commit 7d939ba

Browse files
committed
Add axaml to VS. Bump up version number on all plugins to try to help with people not realizing they are versioned differently.
1 parent cbe200c commit 7d939ba

File tree

9 files changed

+15
-7
lines changed

9 files changed

+15
-7
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ body:
1313
- I've read the [documentation](https://csharpier.com/) and this isn't expected behavior
1414
- For formatting issues I have recreated the issue on the [playground](https://playground.csharpier.com/)
1515
- I'm using the latest version of CSharpier ![CSharpier](https://img.shields.io/nuget/v/CSharpier)
16+
-- `< 10.0.0`
1617
- I'm using the latest version of CSharpier's IDE plugin and understand it is versioned independently of CSharpier
18+
-- `>= 10.0.0`
1719
1820
- type: textarea
1921
id: description

Src/CSharpier.Rider/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
22

33
# csharpier-rider Changelog
4+
## 10.0.0
5+
- Make version a number that won't conflict with CSharpier itself.
46

57
## [2.3.0]
68
- Add a global format on save option

Src/CSharpier.Rider/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pluginVersion = 2.3.0
1+
pluginVersion = 10.0.0
22

33
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
44
pluginSinceBuild = 222

Src/CSharpier.VSCode/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 10.0.0
2+
- Make version a number that won't conflict with CSharpier itself.
3+
14
## 2.1.0
25
- Improved support for users that work with multiple dotnet architectures by splitting out installs of csharpier based on the architecture they were installed with.
36
- Improve formatting of documents to avoid scroll jumping around

Src/CSharpier.VSCode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "csharpier-vscode",
33
"displayName": "CSharpier - Code formatter",
44
"description": "Code formatter using csharpier",
5-
"version": "2.1.0",
5+
"version": "10.0.0",
66
"publisher": "csharpier",
77
"author": "CSharpier",
88
"homepage": "https://marketplace.visualstudio.com/items?itemName=csharpier.csharpier-vscode",

Src/CSharpier.VisualStudio/CSharpier.VisualStudio/CSharpierProcessProvider.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
namespace CSharpier.VisualStudio
1010
{
11-
using NuGet.Versioning;
12-
1311
public class CSharpierProcessProvider : IProcessKiller
1412
{
1513
private readonly CustomPathInstaller customPathInstaller;

Src/CSharpier.VisualStudio/CSharpier.VisualStudio/FormattingService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static bool IsSupportedLanguage(string language)
2626
// if new languages are added, follow this guide to update VSCT
2727
// https://learn.microsoft.com/en-us/visualstudio/extensibility/walkthrough-creating-a-view-adornment-commands-and-settings-column-guides?view=vs-2022
2828
// at this point it will probably just be adding new command placements + guidSymbols like the xaml one
29-
return language is "CSharp" or "XML" or "XAML";
29+
return language is "CSharp" or "XML" or "XAML" or "AXAML";
3030
}
3131

3232
public void Format(Document document)

Src/CSharpier.VisualStudio/CSharpier.VisualStudio/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="83d6b6a0-9e25-4034-80f3-38445d8a8837" Version="2.2.0" Language="en-US" Publisher="CSharpier" />
4+
<Identity Id="83d6b6a0-9e25-4034-80f3-38445d8a8837" Version="10.0.1" Language="en-US" Publisher="CSharpier" />
55
<DisplayName>CSharpier</DisplayName>
66
<Description xml:space="preserve">CSharpier is an opinionated code formatter for c#. It uses Roslyn to parse your code and re-prints it using its own rules.</Description>
77
<MoreInfo>https://github.com/belav/csharpier</MoreInfo>

Src/CSharpier.VisualStudio/ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## [2.2.0]
1+
## [10.0.1]
2+
- Add right click format command for AXAML. Requires csharpier configuration for < 1.3.0
3+
4+
## [2.2.0]
25
- Add right click format command for XAML. Ensure format on save also works
36

47
## [2.0.2]

0 commit comments

Comments
 (0)