Skip to content

Commit 365302e

Browse files
Remove support for previous Visual Studio versions. 17.6+ only
1 parent 24a2932 commit 365302e

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
77

88
### Vsix
99

10+
* Compatible with Visual Studio 2022 17.6 onwards
1011

1112
### VB -> C#
1213

1314

1415
### C# -> VB
1516

17+
* Converts file scoped namespaces
1618

1719
## [9.2.5] - 2024-01-31
1820

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Convert code from VB.NET to C# (and vice versa) using Roslyn - all free and open
66
* [Visual Studio extension](https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.CodeConverter)
77
* To install close VS and double-click the downloadeded .vsix file
88
* [Online snippet converter](https://icsharpcode.github.io/CodeConverter/)
9-
* Command line `dotnet tool install ICSharpCode.CodeConverter.codeconv --global` (still requires VS2019+ installed)
9+
* Command line `dotnet tool install ICSharpCode.CodeConverter.codeconv --global` (still requires VS2022 17.6+ installed)
1010
* [Nuget library](https://www.nuget.org/packages/ICSharpCode.CodeConverter/) (this underpins all other free converters you'll find online)
1111

1212
See [wiki](https://github.com/icsharpcode/CodeConverter/wiki) for advice on getting the best results, or the [changelog](https://github.com/icsharpcode/CodeConverter/blob/master/CHANGELOG.md) for recent improvements.
@@ -15,7 +15,7 @@ See [wiki](https://github.com/icsharpcode/CodeConverter/wiki) for advice on gett
1515

1616
Adds context menu items to convert projects/files between VB.NET and C#. See the [wiki documentation](https://github.com/icsharpcode/CodeConverter/wiki) for advice / help using it.
1717

18-
Download from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.CodeConverter) (Use VS 2019+)
18+
Download from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.CodeConverter) (Use VS 2022 17.6+)
1919

2020
* Flexible: Convert a small selection, or a whole solution in one go, in either direction.
2121
* Accurate: Full project context (through Roslyn) is used to get the most accurate conversion.

Vsix/source.extension.vsixmanifest

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,13 @@
1313
<Tags>code converter vb csharp visual basic csharp net translate</Tags>
1414
</Metadata>
1515
<Installation>
16-
<InstallationTarget Version="[16.0,17.0)" Id="Microsoft.VisualStudio.Community">
17-
<ProductArchitecture>x86</ProductArchitecture>
18-
</InstallationTarget>
19-
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.Community">
16+
<InstallationTarget Version="[17.6,18.0)" Id="Microsoft.VisualStudio.Community">
2017
<ProductArchitecture>amd64</ProductArchitecture>
2118
</InstallationTarget>
22-
<InstallationTarget Version="[17.0,18.0)" Id="Microsoft.VisualStudio.Community">
19+
<InstallationTarget Version="[17.6,18.0)" Id="Microsoft.VisualStudio.Community">
2320
<ProductArchitecture>arm64</ProductArchitecture>
2421
</InstallationTarget>
2522
</Installation>
26-
<Dependencies>
27-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.7.2,)" />
28-
<!--<Dependency Id="Microsoft.VisualStudio.MPF.14.0" DisplayName="Visual Studio MPF 14.0" d:Source="Installed" Version="[14.0]" />-->
29-
</Dependencies>
3023
<Assets>
3124
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
3225
</Assets>

0 commit comments

Comments
 (0)