Skip to content

Commit 13a9326

Browse files
6.3 version and change log
1 parent a1ef8a7 commit 13a9326

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
# Change Log
22
All notable changes to the code converter will be documented here.
33

4+
# 6.3.0 05/02/2019
5+
* VS 2019 support
6+
* Breaking API change: Most library API names and return types are now async
7+
* Improve VS startup time by making package load async
8+
* Added SourceLink
49

5-
# 6.3.0 TBC
6-
* Library API names and return types are now async
10+
### VB -> C#
11+
* Private setter added to conversion of ReadOnly properties to cater for backing field usage
12+
* Usage of compiler generated event variable name converted correctly
13+
* Access modifiers no longer added erroneously to static constructor
14+
* "Do Until" construct multi-part conditions are correctly converted
15+
* Tuple conversion support added
16+
* VB -> C#: Error (lot of comments about the issue) when define an array with number of elements
17+
* Decimal division conversion bugfix
18+
19+
### C# -> VB
20+
* GoTo Case with dot in name converted correctly
721

822
# 6.2.0 19/11/2018
923

CodeConverter.Web/CodeConverter.Web.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.2</TargetFramework>
55
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
6+
<AssemblyVersion>6.3.0.0</AssemblyVersion>
7+
<FileVersion>6.3.0.0</FileVersion>
8+
<Version>6.3.0</Version>
69
</PropertyGroup>
710

811
<ItemGroup>

ICSharpCode.CodeConverter/ICSharpCode.CodeConverter.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* Completely free and open source: Check out [GitHub](https://github.com/icsharpcode/CodeConverter#code-converter-).</Description>
1313
<Product>Code Converter for C# to/from VB.NET</Product>
1414
<Copyright>Copyright (c) 2014-2018 AlphaSierraPapa</Copyright>
15-
<AssemblyVersion>6.2.0.0</AssemblyVersion>
16-
<FileVersion>6.2.0.0</FileVersion>
17-
<Version>6.2.0</Version>
15+
<AssemblyVersion>6.3.0.0</AssemblyVersion>
16+
<FileVersion>6.3.0.0</FileVersion>
17+
<Version>6.3.0</Version>
1818
<PackageId>ICSharpCode.CodeConverter</PackageId>
1919
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2020
<PackageLicenseExpression>MIT</PackageLicenseExpression>

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="6.2.0.0" Language="en-US" Publisher="IC#Code"/>
4+
<Identity Id="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="6.3.0.0" Language="en-US" Publisher="IC#Code"/>
55
<DisplayName>Code Converter C# to/from VB.NET</DisplayName>
66
<Description xml:space="preserve">Based on Roslyn, this converter allows you to convert C# code to VB.NET and vice versa</Description>
77
<License>license.txt</License>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
platform: Any CPU
2-
version: 6.2.{build}
2+
version: 6.3.{build}
33
configuration: Debug
44
image: Visual Studio 2017
55

0 commit comments

Comments
 (0)