Skip to content

Commit cc3bdbf

Browse files
Update readme - technically 17.8 probably still works but I haven't tested it
1 parent 11b6408 commit cc3bdbf

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

README.md

Lines changed: 4 additions & 3 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 VS2022 17.1+ installed)
9+
* Command line `dotnet tool install ICSharpCode.CodeConverter.codeconv --global` (still requires VS2026 18.0+ 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 2022 17.1+)
18+
Download from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.CodeConverter) (Use VS VS2026 18.0+)
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.
@@ -47,10 +47,11 @@ Visual Basic .NET is slowly dying. It has support for *some* project types on .N
4747
* Integrating the NuGet library
4848
* See [CodeConversion.ConvertDocumentUnhandledAsync](https://github.com/icsharpcode/CodeConverter/blob/8226313a8d46d5dd73bd35f07af2212e6155d0fd/Vsix/CodeConversion.cs#L226) or [CodeConversion.ConvertProjectUnhandled](https://github.com/icsharpcode/CodeConverter/blob/daa741246770fabf9aa87cd75b753220306aaaaa/Vsix/CodeConversion.cs#L276-L279) in the VSIX project.
4949
* See [ConverterController](https://github.com/icsharpcode/CodeConverter/blob/master/Web/ConverterController.cs) for a more web-focused API.
50+
* See older builds in [Releases](https://github.com/icsharpcode/CodeConverter/tags) if you need to convert net framework projects.
5051

5152
## Building/running from source
5253

53-
1. Ensure you have [.NET Core SDK 6.0](https://dotnet.microsoft.com/download/dotnet-core/6.0)
54+
1. Ensure you have [.NET Core SDK 10.0](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
5455
2. Open the solution in Visual Studio 2022+ (Community edition is sufficient)
5556
3. To run the website, set CodeConverter.Web as the startup project
5657
* You will need [Node (LTS)](https://community.chocolatey.org/packages/nodejs-lts) 16.* (node 17 introduces a breaking change causing ERR_OSSL_EVP_UNSUPPORTED)

Vsix/source.extension.vsixmanifest

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
<Tags>code converter vb csharp visual basic csharp net translate</Tags>
1414
</Metadata>
1515
<Installation>
16-
<InstallationTarget Version="[17.6,18.0)" Id="Microsoft.VisualStudio.Community">
17-
<ProductArchitecture>amd64</ProductArchitecture>
18-
</InstallationTarget>
19-
<InstallationTarget Version="[17.6,18.0)" Id="Microsoft.VisualStudio.Community">
20-
<ProductArchitecture>arm64</ProductArchitecture>
21-
</InstallationTarget>
16+
<InstallationTarget Version="[17.8,18.0)" Id="Microsoft.VisualStudio.Community">
17+
<ProductArchitecture>amd64</ProductArchitecture>
18+
</InstallationTarget>
19+
<InstallationTarget Version="[17.8,18.0)" Id="Microsoft.VisualStudio.Community">
20+
<ProductArchitecture>arm64</ProductArchitecture>
21+
</InstallationTarget>
2222
</Installation>
2323
<Assets>
2424
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />

0 commit comments

Comments
 (0)