diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-02-14 22:29:39 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2025-02-14 22:29:39 -0500 |
| commit | a181c02fd5ef6d601a98778a5c9e20b5c52779ca (patch) | |
| tree | 7f6989e81ce05264f4c93e481e257a8cebdc6ded /src/ext/VisualStudio/visualstudio_t.proj | |
| parent | 1be4e0930eb296f44b8cecd10fc9632a867149ce (diff) | |
| download | wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.tar.gz wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.tar.bz2 wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.zip | |
Convert ext\ to MSTest and traversal projects.
- Move ext\ unit tests to MSTest.
- MSBuildify ext projects with MSTest execution.
- Fork test support projects for MSTest:
- WixInternal.TestSupport
- WixInternal.Core.TestPackage
Diffstat (limited to 'src/ext/VisualStudio/visualstudio_t.proj')
| -rw-r--r-- | src/ext/VisualStudio/visualstudio_t.proj | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ext/VisualStudio/visualstudio_t.proj b/src/ext/VisualStudio/visualstudio_t.proj new file mode 100644 index 00000000..52de8019 --- /dev/null +++ b/src/ext/VisualStudio/visualstudio_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.VisualStudio\WixToolsetTest.VisualStudio.csproj" /> | ||
| 7 | <ProjectReference Include="wixext\WixToolset.VisualStudio.wixext.csproj" Targets="Pack" Properties="NoBuild=true" /> | ||
| 8 | </ItemGroup> | ||
| 9 | |||
| 10 | <Target Name="WixClean" BeforeTargets="Restore" Condition="'$(SuppressWixClean)' != 'true'"> | ||
| 11 | <RemoveDir Directories="$(RootBuildFolder)VisualStudio.wixext" /> | ||
| 12 | <RemoveDir Directories="$(USERPROFILE)\.nuget\packages\wixtoolset.VisualStudio.wixext" Condition="'$(NUGET_PACKAGES)' == ''" /> | ||
| 13 | <RemoveDir Directories="$(NUGET_PACKAGES)\wixtoolset.VisualStudio.wixext" Condition="'$(NUGET_PACKAGES)' != ''" /> | ||
| 14 | |||
| 15 | <Delete Files="$(ArtifactsFolder)WixToolset.VisualStudio.wixext.*.nupkg" /> | ||
| 16 | </Target> | ||
| 17 | </Project> | ||
