diff options
Diffstat (limited to 'src/wixlib/util.wixproj')
-rw-r--r-- | src/wixlib/util.wixproj | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/wixlib/util.wixproj b/src/wixlib/util.wixproj new file mode 100644 index 00000000..2fc8c589 --- /dev/null +++ b/src/wixlib/util.wixproj | |||
@@ -0,0 +1,52 @@ | |||
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 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
4 | <Import Project="..\..\packages\WixToolset.Core.InternalPackage.4.0.60\build\WixToolset.Core.InternalPackage.props" Condition="Exists('..\..\packages\WixToolset.Core.InternalPackage.4.0.60\build\WixToolset.Core.InternalPackage.props')" /> | ||
5 | <Import Project="..\FindLocalWix.props" /> | ||
6 | <PropertyGroup> | ||
7 | <ProjectGuid>{1ACFFEFD-505A-41A5-ACBF-A02B7B473AA2}</ProjectGuid> | ||
8 | <OutputName>util</OutputName> | ||
9 | <OutputType>Library</OutputType> | ||
10 | <BindFiles>true</BindFiles> | ||
11 | <Pedantic>true</Pedantic> | ||
12 | </PropertyGroup> | ||
13 | <ItemGroup> | ||
14 | <Compile Include="UtilExtension.wxs" /> | ||
15 | <Compile Include="UtilExtension_x86.wxs" /> | ||
16 | <Compile Include="UtilExtension_x64.wxs" /> | ||
17 | <EmbeddedResource Include="en-us.wxl" /> | ||
18 | <EmbeddedResource Include="de-de.wxl" /> | ||
19 | <EmbeddedResource Include="es-es.wxl" /> | ||
20 | <EmbeddedResource Include="fr-fr.wxl" /> | ||
21 | <EmbeddedResource Include="ja-jp.wxl" /> | ||
22 | <EmbeddedResource Include="pt-br.wxl" /> | ||
23 | <EmbeddedResource Include="it-it.wxl" /> | ||
24 | </ItemGroup> | ||
25 | <ItemGroup> | ||
26 | <None Include="packages.config" /> | ||
27 | </ItemGroup> | ||
28 | <ItemGroup> | ||
29 | <ProjectReference Include="..\ca\utilca.vcxproj"> | ||
30 | <Name>utilca</Name> | ||
31 | <Project>{076018F7-19BD-423A-ABBF-229273DA08D8}</Project> | ||
32 | </ProjectReference> | ||
33 | </ItemGroup> | ||
34 | <ItemGroup> | ||
35 | <None Include="caerr.wxi" /> | ||
36 | <None Include="caSuffix.wxi" /> | ||
37 | <None Include="UtilExtension_Platform.wxi" /> | ||
38 | </ItemGroup> | ||
39 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | ||
40 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " /> | ||
41 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||
42 | <Error Text="FG-WiX or WiX Toolset build tools (v3.11 or later) must be installed to build this project. To download FG-WiX, go to https://www.firegiant.com/downloads/. To download the WiX Toolset, go to http://wixtoolset.org/releases/." /> | ||
43 | </Target> | ||
44 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
45 | <PropertyGroup> | ||
46 | <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> | ||
47 | </PropertyGroup> | ||
48 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.7\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.7\build\Nerdbank.GitVersioning.targets'))" /> | ||
49 | <Error Condition="!Exists('..\..\packages\WixToolset.Core.InternalPackage.4.0.60\build\WixToolset.Core.InternalPackage.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Core.InternalPackage.4.0.60\build\WixToolset.Core.InternalPackage.props'))" /> | ||
50 | </Target> | ||
51 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.7\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.7\build\Nerdbank.GitVersioning.targets')" /> | ||
52 | </Project> \ No newline at end of file | ||