21 строка
714 B
PowerShell
21 строка
714 B
PowerShell
# docfx.ps1
|
|
$VisualStudioVersion = "15.0";
|
|
$DotnetSDKVersion = "2.0.0";
|
|
|
|
# Get dotnet paths
|
|
$MSBuildExtensionsPath = "C:\Program Files\dotnet\sdk\" + $DotnetSDKVersion;
|
|
$MSBuildSDKsPath = $MSBuildExtensionsPath + "\SDKs";
|
|
|
|
# Get Visual Studio install path
|
|
$VSINSTALLDIR = $(Get-ItemProperty "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\VisualStudio\SxS\VS7").$VisualStudioVersion;
|
|
|
|
# Add Visual Studio environment variables
|
|
$env:VisualStudioVersion = $VisualStudioVersion;
|
|
$env:VSINSTALLDIR = $VSINSTALLDIR;
|
|
|
|
# Add dotnet environment variables
|
|
$env:MSBuildExtensionsPath = $MSBuildExtensionsPath;
|
|
$env:MSBuildSDKsPath = $MSBuildSDKsPath;
|
|
|
|
# Build our docs
|
|
& .\tools\docfx.console\tools\docfx @args |