> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# .NET SDKのインストール

.NETプロジェクトでは、Box .NET SDKを使用してBox APIを呼び出すことができます。

バージョン`5.8.0`までのSDKは、.NET Framework `4.5`以上および.NET Core `1.0`以上の両方で利用できます。バージョン`10.0.0`以降のSDKは、.NET Framework `4.6.2`以上および.NET `8.0`以上の両方で利用できます。SDKのインストール方法は、使用しているフレームワークによって異なります。

<Card href="https://github.com/box/box-windows-sdk-v2" arrow title="GitHubで.NET SDKの詳細を確認する" />

## .NET Framework

.NET Frameworkに.NET SDKをインストールするには、[Nuget][nuget]パッケージマネージャを使用して以下のコマンドを実行します。

```shell theme={null}
PM> Install-Package Box.V2.Core
```

## .NET Core

.NET Coreフレームワークに.NET SDKをインストールするには、[Nuget][nuget]パッケージマネージャを使用して以下のコマンドを実行します。

```shell theme={null}
PM> Install-Package Box.V2.Core
```

[nuget]: https://www.nuget.org/
