redb

(★ 23)

Typed object storage for .NET. Schema = C# class. Full LINQ. Zero migrations. Postgres & MSSQL.

파일 탐색기

  • .gitignore
  • CHANGELOG.md
  • COLLATION.md
  • CONTRIBUTING.md
  • DATETIME.md
  • Directory.Build.props
  • LICENSE
  • NOTICE
  • README.md
  • redb.sln
  • ROADMAP.md
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

dotnet add package

설명 보기 ▼

Add or update a .NET package reference in a project file.

dotnet add package {{package}}

Add a package to the project in the current directory:

dotnet add {{path/to/file.csproj}} package {{package}}

Add a package to a specific project:

dotnet add package {{package}} {{[-v|--version]}} {{1.0.0}}

Add a specific version of a package to the project:

🔍

dotnet run

설명 보기 ▼

Run a .NET application without explicit compile or launch commands.

dotnet run

Run the project in the current directory:

dotnet run --project {{path/to/file.csproj}}

Run a specific project:

dotnet run -- {{arg1=foo arg2=bar ...}}

Run the project with specific arguments:

🔍

dotnet tool

설명 보기 ▼

Manage .NET tools and search published tools in NuGet.

dotnet tool install {{[-g|--global]}} {{dotnetsay}}

Install a global tool (don't use `--global` for local tools):

dotnet tool restore

Install tools defined in the local tool manifest:

dotnet tool update {{[-g|--global]}} {{tool_name}}

Update a specific global tool (don't use `--global` for local tools):

🔍

dotnet

설명 보기 ▼

크로스 플랫폼 .NET Core용 명령줄 도구.
`build`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://learn.microsoft.com/dotnet/core/tools>.

dotnet new {{template_short_name}}

새 .NET 프로젝트 초기화:

dotnet restore

NuGet 패키지 복원:

dotnet run

현재 디렉터리에서 .NET 프로젝트를 빌드하고 실행:

// repository documentation