在 .NET Framework 4.5 中哪里可以找到 csc.exe?

Where to find csc.exe in .NET Framework 4.5?

我试图找到 csc.exe 将其添加到 PATH 系统变量。我一直在安装 Microsoft .NET Framework 4.5 SDK



为什么我在 C:\Windows\Microsoft.NET\Framework64 中看不到 v4.5?
在 .NET Framework 4.5 中哪里可以找到 csc.exe?

4.0 文件夹中的 CSC (C:\Windows\Microsoft.NET\Framework64\v4.0.30319) 也是 4.5 的 csc。 路径 C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe 适用于 64 位版本的框架。

# In PowerShell
# Dotnet's CSc.exe path:
[String]$cscPath = [System.IO.Path]::Combine($([System.Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory()), "csc.exe");
Write-Output $cscPath