diff options
Diffstat (limited to '')
4 files changed, 28 insertions, 30 deletions
diff --git a/src/ext/PowerShell/powershell_t.proj b/src/ext/PowerShell/powershell_t.proj new file mode 100644 index 00000000..da54d629 --- /dev/null +++ b/src/ext/PowerShell/powershell_t.proj | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
| 3 | |||
| 4 | <Project Sdk="Microsoft.Build.Traversal"> | ||
| 5 | <ItemGroup> | ||
| 6 | <ProjectReference Include="test\WixToolsetTest.PowerShell\WixToolsetTest.Powershell.csproj" /> | ||
| 7 | <ProjectReference Include="wixext\WixToolset.PowerShell.wixext.csproj" Targets="Pack" Properties="NoBuild=true" /> | ||
| 8 | </ItemGroup> | ||
| 9 | |||
| 10 | <Target Name="WixClean" BeforeTargets="Restore" Condition="'$(SuppressWixClean)' != 'true'"> | ||
| 11 | <RemoveDir Directories="$(RootBuildFolder)PowerShell.wixext" /> | ||
| 12 | <RemoveDir Directories="$(USERPROFILE)\.nuget\packages\wixtoolset.PowerShell.wixext" Condition="'$(NUGET_PACKAGES)' == ''" /> | ||
| 13 | <RemoveDir Directories="$(NUGET_PACKAGES)\wixtoolset.PowerShell.wixext" Condition="'$(NUGET_PACKAGES)' != ''" /> | ||
| 14 | |||
| 15 | <Delete Files="$(ArtifactsFolder)WixToolset.PowerShell.wixext.*.nupkg" /> | ||
| 16 | </Target> | ||
| 17 | </Project> | ||
diff --git a/src/ext/PowerShell/ps.cmd b/src/ext/PowerShell/ps.cmd deleted file mode 100644 index 4a8aa61e..00000000 --- a/src/ext/PowerShell/ps.cmd +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | @setlocal | ||
| 2 | @pushd %~dp0 | ||
| 3 | |||
| 4 | @set _C=Debug | ||
| 5 | :parse_args | ||
| 6 | @if /i "%1"=="release" set _C=Release | ||
| 7 | @if not "%1"=="" shift & goto parse_args | ||
| 8 | |||
| 9 | @echo PowerShell.wixext build %_C% | ||
| 10 | |||
| 11 | :: Build | ||
| 12 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror || exit /b | ||
| 13 | |||
| 14 | :: Test | ||
| 15 | dotnet test -c %_C% --no-build test\WixToolsetTest.PowerShell || exit /b | ||
| 16 | |||
| 17 | :: Pack | ||
| 18 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.PowerShell.wixext.csproj || exit /b | ||
| 19 | |||
| 20 | @popd | ||
| 21 | @endlocal | ||
diff --git a/src/ext/PowerShell/test/WixToolsetTest.PowerShell/PowerShellExtensionFixture.cs b/src/ext/PowerShell/test/WixToolsetTest.PowerShell/PowerShellExtensionFixture.cs index eafda99f..a1dc3282 100644 --- a/src/ext/PowerShell/test/WixToolsetTest.PowerShell/PowerShellExtensionFixture.cs +++ b/src/ext/PowerShell/test/WixToolsetTest.PowerShell/PowerShellExtensionFixture.cs | |||
| @@ -2,14 +2,15 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolsetTest.PowerShell | 3 | namespace WixToolsetTest.PowerShell |
| 4 | { | 4 | { |
| 5 | using WixInternal.TestSupport; | 5 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
| 6 | using WixInternal.Core.TestPackage; | 6 | using WixInternal.MSTestSupport; |
| 7 | using WixInternal.Core.MSTestPackage; | ||
| 7 | using WixToolset.PowerShell; | 8 | using WixToolset.PowerShell; |
| 8 | using Xunit; | ||
| 9 | 9 | ||
| 10 | [TestClass] | ||
| 10 | public class PowerShellExtensionFixture | 11 | public class PowerShellExtensionFixture |
| 11 | { | 12 | { |
| 12 | [Fact] | 13 | [TestMethod] |
| 13 | public void CantBuildUsingTypesFileWithoutSnapIn() | 14 | public void CantBuildUsingTypesFileWithoutSnapIn() |
| 14 | { | 15 | { |
| 15 | var folder = TestData.Get(@"TestData\TypesFile"); | 16 | var folder = TestData.Get(@"TestData\TypesFile"); |
| @@ -19,8 +20,8 @@ namespace WixToolsetTest.PowerShell | |||
| 19 | var results = build.BuildAndQuery(args => { | 20 | var results = build.BuildAndQuery(args => { |
| 20 | wixRunnerResult = WixRunner.Execute(args); | 21 | wixRunnerResult = WixRunner.Execute(args); |
| 21 | }); | 22 | }); |
| 22 | Assert.NotNull(wixRunnerResult); | 23 | Assert.IsNotNull(wixRunnerResult); |
| 23 | Assert.Equal((int)PSErrors.Ids.NeitherIdSpecified, wixRunnerResult.ExitCode); | 24 | Assert.AreEqual((int)PSErrors.Ids.NeitherIdSpecified, wixRunnerResult.ExitCode); |
| 24 | } | 25 | } |
| 25 | } | 26 | } |
| 26 | } | 27 | } |
diff --git a/src/ext/PowerShell/test/WixToolsetTest.PowerShell/WixToolsetTest.Powershell.csproj b/src/ext/PowerShell/test/WixToolsetTest.PowerShell/WixToolsetTest.Powershell.csproj index 347ca1ed..cff13cb7 100644 --- a/src/ext/PowerShell/test/WixToolsetTest.PowerShell/WixToolsetTest.Powershell.csproj +++ b/src/ext/PowerShell/test/WixToolsetTest.PowerShell/WixToolsetTest.Powershell.csproj | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | 2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
| 3 | 3 | ||
| 4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="MSTest.Sdk"> |
| 5 | <PropertyGroup> | 5 | <PropertyGroup> |
| 6 | <TargetFramework>net6.0</TargetFramework> | 6 | <TargetFramework>net6.0</TargetFramework> |
| 7 | <IsWixTestProject>true</IsWixTestProject> | 7 | <IsWixMSTestProject>true</IsWixMSTestProject> |
| 8 | </PropertyGroup> | 8 | </PropertyGroup> |
| 9 | 9 | ||
| 10 | <ItemGroup> | 10 | <ItemGroup> |
| @@ -16,6 +16,7 @@ | |||
| 16 | </ItemGroup> | 16 | </ItemGroup> |
| 17 | 17 | ||
| 18 | <ItemGroup> | 18 | <ItemGroup> |
| 19 | <PackageReference Include="WixInternal.Core.TestPackage" /> | 19 | <PackageReference Include="WixInternal.MSTestSupport" /> |
| 20 | <PackageReference Include="WixInternal.Core.MSTestPackage" /> | ||
| 20 | </ItemGroup> | 21 | </ItemGroup> |
| 21 | </Project> | 22 | </Project> |
