List of Supported Features

Editor
    Settings(General,ScrollBars,Tabs)       [✔]  
    Syntax highlighting using Syntaxes file [✔]  
    Auto-completion using Snippets files    [✔]  
    Support for Language Server Features    [✔]  
        Completions                         [✔]
        Hover                               [✔]  
        Goto definition/declaration         [✔]  
        Find references                     [✔]  
        Rename symbol                       [✔]  
        Selection ranges                    [✔]  
        Folding regions                     [✔]  
        Code actions                        [✔]  
        Inlay hints                         [✔]  
        Diagnostics                         [  ] 
        Document symbols                    [  ]  
        Semantic token highlighting         [  ]  
    Automatically inserts a closing Bracket [✔]
    Document Formatting using 'zig fmt'     [✔]
    Copy Json/Xml and Paset as Zig code     [ ]

Navigation  
    Object Browser                          [  ]

Build               
    Build                                   [✔]  
    OS selection                            [✔]  
    Architecture selection                  [✔] 
        WebAssembly                         [✔]
    Optimization selection                  [✔]  
    GUI configuration                       [✔]  
    C/C++ integration                       [✔]  
    Embedding resources                     [✔]
    Build.zig generation                    [✔]  (Project mode) 
    Build.zig.zon generation                [✔]  (Project mode) 
    ZigPackage                              [✔]  (Folder mode) 

Debug
    Step execution                          [✔]  
    Set breakpoints                         [✔]  
    Variable inspection                     [✔]  
    Cross-platform Debugging                [✔] 
        WebAssembly                         [  ]
    Hot Reload                              [  ]

Profiling
    CPU Usage, Memory Usage, Events, File IO [✔]  

Testing
    Run code tests using Test Explorer      [✔]  
    Unit Test Debugging                     [✔] 

Templates
    Package, Project, file                  [✔]
 
Project file mode                           [✔]  
Open folder mode                            [✔]  

Zig Tool-chain Installer                    [✔] 
Zig Package Installer                       [✔] 
Help                                        [✔]  

How to Install ZigVS

  1. Update Visual Studio
    If your version of Visual Studio is older than the required version for ZigVS, a version error will appear during installation.

    1. Install ZigVS from [Extension] → [Manage Extensions…] → [Browse] Extension Manager

    2. Install ZigVS from Visual Studio Marketplace MarketPlace


How to Set up Zig compiler and ZLS language server

  1. Install Zig Compiler:
    Download Zig and extract it to your desired location.
    ZigVS ver 0.15.1.0 has been tested with Zig ver 0.15.1.

  2. Install ZLS Language Server:
    Download Zig Language Server (zls) and place it in the same directory as the Zig Compiler.

  3. Set the path to a directory with Zig compiler and ZLS binaries

  1. Set the PATH environment variable to a directory with Zig compiler and ZLS binaries

  2. In ZigVS, enter the absolute path to zig.exe directly in [Tools] → [Options] or in the Project’s Properties.

