diff options
| author | Rob Mensching <rob@firegiant.com> | 2022-10-12 22:01:55 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2022-10-14 20:13:50 -0700 |
| commit | 07b3d459ea0a45cbef29b98d283edafbab26462a (patch) | |
| tree | 1e834882038ba3862f8acb7b60e7a4bfaef793fd /src/internal/WixToolset.BaseBuildTasks.Sources | |
| parent | 5567239a9411aac769a34f2c65b80a523a577ad7 (diff) | |
| download | wix-07b3d459ea0a45cbef29b98d283edafbab26462a.tar.gz wix-07b3d459ea0a45cbef29b98d283edafbab26462a.tar.bz2 wix-07b3d459ea0a45cbef29b98d283edafbab26462a.zip | |
Normalize ToolsetTask implementation to call wix.exe and heat.exe
Share the ToolsetTask implementation that can find .NET Core and
.NET Framework with multiple architectures.
Fixes 6951
Diffstat (limited to '')
| -rw-r--r-- | src/internal/WixToolset.BaseBuildTasks.Sources/BaseToolsetTask.cs (renamed from src/wix/WixToolset.BuildTasks/ToolsetTask.cs) | 9 | ||||
| -rw-r--r-- | src/internal/WixToolset.BaseBuildTasks.Sources/FileSearchHelperMethods.cs (renamed from src/wix/WixToolset.BuildTasks/FileSearchHelperMethods.cs) | 2 | ||||
| -rw-r--r-- | src/internal/WixToolset.BaseBuildTasks.Sources/WixCommandLineBuilder.cs (renamed from src/wix/WixToolset.BuildTasks/WixCommandLineBuilder.cs) | 2 | ||||
| -rw-r--r-- | src/internal/WixToolset.BaseBuildTasks.Sources/WixToolset.BaseBuildTasks.Sources.csproj | 36 |
4 files changed, 43 insertions, 6 deletions
diff --git a/src/wix/WixToolset.BuildTasks/ToolsetTask.cs b/src/internal/WixToolset.BaseBuildTasks.Sources/BaseToolsetTask.cs index 3eee7625..d9e3b5e8 100644 --- a/src/wix/WixToolset.BuildTasks/ToolsetTask.cs +++ b/src/internal/WixToolset.BaseBuildTasks.Sources/BaseToolsetTask.cs | |||
| @@ -1,13 +1,13 @@ | |||
| 1 | // 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. | 1 | // 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 | 2 | ||
| 3 | namespace WixToolset.BuildTasks | 3 | namespace WixToolset.BaseBuildTasks |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using System.IO; | 6 | using System.IO; |
| 7 | using System.Runtime.InteropServices; | 7 | using System.Runtime.InteropServices; |
| 8 | using Microsoft.Build.Utilities; | 8 | using Microsoft.Build.Utilities; |
| 9 | 9 | ||
| 10 | public abstract class ToolsetTask : ToolTask | 10 | public abstract class BaseToolsetTask : ToolTask |
| 11 | { | 11 | { |
| 12 | /// <summary> | 12 | /// <summary> |
| 13 | /// Gets or sets additional options that are appended the the tool command-line. | 13 | /// Gets or sets additional options that are appended the the tool command-line. |
| @@ -88,6 +88,7 @@ namespace WixToolset.BuildTasks | |||
| 88 | commandLineBuilder.AppendIfTrue("-v", this.VerboseOutput); | 88 | commandLineBuilder.AppendIfTrue("-v", this.VerboseOutput); |
| 89 | commandLineBuilder.AppendArrayIfNotNull("-wx", this.TreatSpecificWarningsAsErrors); | 89 | commandLineBuilder.AppendArrayIfNotNull("-wx", this.TreatSpecificWarningsAsErrors); |
| 90 | commandLineBuilder.AppendIfTrue("-wx", this.TreatWarningsAsErrors); | 90 | commandLineBuilder.AppendIfTrue("-wx", this.TreatWarningsAsErrors); |
| 91 | commandLineBuilder.AppendTextIfNotNull(this.AdditionalOptions); | ||
| 91 | } | 92 | } |
| 92 | 93 | ||
| 93 | protected sealed override string GenerateResponseFileCommands() | 94 | protected sealed override string GenerateResponseFileCommands() |
| @@ -152,11 +153,11 @@ namespace WixToolset.BuildTasks | |||
| 152 | private string GetDefaultToolFullPath() | 153 | private string GetDefaultToolFullPath() |
| 153 | { | 154 | { |
| 154 | #if NETCOREAPP | 155 | #if NETCOREAPP |
| 155 | var thisTaskFolder = Path.GetDirectoryName(typeof(ToolsetTask).Assembly.Location); | 156 | var thisTaskFolder = Path.GetDirectoryName(typeof(BaseToolsetTask).Assembly.Location); |
| 156 | 157 | ||
| 157 | return Path.Combine(thisTaskFolder, this.ToolExe); | 158 | return Path.Combine(thisTaskFolder, this.ToolExe); |
| 158 | #else | 159 | #else |
| 159 | var thisTaskFolder = Path.GetDirectoryName(new Uri(typeof(ToolsetTask).Assembly.CodeBase).AbsolutePath); | 160 | var thisTaskFolder = Path.GetDirectoryName(new Uri(typeof(BaseToolsetTask).Assembly.CodeBase).AbsolutePath); |
| 160 | 161 | ||
| 161 | var archFolder = GetArchitectureFolder(thisTaskFolder); | 162 | var archFolder = GetArchitectureFolder(thisTaskFolder); |
| 162 | 163 | ||
diff --git a/src/wix/WixToolset.BuildTasks/FileSearchHelperMethods.cs b/src/internal/WixToolset.BaseBuildTasks.Sources/FileSearchHelperMethods.cs index 94ff8c67..442fedd6 100644 --- a/src/wix/WixToolset.BuildTasks/FileSearchHelperMethods.cs +++ b/src/internal/WixToolset.BaseBuildTasks.Sources/FileSearchHelperMethods.cs | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // 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. | 1 | // 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 | 2 | ||
| 3 | namespace WixToolset.BuildTasks | 3 | namespace WixToolset.BaseBuildTasks |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using System.IO; | 6 | using System.IO; |
diff --git a/src/wix/WixToolset.BuildTasks/WixCommandLineBuilder.cs b/src/internal/WixToolset.BaseBuildTasks.Sources/WixCommandLineBuilder.cs index a979dbb0..152992dd 100644 --- a/src/wix/WixToolset.BuildTasks/WixCommandLineBuilder.cs +++ b/src/internal/WixToolset.BaseBuildTasks.Sources/WixCommandLineBuilder.cs | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // 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. | 1 | // 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 | 2 | ||
| 3 | namespace WixToolset.BuildTasks | 3 | namespace WixToolset.BaseBuildTasks |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
diff --git a/src/internal/WixToolset.BaseBuildTasks.Sources/WixToolset.BaseBuildTasks.Sources.csproj b/src/internal/WixToolset.BaseBuildTasks.Sources/WixToolset.BaseBuildTasks.Sources.csproj new file mode 100644 index 00000000..6ae5165e --- /dev/null +++ b/src/internal/WixToolset.BaseBuildTasks.Sources/WixToolset.BaseBuildTasks.Sources.csproj | |||
| @@ -0,0 +1,36 @@ | |||
| 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> | ||
| 5 | <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
| 6 | |||
| 7 | <PropertyGroup> | ||
| 8 | <TargetFramework>netstandard2.0</TargetFramework> | ||
| 9 | <PackageDescription>WiX Toolset BuildTasks Foundation Sources</PackageDescription> | ||
| 10 | <IsPackable>true</IsPackable> | ||
| 11 | <EnableDefaultItems>false</EnableDefaultItems> | ||
| 12 | <IncludeBuildOutput>false</IncludeBuildOutput> | ||
| 13 | <ContentTargetFolders>contentFiles</ContentTargetFolders> | ||
| 14 | <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> | ||
| 15 | <GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
| 16 | <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> | ||
| 17 | <NoWarn>CS8021</NoWarn> | ||
| 18 | <NoBuild>true</NoBuild> | ||
| 19 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
| 20 | <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> | ||
| 21 | </PropertyGroup> | ||
| 22 | |||
| 23 | <ItemGroup> | ||
| 24 | <Compile Include="*.cs" Pack="true" PackagePath="$(ContentTargetFolders)\cs\netstandard2.0\$(PackageId)\%(RecursiveDir)" /> | ||
| 25 | <EmbeddedResource Include="*.resx" Pack="true" PackagePath="$(ContentTargetFolders)\any\any\$(PackageId)\%(RecursiveDir)" /> | ||
| 26 | </ItemGroup> | ||
| 27 | |||
| 28 | <ItemGroup> | ||
| 29 | <PackageReference Remove="@(PackageReference)" /> | ||
| 30 | </ItemGroup> | ||
| 31 | |||
| 32 | <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> | ||
| 33 | |||
| 34 | <Target Name="Compile" /> | ||
| 35 | <Target Name="CopyFilesToOutputDirectory" /> | ||
| 36 | </Project> | ||
