Skip to content

Commit 0fb3e58

Browse files
v10.0.1 + changelog
1 parent d675467 commit 0fb3e58

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

.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, main ]
88

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

1212
jobs:
1313
build:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1414
### C# -> VB
1515

1616

17+
## [10.0.1] - 2026-02-28
18+
19+
* Reintroduce tentative legacy support for dotnet 8 and VS2022
20+
* Support slnx format [1195](https://github.com/icsharpcode/CodeConverter/issues/1195)
21+
22+
### VB -> C#
23+
* Fix for ReDim Preserve of array property - [#1156](https://github.com/icsharpcode/CodeConverter/issues/1156)
24+
* Fix for with block conversion with null conditional [#1174](https://github.com/icsharpcode/CodeConverter/issues/1174)
25+
Fixes #1195
26+
27+
1728
## [10.0.0] - 2026-02-06
1829

1930
* Support for net framework dropped. Please use an older version if you are converting projects that still use it.

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 Condition="'$(LangVersion)' == ''">14.0</LangVersion>
11-
<AssemblyVersion>10.0.0.0</AssemblyVersion>
12-
<FileVersion>10.0.0.0</FileVersion>
13-
<Version>10.0.0</Version>
11+
<AssemblyVersion>10.0.1.0</AssemblyVersion>
12+
<FileVersion>10.0.1.0</FileVersion>
13+
<Version>10.0.1</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="10.0.0.0" Language="en-US" Publisher="IC#Code"/>
4+
<Identity Id="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="10.0.1.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)