Tool Option Zig General Built Tool
Project Propety General
  1. Add the directory that contains zig.exe to an environment variable (e.g., ZIG_HOME). Then, in [Tools] → [Options] or the Project’s Properties, set the path to zig.exe using that environment variable, e.g., $(ZIG_HOME).exe. (The path specified for ZIG_HOME needs to end with a backslash ’' )
Tool Option Zig General Built Tool
Project Propety General

How to Set up Zig and ZLS with Tool-chain installer

  1. [Extensions] → [ZigVS] → [Zig Tool chain Installer]

  2. ToolChainInstaller window will be opened


    Extensions_ZigVS_ToolChainInstaller

  3. Select Zig Tool chain Version

  4. Select ZLS Version

  5. Select CPU Architecture

  6. Set Install Directory
    If you specify a folder without write permissions, the Install button will not be activated. Please restart Visual Studio with Administrator privileges

  7. Select Environment Variable to set the path to zig.exe and zls.exe

  1. if you want to set the path to zig.ext and zls.exe in the environment Variable ‘PATH’, select “Set Environment Variable ‘PATH’”

  2. if you donot want to set the path in environment ‘PATH’, select “Do Not Set” and set the path to zig.exe in [Tools] → [Options] and in the Project’s Properties

Tool Option Zig General Built Tool
Project Propety General



c. if you want to use other environment variable insted of ‘PATH’, select “Set Other Environment Variable ‘ZIG_HOME’” and add $(ZIG_HOME) in the [tool path] propery in [Tools] → [Options] and in the Project’s Properties

Tool Option Zig General Built Tool

Project Propety General

  1. Once everything is set up, the Install button will become active, so press the Install button

  2. The progress and results of the installation will be displayed in the [output window]

Extensions_ZigVS_ToolChainInstaller

Note: If you see “Access to the path ‘….’ is denied”, the following scenarios might be considered
* File in use: Please close the application that is opening the file
* Directory without write permission: Please restart Visual Studio as Administrator

___

Folder Mode and Project Mode

Visual Studio has two modes: Project File mode and Folder mode.

  • Project Mode is used when developing in C++, C#, F#, and similar languages. You open project files such as .cppproj, .csproj, and .fsproj, and the file tree shows only the items that have been added to the project. Builds are not performed directly by Visual Studio but by a build tool called MSBuild. Project files can be built without Visual Studio. A “project” corresponds to what Zig calls a package. Although you can edit project files in a text editor, you can also configure them via Visual Studio’s Project Properties GUI. A solution file can contain multiple project files, allowing you to coordinate several projects to create a larger application.

  • Folder mode supports languages that aren’t built via project files. As in Visual Studio Code, you open a folder, and the file tree shows all files under that folder. Builds are performed by each language’s own build system.


ZigVS supports both Folder mode and Project File mode.

  • In Zig’s Folder mode, you use build.zig. As in Visual Studio Code, you open a folder that contains build.zig and set build.zig as the build file. To change the build, you need to edit build.zig, but you can still create new packages, build, debug, perform performance profiling, and run tests via the GUI just like with other projects.

  • In Zig’s Project mode, you use a project file called .zigproj. To start a project, create a .zigproj; to open the project, open the .zigproj. When you build the project (even from Visual Studio’s GUI), MSBuild reads the .zigproj and builds using zig.exe as the compiler and linker.

    • The benefits of Zig’s Project mode are:
      1. It makes integration with other projects easy. If you already have C++ or C# projects, using a Zig project file makes it easier to incorporate Zig code into existing codebases. For example, most commercially released games today are made with Visual Studio, and this approach is useful when you want to use some Zig code within such existing projects.
      2. You can change build settings via the Visual Studio GUI.
      3. Developers who have worked on Microsoft’s platform only need to learn the Zig language itself; they can continue to create new Zig projects, debug, profile performance, and run tests via the GUI as before—without having to learn Zig’s command-line tools or how to write build.zig.
    • You can also generate a build.zig from a .zigproj. Because a project file is a structured data file with a fixed schema, conversion is possible. By contrast, build.zig is a program rather than a schema-defined data file, so understanding its contents requires compilation; this is a drawback.



___ # How to open an existing Zig package

  1. Select [File] → [Open] → [Folder]
  2. When the dialog appears, choose the folder that contains build.zig.
  3. In Solution Explorer, folders and files will be displayed.
  4. Simply opening a folder does not allow you to build or debug.

  1. Select build.zig with the mouse, right-click it, and choose [Set as Startup Item] from the context menu.
Set As Startup Item_2
  1. The Build menu will appear, the Debug button will be enabled, and you will be able to perform builds and debugging.
Set As Startup Item_3



___ # How to create a new zig package

  1. Select [File] → [New] → [Zig Package (zig.exe init)]

  1. The Package Creator dialog will appear.
  2. Set Install Directory
  3. Set the package name
  4. Choose whether to compare folders or not.
  5. The Create button will become enabled, so press the button.

  1. The result will be displayed in the Output window.

  2. Simply opening a folder does not allow you to build or debug.

  1. Select build.zig with the mouse, right-click it, and choose [Set as Startup Item] from the context menu.
Set As Startup Item_2
  1. The Build menu will appear, the Debug button will be enabled, and you will be able to perform builds and debugging.
Set As Startup Item_3



___

How to create a new Zig Project

  1. Select [File] → [New] → [Project]

  2. The New Project wizard will appear.

  3. Select Zig in the language filter.

  4. Select a Zig template and use the Wizard to create the project.

  1. The [Build] menu, [Debug] menu, [Start] button, and [Configuration] selection pull-down are enabled and you can start working.

  1. To change settings, open the project Property Pages.
Project Propery Build

Cross-Platform Build & Debugging

See User Manual Page ___ # Profiler

  1. [Debug] > [Start Debugging] (or Start on the toolbar, or F5).

    When the app finishes loading, the Summary view of the Diagnostics Tools appears. If you need to open the window, click Debug > Windows > Show Diagnostic Tools.

  2. When you choose Record CPU Profile, Visual Studio will begin recording your functions and how much time they take to execute. You can only view this collected data when your application is halted at a breakpoint.

  1. Read Visual Studio Profiler Tools



___ # Testing To perform tests, select [Test] → [Test Explorer] to open the Test Explorer window. If .zig source code includes unit tests, their filenames will be listed.



___ # Syntax Highlighting

Example of changing Literals and Operators

You can change the colors and fonts of the Syntax Highlighting. It is possible to create a more color-coded and visually appealing screen than the default settings of Visual Studio. The following Display Items can be modified.

  • Plain Text
  • Comment
  • Keyword
  • Literal
  • Operator
  • String
  • Type
  • Inlay Hints - Parameters
  • Inlay Hints - Types

[Tool]→[Environment]→[Fonts and Colors]→[Display items]


Editor Setting

[Tools]→[Options]→[Text Editor]→[Zig]

Tool Option Text Editor Zig General

Tool Option Text Editor Zig. Scroll Bar
Tool Option Text Editor Zig Tabs
Tool Option Text Editor Zig Advanced



___ # Inlay hints

  • There is a switch for changing the display method under [Tools] → [Options] → [Text Editor] → [Inlay Hints].
Tool Option Text Editor Inlay Hints



___ # Formatting Right-click in the solution explorer and select ‘zig fmt’



___ # Snippets

  • Open Snippet manager
    [Tool] → [Code Snippets Manager] → [Zig]

  • Insert Snippets
    Right-click in the code editor → [Snippets] → [Insert Snippet]

Note: Code snippets: what they are and how to add one




Package Installer

1, [Extensions] → [ZigVS] → [Zig Package Installer]

2, Browse to the repository and branch that you want to install in the WebView.
3, Select a Installation Method from the drop down.
Currently, zig fetch, git and unzip are working correctly.
4. Once everything is set up, the Install button will become active, so press the Install button




Cross-platform Build

  • Open Folder Mode
    Select CPU and OS from the Standard Menu bar

  • Project File Mode
    Select CPU from the Stan dared Menu bar
    Select OS from [Project Property Page] → [Build] → [Assembly] → [OS]


Cross-platform Debugging


Cross-platform Debugging (Linux ubuntu on WSL)

  1. Generate the key pair on Windows.
    Run ssh-keygen with out a passphrase.
    id_rsa and is_rsa.pub will be generated.
ssh-keygen -t rsa -b 4096
dir %USERPROFILE%\.ssh
  1. Install openssh-server and gdb on linux
sudo apt update
sudo apt install openssh-server gdb
  1. Change ssh server port from 22 to 2022 on linux
sudo sed -i -E 's,^#?Port.*$,Port 2022,' /etc/ssh/sshd_config
sudo service ssh start
  1. Copy ‘id_rsa.pub’ from windows to linux
scp -P 2022 %USERPROFILE%\.ssh\id_rsa.pub [linux user name]@[linux ip address]:/home/[linux user name]/.ssh/authorized_keys
  1. reboot ssh server.
sudo service ssh restart
  1. Create a text file named ‘LaunchOptions.xml’ in the current project directory.
<?xml version="1.0" encoding="utf-8"?>
<PipeLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014"
    PipePath="C:\Windows\System32\OpenSSH\ssh.exe"
    PipeArguments="-p 2022 -i C:\Users\[windows user name]\.ssh\id_rsa [linux user name]@[linux ip address] -t gdb --interpreter=mi"
    TargetArchitecture="x64"
    MIMode="gdb"
    DebuggerPath="/usr/bin/gdb"
    Environment="VAR1=value1;VAR2=value2"
    ExePath="/mnt/[path to the target on windos]"
    ExeArguments=""
    WorkingDirectory="/home/[linux user name]"
    LaunchCompleteCommand="exec-run">
    <AdditionalSOLibSearchPath>/usr/lib;/usr/local/lib</AdditionalSOLibSearchPath>
</PipeLaunchOptions>
  1. Select MIEngie as a Visual Studio Debug Engine
  • Open Folder Mode
    Select OS from [Tools] → [Options] → [ZigVS] → [Folder Mode] → [Debug]

    [Debug Engine] MIEngine
    [MIEngine launch Options file name] LaunchOptions.xml

  • Project File Mode
    Select OS from [Project Property Page] → [Debug]

    [Debug Engine] MIEngine
    [MIEngine launch Options file name] LaunchOptions.xml


Cross-platform Debugging (Linux ubuntu on none WSL)

  1. Generate the key pair on Windows.
    Run ssh-keygen with out a passphrase.
    id_rsa and is_rsa.pub will be generated.
ssh-keygen -t rsa -b 4096
dir %USERPROFILE%\.ssh
  1. Install openssh-server and gdb on linux
sudo apt update
sudo apt install openssh-server gdb
  1. Copy ‘id_rsa.pub’ from windows to linux
scp %USERPROFILE%\.ssh\id_rsa.pub [linux user name]@[linux ip address]:/home/[linux user name]/.ssh/authorized_keys
  1. reboot ssh server.
sudo service ssh restart
  1. Create a text file named ‘LaunchOptions.xml’ in the current project directory.
<?xml version="1.0" encoding="utf-8"?>
<PipeLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014"
    PipePath="C:\Windows\System32\OpenSSH\ssh.exe"
    PipeArguments="-p 22 -i C:\Users\[windows user name]\.ssh\id_rsa [linux user name]@[linux ip address] -t gdb --interpreter=mi"
    TargetArchitecture="x64"
    MIMode="gdb"
    DebuggerPath="/usr/bin/gdb"
    Environment="VAR1=value1;VAR2=value2"
    ExePath="[path to the target on linux]"
    ExeArguments=""
    WorkingDirectory="/home/[linux user name]"
    LaunchCompleteCommand="exec-run">
    <AdditionalSOLibSearchPath>/usr/lib;/usr/local/lib</AdditionalSOLibSearchPath>
</PipeLaunchOptions>
  1. Select MIEngie as a Visual Studio Debug Engine
  • Open Folder Mode
    Select OS from [Tools] → [Options] → [ZigVS] → [Folder Mode] → [Debug]

    [Debug Engine] MIEngine
    [MIEngine launch Options file name] LaunchOptions.xml

  • Project File Mode
    Select OS from [Project Property Page] → [Debug]

    [Debug Engine] MIEngine
    [MIEngine launch Options file name] LaunchOptions.xml

  1. Set the command the output to the target machineL
  • Open Folder Mode
    [Tools] → [Options] → [ZigVS] → [Folder Mode] → [Pre Debug]

    [Pre Debug Command] scp [Pre Debug Command Arguments] -P 22 [target file fullpath] [Linux User Name]@[Linux Machine IP Addredd]:/home/[Linux User Name]/[your project directory]

  • Project File Mode
    [Project Property Page] → [Debug] → [PreDebug]

    [Pre Debug Command] scp [Pre Debug Command Arguments] -P 22 [target file fullpath] [Linux User Name]@[Linux Machine IP Addredd]:/home/[Linux User Name]/[your project directory]

Tips

  • Please check if the target file on linux has executable attribute.

  • The following command can be useful for troubleshooting when things don’t work as expected.

service ssh status
grep sshd /var/log/auth.log

Cross-platform Debugging (Android)

  1. Create a text file named ‘LaunchOptions.xml’ in the current project directory.
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Launch -->
<AndroidLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014"
    Package="com.example.hellojni"
    LaunchActivity=".HelloJni"
    SDKRoot="c:\android-bundle\sdk"
    NDKRoot="c:\android-ndk"
    TargetArchitecture="arm"
    IntermediateDirectory="c:\android-ndk\samples\hello-jni\obj\local\armeabi-v7a"
    AdditionalSOLibSearchPath=""
    DeviceId="emulator-5554"/>
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Attach -->
<AndroidLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014"
    Package="com.example.hellojni"
    Attach="true"
    SDKRoot="c:\android-bundle\sdk"
    NDKRoot="c:\android-ndk"
    TargetArchitecture="arm"
    IntermediateDirectory="c:\android-ndk\samples\hello-jni\obj\local\armeabi-v7a"
    AdditionalSOLibSearchPath=""
    DeviceId="emulator-5554"/>

Cross-platform Debugging (iOS)

  1. Create a text file named ‘LaunchOptions.xml’ in the current project directory.
<?xml version="1.0" encoding="utf-8"?>
<IOSLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014"
    RemoteMachineName="Chucks-mac-mini"
    PackageId="riesco.Sample"
    vcremotePort="3000"
    IOSDebugTarget="device"
    TargetArchitecture="x86"
    AdditionalSOLibSearchPath=""/>

Cross-platform Debugging (Serial Port Debugger)

  1. Create a text file named ‘LaunchOptions.xml’ in the current project directory.
<?xml version="1.0" encoding="utf-8"?>
<SerialPortLaunchOptions xmlns="http://schemas.microsoft.com/vstudio/MDDDebuggerOptions/2014"
    Port="COM1" TargetArchitecture="arm"/>

Help

See User Manual Page

or

[Extensions] → [ZigVS] → [User Manual Page]



___ # Questions, Requests, etc.


License

Refer to the LICENSE.txt file for licensing information.


Extension Name

ZigVS


Publisher

LuckyStar Studio LLC

Version History

    Version 0.15.1.0 (2025/09/10):
        Added support for Zig 0.15.1 and ZLS 0.15.0
            It is no longer mandatory to add the directory containing Zig.exe to the PATH environment variable. (See the documentation for details.)
        ZLS
            ZLS settings under [Tools] → [Options] now take effect immediately.
            Due to issues in both ZLS and Visual Studio, Inlay Hints sometimes did not work; we’ve implemented fixes/workarounds to address this as much as possible.
            The Inlay Hints toggle is now Alt + F1, the same as C#.
            Inlay Hints settings are now more granular and configurable.
        Fixes
            Fixed cases where the Toolchain Installer and Package Creator were hard to see under certain themes.
            Fixed an issue where Debug settings on the project property page were not applied.
            Fixed an issue where the project property page did not resize with the window.
            You can now use environment variables and Visual Studio macro paths in [Tools] → [Options] and in project properties.
            Fixed an issue where the Toolchain Installer created unnecessary duplicate entries in the user’s PATH.
        Improvements
            Added [Tools] → [Options] → [Text Editor] → [Zig] → [Advanced].

        Compatibility:
            Visual Studio 2022 17.14.13
            Zig Tool chain: zig-windows-x86_64-0.15.1.zip
            ZLS Language Server: zls-windows-x86_64-0.15.0.zip
   
   Version 0.14.1.1 (2025/06/16):
        Fixed a bug where incomplete support for the Zig 0.14 spec changes meant the output file name wasn’t correctly retrieved from Build.zig, preventing debugging from starting.
        Added 14 code snippets.
        You can now open the ZigVS GitHub page from the menu.

        Compatibility:
        Visual Studio 2022 17.14.3
        Zig Tool chain: zig-windows-x86_64-0.14.1.zip
        ZLS Language Server: zls-windows-x86_64-0.14.0.zip

    Version 0.14.1.0 (2025/06/16):
        Supported Zig 0.14.1.
        Modifications to the file and folder layout to prepare the ZigVS source code for public release. https://github.com/luckystar-studio/ZigVS

        Compatibility:
        Visual Studio 2022 17.14.3
        Zig Tool chain: zig-windows-x86_64-0.14.1.zip
        ZLS Language Server: zls-windows-x86_64-0.14.0.zip

    Version 0.14.0.1 (2025/03/07):
        Supported Zig 0.14.0.
        The compatibility issue between Visual Studio 2022 and ZLS has been resolved, so there is no longer a need to use a special version of ZLS.

        Compatibility:
        Visual Studio 2022 17.13.2
        Zig Tool chain: zig-windows-x86_64-0.14.0.zip
        ZLS Language Server: zls-windows-x86_64-0.14.0.zip

    Version 0.13.0.13 (2025/02/22):
        We modified the behavior so that if the Output window is not displayed when running the tool-chain or package installer, it will be shown automatically. This ensures that progress can be monitored.
        Automatically insert the corresponding closing character when pressing (, {, or [ under certain conditions.

        Compatibility:
        Visual Studio 2022 17.13.1
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible

    Version 0.13.0.12 (2024/08/17):
        The user manual for ZigVS, which was included in the Visual Studio extension package,
        has been removed from the package to reduce its size by hosting it on GitHub.
        Updated the packages that ZigVS depends on.
        Corrected some spelling errors.
        Fixed minor bugs.

        Compatibility:
        Visual Studio 2022 17.11.0
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible

    Version 0.13.0.11 (2024/08/15):
        In the previous version of ZigVS, unit tests could only be managed and executed on 
        a file-by-file basis from the Test Explorer. Now, they can be managed and executed individually.
        Additionally, it is now possible to debug unit tests from the Test Explorer.

        Compatibility:
        Visual Studio 2022 17.10.5
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible

    Version 0.13.0.10 (2024/08/11):
        You can now toggle inlay hints on and off using Alt + F1.
        We fixed the issue where typing '_' would prematurely end the completion.

        Compatibility:
        Visual Studio 2022 17.10.5
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible

    Version 0.13.0.9 (2024/07/08):
        In Open Folder mode
            The debugger and tests now function correctly even when you open a folder higher than the one containing build.zig.
            We have accelerated the startup of the debugger from the second time onward.

        Compatibility:
        Visual Studio 2022 17.10.3
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible
        
    Version 0.13.0.7 (2024/07/07):
        Due to a bug in the extension installer, an exception occurred when creating a new project unless the user manually installed Desktop Development with C++. We have fixed the installer to ensure that the necessary components are installed automatically.
        We have improved the error messages to make the situation clearer when zig.exe or zls.exe cannot be found.
        We have made the behavior of the key to confirm auto-complete similar to C#.

        Compatibility:
        Visual Studio 2022 17.10.3
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible
    
    Version 0.13.0.3 (2024/06/18):
        We have fixed the issue where you had to type the key twice for auto complete.

        Compatibility:
        Visual Studio 2022 17.10.1
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible
        
    Version 0.13.0.2 (2024/06/17):
        You can now create a new Zig package by going to [File] → [New] → [Zig Package].
        The project template now includes build.zig, so the project can be built from both build.zig and .zigproj files.

        Compatibility:
        Visual Studio 2022 17.10.1
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible
        
    Version 0.13.0.1 (2024/06/11):
        We have released the compatible ZIGVS version due to the release of ZIG and ZLS version 0.13.0.
        We have added support for building WebAssembly (WASM).
        We have modified the message for cases where tests are skipped due to compilation errors.
        We have improved the icons and logos.

        Compatibility:
        Visual Studio 2022 17.10.1
        Zig Tool chain: zig-windows-x86_64-0.13.0.zip
        ZLS Language Server: 0.13.0.VisualStudioCompatible
        
    Version 0.12.0.4 (2024/05/26):
        1, The project file generated for new projects now supports incremental builds. This prevents unnecessary zig builds.  
        2, The UI for setting modules in the project properties has been changed to allow multi-line editing instead of a single line.  
        3, The 'zig fetch' command now runs correctly for package installation through the package installer. Previously, the command was given a GitHub zip file, but zig couldn't handle the zip properly. Switching to .tar.gz resolved the issue.

        Compatibility:
        Visual Studio 2022 17.10.0
        Zig Tool chain: zig-windows-x86_64-0.12.0.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible

     Version 0.12.0.3 (2024/05/23):
        We have added an explanation on how to further color-code using Syntax Highlighting.
        To fix the issue with ZLS not functioning correctly, the recommended setup method for the Zig Tool chain has been changed from using the ZIG_TOOL_PATH environment variable to using the PATH environment variable. Consequently, the installer has also been modified to set the PATH.

        Compatibility:
        Visual Studio 2022 17.10.0
        Zig Tool chain: zig-windows-x86_64-0.12.0.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible

     Version 0.12.0.2 (2024/05/13):
        In ZigVS unit tests, we use the 'zig.exe test' command,
        but the result output format of the test command was changed in Zig 0.12.0.
        We have fixed cases where ZigVS could not correctly retrieve the test results.
        Additionally, if the output of 'zig.exe test' changes in the future and ZigVS can no longer read it,
        an error message will now be displayed to indicate this.

        Compatibility:
        Visual Studio 2022 17.9.6
        Zig Tool chain: zig-windows-x86_64-0.12.0.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible

     Version 0.12.0.1 (2024/05/07):
        We have released the compatible ZIGVS version due to the release of ZIG and ZLS version 0.12.0.
        Replace zig logo

        Compatibility:
        Visual Studio 2022 17.9.6
        Zig Tool chain: zig-windows-x86_64-0.12.0.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible
        
    Version 0.1.8 (2024/03/23):
        cross-platform build and debug
        fix a bug ZigVS disables CMake Project Debugger

        Compatibility:
        Visual Studio 2022 17.9.3
        Zig Tool chain: zig-windows-x86_64-0.12.0-dev.1849+bb0f7d55e.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible
        
    Version 0.1.6 (2024/02/24):
        Add Package Installer

        Compatibility:
        Visual Studio 2022 17.9
        Zig Tool chain: zig-windows-x86_64-0.12.0-dev.1849+bb0f7d55e.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible

    Version 0.1.5 (2024/01/28):
        Support Visual Studio Profiling Tools
        Minor Bug fix

        Compatibility:
        Visual Studio 2022 17.8.5
        Zig Tool chain: zig-windows-x86_64-0.12.0-dev.1849+bb0f7d55e.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible

    Version 0.1.4 (2024/01/21):
        Add Snippets Manager

    Version 0.1.3.1 (2024/01/14):
        ToolChainInstaller
            Check if install path already exists
            Extract empty directories during install

    Version 0.1.3 (2024/01/14):
        Project Property
            Header files directory field handles both relative and absolute paths
            Add library list and library directory fields
            Implemented modules and dependencies field
        Fix an issue where the User Manual does not appear in some cases
        Add Zig Tool chain Installer Window

    Version 0.1.2 (2024/01/07):
        Add file icon
        Support document formatting

    Version 0.1.1 (2023/12/30):
        Fixed not being able to specify the output destination in project mode
        Add editor settings

    Version 0.1 (2023/12/26):  
        Initial release

        Compatibility:
        Zig Tool chain: zig-windows-x86_64-0.12.0-dev.1849+bb0f7d55e.zip
        ZLS Language Server: 0.12.0.VisualStudioCompatible