msvc-kit 0.2.0

A portable MSVC Build Tools installer and manager for Rust development
# VX Project Configuration

# This file defines the tools and versions required for this project.

# Run 'vx setup' to install all required tools.

# Run 'vx dev' to enter the development environment.

# Project: msvc-kit



[tools]

rust = "latest"

just = "latest"

node = "22"



[settings]

# Automatically install missing tools when entering dev environment

auto_install = true

# Cache duration for version checks

cache_duration = "7d"



[scripts]

# Build commands

build = "just build"

build-release = "just build-release"



# Quality commands

check = "just check"

fmt = "just fmt"

lint = "just lint"

test = "just test"



# Documentation

doc = "just doc"

docs-dev = "just docs-dev"

docs-build = "just docs-build"



# Development

run = "just run"

ci = "just ci"



# Release

release-check = "just release-check"

publish = "just publish"