diff options
| author | Bob Arnson <bob@joyofsetup.com> | 2020-06-08 09:11:35 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@joyofsetup.com> | 2020-06-08 09:11:35 -0400 |
| commit | d141190ab6dae5afeecb515e59e82fae1b580e48 (patch) | |
| tree | 180d03e8a05e13cb8fd866e8d95202edf6ee5aaa /src | |
| parent | 864d9ef13f33ded262a593c0c66e2463aef7a38a (diff) | |
| download | wix-d141190ab6dae5afeecb515e59e82fae1b580e48.tar.gz wix-d141190ab6dae5afeecb515e59e82fae1b580e48.tar.bz2 wix-d141190ab6dae5afeecb515e59e82fae1b580e48.zip | |
Fix a couple of many warnings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec | 3 | ||||
| -rw-r--r-- | src/wixlib/bal.wixproj | 14 |
2 files changed, 8 insertions, 9 deletions
diff --git a/src/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec b/src/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec index 101a6671..d1633cb0 100644 --- a/src/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec +++ b/src/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec | |||
| @@ -5,8 +5,7 @@ | |||
| 5 | <version>$version$</version> | 5 | <version>$version$</version> |
| 6 | <authors>WiX Toolset Team</authors> | 6 | <authors>WiX Toolset Team</authors> |
| 7 | <owners>WiX Toolset Team</owners> | 7 | <owners>WiX Toolset Team</owners> |
| 8 | <!-- <license type="expression">MS-RL</license> --> | 8 | <license type="expression">MS-RL</license> |
| 9 | <licenseUrl>https://licenses.nuget.org/MS-RL</licenseUrl> | ||
| 10 | <projectUrl>https://github.com/wixtoolset/Bal.wixext</projectUrl> | 9 | <projectUrl>https://github.com/wixtoolset/Bal.wixext</projectUrl> |
| 11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| 12 | <description>$description$</description> | 11 | <description>$description$</description> |
diff --git a/src/wixlib/bal.wixproj b/src/wixlib/bal.wixproj index c7c9a5c3..45ca7f88 100644 --- a/src/wixlib/bal.wixproj +++ b/src/wixlib/bal.wixproj | |||
| @@ -1,9 +1,8 @@ | |||
| 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 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | 3 | <Project DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> |
| 4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0126\build\WixToolset.MSBuild.props" /> | 4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0126\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0126\build\WixToolset.MSBuild.props')" /> |
| 5 | <Import Project="..\FindLocalWix.props" /> | 5 | <Import Project="..\FindLocalWix.props" /> |
| 6 | |||
| 7 | <PropertyGroup> | 6 | <PropertyGroup> |
| 8 | <ProjectGuid>{3444D952-F21C-496F-AB6B-56435BFD0787}</ProjectGuid> | 7 | <ProjectGuid>{3444D952-F21C-496F-AB6B-56435BFD0787}</ProjectGuid> |
| 9 | <OutputName>bal</OutputName> | 8 | <OutputName>bal</OutputName> |
| @@ -48,16 +47,17 @@ | |||
| 48 | <Project>{41085A22-E6AA-4E8B-AB1B-DDEE0DC89DFA}</Project> | 47 | <Project>{41085A22-E6AA-4E8B-AB1B-DDEE0DC89DFA}</Project> |
| 49 | </ProjectReference> | 48 | </ProjectReference> |
| 50 | </ItemGroup> | 49 | </ItemGroup> |
| 51 | |||
| 52 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | 50 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> |
| 53 | 51 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " /> | |
| 52 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||
| 53 | <Error Text="WiX Toolset build tools (v4.0 or later) must be installed to build this project. To download the WiX Toolset, go to http://wixtoolset.org/releases/." /> | ||
| 54 | </Target> | ||
| 54 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | 55 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
| 55 | <PropertyGroup> | 56 | <PropertyGroup> |
| 56 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | 57 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
| 57 | </PropertyGroup> | 58 | </PropertyGroup> |
| 58 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> | 59 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> |
| 59 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0126\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0101\build\WixToolset.MSBuild.props'))" /> | 60 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0126\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0126\build\WixToolset.MSBuild.props'))" /> |
| 60 | </Target> | 61 | </Target> |
| 61 | |||
| 62 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | 62 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> |
| 63 | </Project> | 63 | </Project> |
