Skip to content

Commit 6fac7ec

Browse files
author
A9G-Data-Droid
committed
Version 1.0.0.0
- The first release verified with integration tests.
1 parent 10bd0be commit 6fac7ec

8 files changed

Lines changed: 16 additions & 11 deletions

File tree

TextFileConvert/TextFileConvert.vbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<Description>This provides text file conversion capabilities like the common Unix utilities "ux2dos" and "dos2ux".</Description>
99
<Copyright>Copyright 2018 Adam Kauffman</Copyright>
1010
<Deterministic>false</Deterministic>
11-
<AssemblyVersion>0.2.0.0</AssemblyVersion>
12-
<PackageReleaseNotes>This is the beta build.</PackageReleaseNotes>
11+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
12+
<PackageReleaseNotes>The first release verified with integration tests.</PackageReleaseNotes>
1313
<PackageTags>ux2dos, dos2ux</PackageTags>
1414
<PackageProjectUrl>https://github.com/A9G-Data-Droid/TextFileConvert</PackageProjectUrl>
1515
<PackageIcon>ux2dos.png</PackageIcon>

TextFileConvert/common.vb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ Public Module common
1010
''' <param name="programName"></param>
1111
Public Sub PrintUsage(programName As String)
1212
Console.WriteLine(
13-
"NAME
13+
"
14+
NAME
1415
{0} - Text file format converter
1516

1617
SYNOPSIS
1718
{0} oldfilename newfilename
1819

1920
DESCRIPTION
20-
{0} reads oldfilename and writes out newfilename, converting line endings.", programName)
21+
{0} reads oldfilename and writes out newfilename, converting line endings.
22+
", programName)
2123
End Sub
2224

2325
''' <summary>

dos2ux/My Project/PublishProfiles/FolderProfile.pubxml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
1414
<PublishSingleFile>True</PublishSingleFile>
1515
<PublishReadyToRun>True</PublishReadyToRun>
1616
<PublishTrimmed>True</PublishTrimmed>
17+
<TrimMode>Link</TrimMode>
1718
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
1819
</PropertyGroup>
1920
</Project>

dos2ux/dos2ux.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Module Dos2Ux
1616
Try
1717
'exitCode = Await ConvertLineEndings.Dos2Ux(args(0), args(1))
1818
exitCode = ConvertLineEndings.Dos2Ux(args(0), args(1)).GetAwaiter().GetResult()
19-
Console.WriteLine("Conversion complete.")
19+
Console.WriteLine("Conversion complete: " & args(1))
2020
Catch ex As Exception
2121
Console.WriteLine("Conversion failed.")
2222
exitCode = ex.HResult

dos2ux/dos2ux.vbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<OptionInfer>Off</OptionInfer>
1414
<Description>This provides text file conversion capabilities like the common Unix utility "dos2ux".</Description>
1515
<Copyright>Copyright 2018 Adam Kauffman</Copyright>
16-
<AssemblyVersion>0.2.0.0</AssemblyVersion>
17-
<PackageReleaseNotes>This is the beta build.</PackageReleaseNotes>
16+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
17+
<PackageReleaseNotes>The first release verified with integration tests.</PackageReleaseNotes>
1818
<ApplicationIcon>ux2dos.ico</ApplicationIcon>
1919
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
2020
<NeutralLanguage>en</NeutralLanguage>

ux2dos/My Project/PublishProfiles/FolderProfile.pubxml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
1010
<PublishProtocol>FileSystem</PublishProtocol>
1111
<TargetFramework>net5.0</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13-
<SelfContained>true</SelfContained>
13+
<SelfContained>True</SelfContained>
1414
<PublishSingleFile>True</PublishSingleFile>
1515
<PublishReadyToRun>True</PublishReadyToRun>
1616
<PublishTrimmed>True</PublishTrimmed>
17+
<TrimMode>Link</TrimMode>
18+
<IncludeNativeLibrariesForSelfExtract>True</IncludeNativeLibrariesForSelfExtract>
1719
</PropertyGroup>
1820
</Project>

ux2dos/ux2dos.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Module Ux2Dos
1616
Try
1717
'exitCode = Await ConvertLineEndings.Ux2Dos(args(0), args(1))
1818
exitCode = ConvertLineEndings.Ux2Dos(args(0), args(1)).GetAwaiter().GetResult()
19-
Console.WriteLine("Conversion complete.")
19+
Console.WriteLine("Conversion complete: " & args(1))
2020
Catch ex As Exception
2121
Console.WriteLine("Conversion failed.")
2222
exitCode = ex.HResult

ux2dos/ux2dos.vbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<OptionInfer>Off</OptionInfer>
1414
<Description>This provides text file conversion capabilities like the common Unix utility "ux2dos".</Description>
1515
<Copyright>Copyright 2018 Adam Kauffman</Copyright>
16-
<AssemblyVersion>0.2.0.0</AssemblyVersion>
17-
<PackageReleaseNotes>This is the beta build.</PackageReleaseNotes>
16+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
17+
<PackageReleaseNotes>The first release verified with integration tests.</PackageReleaseNotes>
1818
<ApplicationIcon>ux2dos.ico</ApplicationIcon>
1919
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
2020
<NeutralLanguage>en</NeutralLanguage>

0 commit comments

Comments
 (0)