Skip to content

Commit 7302941

Browse files
Major version bump since we're dropping support for net framework
1 parent 8567efc commit 7302941

4 files changed

Lines changed: 21 additions & 5 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ master ]
88

99
env:
10-
BuildVersion: '9.2.7'
10+
BuildVersion: '10.0.0'
1111

1212
jobs:
1313
build:

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
88
### Vsix
99

1010

11+
### VB -> C#
12+
13+
14+
### C# -> VB
15+
16+
17+
## [10.0.0] - 2026-02-06
18+
19+
* Support for net framework dropped. Please use an older version if you are converting projects that still use it.
20+
* dotnet 10 required to run codeconv command line tool
21+
* Improvements to codeconv tool to support converting newer dotnet versions
22+
23+
### Vsix
24+
25+
1126
### VB -> C#
1227

1328
* Xor operator overloads now converted [#1182](htts://github.com/icsharpcode/CodeConverter/issues/1182)
@@ -17,6 +32,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1732

1833
## [9.2.7] - 2025-02-15
1934

35+
This is the last version that supports net framework.
2036

2137
### Vsix
2238

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<WarningLevel>4</WarningLevel>
99
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
1010
<LangVersion>10.0</LangVersion>
11-
<AssemblyVersion>9.2.7.0</AssemblyVersion>
12-
<FileVersion>9.2.7.0</FileVersion>
13-
<Version>9.2.7</Version>
11+
<AssemblyVersion>10.0.0.0</AssemblyVersion>
12+
<FileVersion>10.0.0.0</FileVersion>
13+
<Version>10.0.0</Version>
1414
<Authors>ICSharpCode</Authors>
1515
<Copyright>Copyright (c) 2017-2023 AlphaSierraPapa for the CodeConverter team</Copyright>
1616
<Company>ICSharpCode</Company>

Vsix/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="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="9.2.7.0" Language="en-US" Publisher="IC#Code"/>
4+
<Identity Id="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="10.0.0.0" Language="en-US" Publisher="IC#Code"/>
55
<DisplayName>Code Converter (VB - C#)</DisplayName>
66
<Description xml:space="preserve">Convert VB.NET to C# and vice versa with this roslyn based converter</Description>
77
<MoreInfo>https://github.com/icsharpcode/CodeConverter</MoreInfo>

0 commit comments

Comments
 (0)