---
# System prepended metadata

title: ASP.NET Core のビルド方法 2023-06-26
tags: [ビルド, ASP.NET Core, build]

---

---
lang: ja-jp
breaks: true
---
# ASP.NET Core のビルド方法 2023-06-26

## Build the ASP.NET Core repo

https://github.com/dotnet/aspnetcore/blob/main/docs/BuildFromSource.md

```shell=
git submodule update --init --recursive
```

以下、powershell で実行

```powershell=
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
```

```powershell=
./eng/scripts/InstallVisualStudio.ps1 Professional
```

```ps=
./restore.cmd
```

```powershell=
cd src\Components
./startvs.cmd
```
