diff --git a/scripts/build.ps1 b/scripts/build.ps1 index 25fc5911a9..90d48cd801 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -27,7 +27,7 @@ Param( [Parameter(Mandatory=$false)] [Alias("loc")] - [System.Boolean] $Localized = $false, + [Switch] $LocalizedBuild = $false, [Parameter(Mandatory=$false)] [Alias("ci")] @@ -155,7 +155,7 @@ function Invoke-Build Write-Log ".. .. Build: Source: $TPB_Solution" Write-Verbose "$dotnetExe build $TPB_Solution --configuration $TPB_Configuration --version-suffix $TPB_VersionSuffix -v:minimal -p:Version=$TPB_Version" - & $dotnetExe build $TPB_Solution --configuration $TPB_Configuration --version-suffix $TPB_VersionSuffix -v:minimal -p:Version=$TPB_Version -p:CIBuild=$TPB_CIBuild + & $dotnetExe build $TPB_Solution --configuration $TPB_Configuration --version-suffix $TPB_VersionSuffix -v:minimal -p:Version=$TPB_Version -p:CIBuild=$TPB_CIBuild -p:LocalizedBuild=$LocalizedBuild Write-Log ".. .. Build: Complete." if ($lastExitCode -ne 0) { diff --git a/scripts/build/TestPlatform.targets b/scripts/build/TestPlatform.targets index 259827d338..ccdde29ad1 100644 --- a/scripts/build/TestPlatform.targets +++ b/scripts/build/TestPlatform.targets @@ -1,8 +1,38 @@ - $(MSBuildThisFileDirectory)../../ + $(MSBuildThisFileDirectory)..\..\ + $(TestPlatformRoot)packages\ - + + + + + + + + + + + + + + + + + + + + + + + $(ProjectDir)obj\Resx + + + + + + + diff --git a/src/Microsoft.TestPlatform.Build/Microsoft.TestPlatform.Build.csproj b/src/Microsoft.TestPlatform.Build/Microsoft.TestPlatform.Build.csproj index 2ac7fcf652..751a747eb7 100644 --- a/src/Microsoft.TestPlatform.Build/Microsoft.TestPlatform.Build.csproj +++ b/src/Microsoft.TestPlatform.Build/Microsoft.TestPlatform.Build.csproj @@ -1,23 +1,20 @@ - + - ../../ + ..\..\ - Microsoft.TestPlatform.Build netstandard1.3;net46 true $(PackageTargetFallback);dnxcore50;portable-net45+win8;portable-net45+wp80+win8+wpa81+dnxcore50 - - + PreserveNewest - 1.6.0 @@ -35,10 +32,9 @@ 4.0.0 - - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.Client/Microsoft.TestPlatform.Client.csproj b/src/Microsoft.TestPlatform.Client/Microsoft.TestPlatform.Client.csproj index 9ecf8afd4e..4ced96b318 100644 --- a/src/Microsoft.TestPlatform.Client/Microsoft.TestPlatform.Client.csproj +++ b/src/Microsoft.TestPlatform.Client/Microsoft.TestPlatform.Client.csproj @@ -1,7 +1,7 @@ - + - ../../ + ..\..\ @@ -11,7 +11,7 @@ - + @@ -51,4 +51,4 @@ Microsoft.VisualStudio.TestPlatform.Client - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf index e020021cf6..c72b0209b2 100644 --- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf @@ -12,4 +12,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.Common/Microsoft.TestPlatform.Common.csproj b/src/Microsoft.TestPlatform.Common/Microsoft.TestPlatform.Common.csproj index 79b7431ecc..8a14befb54 100644 --- a/src/Microsoft.TestPlatform.Common/Microsoft.TestPlatform.Common.csproj +++ b/src/Microsoft.TestPlatform.Common/Microsoft.TestPlatform.Common.csproj @@ -1,7 +1,7 @@ - + - ../../ + ..\..\ @@ -19,7 +19,7 @@ - + diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf index bc50f7fa3d..ef4ef40977 100644 --- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf @@ -88,4 +88,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Microsoft.TestPlatform.CommunicationUtilities.csproj b/src/Microsoft.TestPlatform.CommunicationUtilities/Microsoft.TestPlatform.CommunicationUtilities.csproj index d863c4ce65..a3e78eae83 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/Microsoft.TestPlatform.CommunicationUtilities.csproj +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Microsoft.TestPlatform.CommunicationUtilities.csproj @@ -1,7 +1,7 @@ - + - ../../ + ..\..\ @@ -12,7 +12,7 @@ - + diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf index 4224f724a0..40c3267716 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf @@ -20,4 +20,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Microsoft.TestPlatform.CoreUtilities.csproj b/src/Microsoft.TestPlatform.CoreUtilities/Microsoft.TestPlatform.CoreUtilities.csproj index 61ee42b8cc..98ae93e551 100644 --- a/src/Microsoft.TestPlatform.CoreUtilities/Microsoft.TestPlatform.CoreUtilities.csproj +++ b/src/Microsoft.TestPlatform.CoreUtilities/Microsoft.TestPlatform.CoreUtilities.csproj @@ -1,6 +1,6 @@ - + - ../../ + ..\..\ @@ -10,7 +10,7 @@ - + @@ -57,4 +57,4 @@ Microsoft.VisualStudio.TestPlatform.CoreUtilities - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf index b9df068fc5..2e67511ef2 100644 --- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf @@ -64,4 +64,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Microsoft.TestPlatform.CrossPlatEngine.csproj b/src/Microsoft.TestPlatform.CrossPlatEngine/Microsoft.TestPlatform.CrossPlatEngine.csproj index 89bcda0337..e127fd49e0 100644 --- a/src/Microsoft.TestPlatform.CrossPlatEngine/Microsoft.TestPlatform.CrossPlatEngine.csproj +++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Microsoft.TestPlatform.CrossPlatEngine.csproj @@ -1,7 +1,7 @@ - + - ../../ + ..\..\ @@ -12,7 +12,7 @@ - + diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf index fca8d33c7f..2e324830bf 100644 --- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf @@ -66,6 +66,16 @@ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}) and try again. + + Could not find {0}. Make sure that the dotnet is installed on the machine. + Could not find {0}. Make sure that the dotnet is installed on the machine. + + + + Could not find testhost.dll for source '{0}'. Make sure test project has a nuget reference of package "microsoft.testplatform.testhost". + Could not find testhost.dll for source '{0}'. Make sure test project has a nuget reference of package "microsoft.testplatform.testhost". + + - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.csproj b/src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.csproj index a155db2ad1..b76c66ad1a 100644 --- a/src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.csproj +++ b/src/Microsoft.TestPlatform.Extensions.TrxLogger/Microsoft.TestPlatform.Extensions.TrxLogger.csproj @@ -1,7 +1,7 @@ - + - ../../ + ..\..\ @@ -17,7 +17,7 @@ - + diff --git a/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf b/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf index fd51175349..afe969e95d 100644 --- a/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf +++ b/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf @@ -125,4 +125,4 @@ Error Details: {1}:{2} - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.ObjectModel/Microsoft.TestPlatform.ObjectModel.csproj b/src/Microsoft.TestPlatform.ObjectModel/Microsoft.TestPlatform.ObjectModel.csproj index 172bc15a2b..f9a706fc12 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Microsoft.TestPlatform.ObjectModel.csproj +++ b/src/Microsoft.TestPlatform.ObjectModel/Microsoft.TestPlatform.ObjectModel.csproj @@ -1,13 +1,13 @@ - ../../ + ..\..\ Microsoft.VisualStudio.TestPlatform.ObjectModel net46;netstandard1.5 - $(PackageTargetFallback);dnxcore50;portable-net45+win8 + $(PackageTargetFallback);dnxcore50;portable-net45+win8 @@ -21,7 +21,7 @@ - + @@ -108,4 +108,4 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf b/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf index 7a81f9a004..014117a119 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf +++ b/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf @@ -16,4 +16,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf index 2a63166a82..abcadaeed8 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf @@ -255,4 +255,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.Utilities/Microsoft.TestPlatform.Utilities.csproj b/src/Microsoft.TestPlatform.Utilities/Microsoft.TestPlatform.Utilities.csproj index 2e915aae50..329f635d9a 100644 --- a/src/Microsoft.TestPlatform.Utilities/Microsoft.TestPlatform.Utilities.csproj +++ b/src/Microsoft.TestPlatform.Utilities/Microsoft.TestPlatform.Utilities.csproj @@ -1,6 +1,6 @@ - + - ../../ + ..\..\ @@ -10,7 +10,7 @@ - + @@ -43,4 +43,4 @@ Microsoft.VisualStudio.TestPlatform.Utilities - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf index 1beee4dcf6..07a69c0e27 100644 --- a/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf @@ -32,4 +32,4 @@ - + \ No newline at end of file diff --git a/src/Microsoft.TestPlatform.VSIXCreator/Microsoft.TestPlatform.VSIXCreator.csproj b/src/Microsoft.TestPlatform.VSIXCreator/Microsoft.TestPlatform.VSIXCreator.csproj index 78e78e2ec7..e1d2d737c4 100644 --- a/src/Microsoft.TestPlatform.VSIXCreator/Microsoft.TestPlatform.VSIXCreator.csproj +++ b/src/Microsoft.TestPlatform.VSIXCreator/Microsoft.TestPlatform.VSIXCreator.csproj @@ -1,6 +1,6 @@ - ../../ + ..\..\ diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj index a3343c89ef..0a2703ce57 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Microsoft.TestPlatform.VsTestConsole.TranslationLayer.csproj @@ -1,7 +1,7 @@ - + - ../../ + ..\..\ @@ -12,7 +12,7 @@ - + diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf index bc96246248..174ebe45d5 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf @@ -20,4 +20,4 @@ - + \ No newline at end of file diff --git a/src/datacollector.x86/datacollector.x86.csproj b/src/datacollector.x86/datacollector.x86.csproj index d545cd62bf..0c41898eaa 100644 --- a/src/datacollector.x86/datacollector.x86.csproj +++ b/src/datacollector.x86/datacollector.x86.csproj @@ -1,9 +1,8 @@ - + - ../../ + ..\..\ - datacollector.x86 netcoreapp1.0;net46 @@ -17,10 +16,8 @@ - - + - @@ -32,17 +29,14 @@ true - 1.0.0 - - - + \ No newline at end of file diff --git a/src/datacollector/datacollector.csproj b/src/datacollector/datacollector.csproj index 6202587a1d..b25ac9ed2e 100644 --- a/src/datacollector/datacollector.csproj +++ b/src/datacollector/datacollector.csproj @@ -1,6 +1,6 @@ - + - ../../ + ..\..\ @@ -15,11 +15,9 @@ - - - + + - @@ -31,7 +29,6 @@ true - 1.0.0 @@ -40,10 +37,9 @@ 4.1.0 - - + \ No newline at end of file diff --git a/src/package/package.csproj b/src/package/package.csproj index 55c43336f3..21f756ba8c 100644 --- a/src/package/package.csproj +++ b/src/package/package.csproj @@ -1,6 +1,6 @@ - ../../ + ..\..\ @@ -16,7 +16,6 @@ false false false - false false @@ -58,6 +57,6 @@ $(DefineConstants);RELEASE - - - + + + \ No newline at end of file diff --git a/src/testhost.x86/testhost.x86.csproj b/src/testhost.x86/testhost.x86.csproj index 7d8fb30710..ec0719f28a 100644 --- a/src/testhost.x86/testhost.x86.csproj +++ b/src/testhost.x86/testhost.x86.csproj @@ -1,7 +1,7 @@ - ../../ + ..\..\ @@ -17,7 +17,7 @@ - + @@ -45,4 +45,4 @@ - + \ No newline at end of file diff --git a/src/testhost/testhost.csproj b/src/testhost/testhost.csproj index a3d5302f91..283a6e3e1e 100644 --- a/src/testhost/testhost.csproj +++ b/src/testhost/testhost.csproj @@ -1,7 +1,7 @@ - ../../ + ..\..\ diff --git a/src/vstest.console/Resources/xlf/Resources.xlf b/src/vstest.console/Resources/xlf/Resources.xlf index 6cb8e1b7cf..1c317572a2 100644 --- a/src/vstest.console/Resources/xlf/Resources.xlf +++ b/src/vstest.console/Resources/xlf/Resources.xlf @@ -1,4 +1,4 @@ - + @@ -574,10 +574,6 @@ Standard Output Messages: - - - - Attachments: @@ -633,6 +629,11 @@ The file {0} provided is read only + + Timeout to connect or process request for DesignModeClient on port: {0} + Timeout to connect or process request for DesignModeClient on port: {0} + + - + \ No newline at end of file diff --git a/src/vstest.console/vstest.console.csproj b/src/vstest.console/vstest.console.csproj index 524668cd0c..d1c31038a8 100644 --- a/src/vstest.console/vstest.console.csproj +++ b/src/vstest.console/vstest.console.csproj @@ -1,7 +1,7 @@ - ../../ + ..\..\ @@ -17,7 +17,7 @@ - + @@ -65,4 +65,4 @@ - + \ No newline at end of file