You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host-object " Help (-h) - [Switch] - Prints this help message."
115
-
Write-Host-object " Clean (-cl) - [Switch] - Indicates that this should be a clean build."
116
-
Write-Host-object " SkipRestore (-sr) - [Switch] - Indicates nuget package restoration should be skipped."
117
-
Write-Host-object " ClearPackageCache (-cache) - [Switch] - Indicates local package cache should be cleared before restore."
118
-
Write-Host-object " Updatexlf (-uxlf) - [Switch] - Indicates that there are resource changes and that these need to be copied to other languages as well."
119
-
Write-Host-object " IsLocalizedBuild (-loc) - [Switch] - Indicates that the build needs to generate resource assemblies as well."
120
-
Write-Host-object " Official - [Switch] - Indicates that this is an official build. Only used in CI builds."
121
-
Write-Host-object " Full - [Switch] - Indicates to perform a full build which includes Adapter, Framework"
117
+
Write-Host-object " Help (-h) - [switch] - Prints this help message."
118
+
Write-Host-object " Clean (-cl) - [switch] - Indicates that this should be a clean build."
119
+
Write-Host-object " SkipRestore (-sr) - [switch] - Indicates nuget package restoration should be skipped."
120
+
Write-Host-object " ClearPackageCache (-cache) - [switch] - Indicates local package cache should be cleared before restore."
121
+
Write-Host-object " Updatexlf (-uxlf) - [switch] - Indicates that there are resource changes and that these need to be copied to other languages as well."
122
+
Write-Host-object " IsLocalizedBuild (-loc) - [switch] - Indicates that the build needs to generate resource assemblies as well."
123
+
Write-Host-object " Official - [switch] - Indicates that this is an official build. Only used in CI builds."
124
+
Write-Host-object " Full - [switch] - Indicates to perform a full build which includes Adapter, Framework"
125
+
Write-Host-object " DisallowPrereleaseMSBuild (-np) - [switch] - Uses an RTM version of MSBuild to build the projects"
126
+
Write-Host-object ""
127
+
Write-Host-object " Configuration (-c) - [string] - Specifies the build configuration. Defaults to 'Debug'."
128
+
Write-Host-object " FrameworkVersion (-fv) - [string] - Specifies the version of the Test Framework nuget package."
129
+
Write-Host-object " AdapterVersion (-av) - [string] - Specifies the version of the Test Adapter nuget package."
130
+
Write-Host-object " VersionSuffix (-vs) - [string] - Specifies the version suffix for the nuget packages."
131
+
Write-Host-object " Target - [string] - Specifies the build target. Defaults to 'Build'."
122
132
Write-Host-object ""
123
-
Write-Host-object " Configuration (-c) - [String] - Specifies the build configuration. Defaults to 'Debug'."
124
-
Write-Host-object " FrameworkVersion (-fv) - [String] - Specifies the version of the Test Framework nuget package."
125
-
Write-Host-object " AdapterVersion (-av) - [String] - Specifies the version of the Test Adapter nuget package."
126
-
Write-Host-object " VersionSuffix (-vs) - [String] - Specifies the version suffix for the nuget packages."
127
-
Write-Host-object " Target - [String] - Specifies the build target. Defaults to 'Build'."
133
+
Write-Host-object " Steps (-s) - [string[]] - List of build steps to run, valid steps: `"UpdateTPVersion`", `"Restore`", `"Build`", `"Publish`""
128
134
129
135
Write-Host-object ""
130
136
Exit0
@@ -316,7 +322,7 @@ function Sync-PackageVersions {
<ImportProject="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props') and $(FrameworkIdentifier) != 'NetCore'" />
8
+
9
+
<ImportProject="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props"Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props') and $(FrameworkIdentifier) != 'NetCore' and $(IncludeMicrosoftCommon) == 'true'" />
8
10
<!-- Import props/targets with $(RepoRoot) since msbuild takes the relative path based on settings.targets and not with respect to the project. -->
<ImportProject="$(MSBuildToolsPath)\Microsoft.CSharp.targets"Condition="($(TargetFrameworkProfile) == '' or $(TargetFrameworkProfile) != 'Profile259') and $(TargetPlatformIdentifier) != 'UAP' and $(FrameworkIdentifier) != 'NetCore'"/>
5
+
<ImportProject="$(MSBuildToolsPath)\Microsoft.CSharp.targets"Condition="($(TargetFrameworkProfile) == '' or $(TargetFrameworkProfile) != 'Profile259') and $(TargetPlatformIdentifier) != 'UAP' and $(FrameworkIdentifier) != 'NetCore' and $(IncludeMicrosoftCommon) == 'true'"/>
0 commit comments