Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.14 KB

File metadata and controls

39 lines (30 loc) · 2.14 KB

Binary-decimal-hexadecimal-converter

Download .exe here

  • Convert between multiple binary, decimal and hexadecimal values.
  • Add a comment to them to remember what the value means.
  • Add rows with the "+" button
  • Delete rows with the "x" button.
  • Show exact bit positions for the binary value.

4

  • Shows a hint when you enter invalid characters.

grafik

Build it

if you do not want to use the exe but compile it yourself:

  • clone repo
  • open the solution in Visual Studio 2022
  • you can now simply build it with Build -> Build solution
  • if you want to have a single file .exe-file instead, do the following steps
    • Tools -> command line -> developer command prompt
    • copy this command into the command prompt and press enter:
      cd BinHexDecConverter
      • because otherwise it tries to add the unit test project to the single file and will fail doing that.
    • copy this command into the command prompt and press enter:
      • for systems where .net6 is NOT installed (it will include .net6 into the .exe):
        dotnet publish --runtime win-x64 -c Release --self-contained true -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true
      • for systems where .net6 IS installed (smaller .exe size because .net6 is not included):
        dotnet publish --runtime win-x64 -c Release --self-contained false -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true
    • the .exe will be in BinHexDecConverter\BinHexDecConverter\bin\Release\net6.0-windows\win-x64\publish
    • the command has to be used because the Build -> publish dialog in visual studio is not able to do that yet (version 16.10.2).