您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Zhanxin Yang 14886b49 Initial commit 2 年前
..
netcode.standards Initial commit 2 年前
.gitignore Initial commit 2 年前
README.md Initial commit 2 年前

README.md

.NET Tools for Unity Netcode

Netcode.Standards

C# coding standards tool for Netcode that relies on .editorconfig ruleset and dotnet format tool

How to Install & Uninstall

Build (Pack)

dotnet pack dotnet-tools/netcode.standards

Install

dotnet tool install --global --add-source ./dotnet-tools/netcode.standards netcode.standards

Check

netcode.standards --help

Uninstall

dotnet tool uninstall --global netcode.standards

How to Use

Commands

Check

# check for standards issues without touching files
netcode.standards --check

Fix

# try to fix standards issues and save file changes
netcode.standards --fix

Options

Specifying at least one of --check or --fix is required.

However, you can also specify other options to configure the tool.

Option Description
--project <project> Target project folder [default: testproject]
--pattern <pattern> Search pattern string [default: *.sln]
--verbosity <verbosity> Logs verbosity level [default: normal]
-?, -h, --help Show help and usage information