Skip to content

Commit

Permalink
added config file to installer to actually enable long file name supp…
Browse files Browse the repository at this point in the history
…ort, bumped version
  • Loading branch information
Walkman100 committed Oct 12, 2018
1 parent c4e50fb commit 5df73ec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions KeyInsert.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MIT License
MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 2 additions & 0 deletions NSIS Installer for KeyInsert.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Section "Executable & Uninstaller"
SectionIn RO
SetOutPath $INSTDIR
File "bin\Release\${ProgramName}.exe"
File "bin\Release\${ProgramName}.exe.config"
WriteUninstaller "${ProgramName}-Uninst.exe"
SectionEnd

Expand Down Expand Up @@ -140,6 +141,7 @@ FunctionEnd
Section "Uninstall"
Delete "$INSTDIR\${ProgramName}-Uninst.exe" ; Remove Application Files
Delete "$INSTDIR\${ProgramName}.exe"
Delete "$INSTDIR\${ProgramName}.exe.config"
RMDir "$INSTDIR"

DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${ProgramName}" ; Remove Windows Programs & Features integration (uninstall info)
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Imports System.Runtime.InteropServices
' You can specify all values by your own or you can build default build and revision
' numbers with the '*' character (the default):

<Assembly: AssemblyVersion("1.4.0.0")>
<Assembly: AssemblyFileVersion("1.4.0.0")>
<Assembly: AssemblyVersion("1.4.1.0")>
<Assembly: AssemblyFileVersion("1.4.1.0")>

0 comments on commit 5df73ec

Please sign in to comment.