diff options
Diffstat (limited to 'src/wixlib/vs.wixproj')
-rw-r--r-- | src/wixlib/vs.wixproj | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/wixlib/vs.wixproj b/src/wixlib/vs.wixproj new file mode 100644 index 00000000..15dd5092 --- /dev/null +++ b/src/wixlib/vs.wixproj | |||
@@ -0,0 +1,65 @@ | |||
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 DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
5 | <Import Project="..\..\packages\WixToolset.Core.InternalPackage.4.0.15\build\WixToolset.Core.InternalPackage.props" Condition="Exists('..\..\packages\WixToolset.Core.InternalPackage.4.0.15\build\WixToolset.Core.InternalPackage.props')" /> | ||
6 | <Import Project="..\FindLocalWix.props" /> | ||
7 | |||
8 | <PropertyGroup> | ||
9 | <ProjectGuid>{14345C9D-8AF8-435A-BB1B-E067CE7EB321}</ProjectGuid> | ||
10 | <OutputName>vs</OutputName> | ||
11 | <OutputType>Library</OutputType> | ||
12 | <BindFiles>true</BindFiles> | ||
13 | <Pedantic>true</Pedantic> | ||
14 | <Cultures>en-us</Cultures> | ||
15 | </PropertyGroup> | ||
16 | |||
17 | <ItemGroup> | ||
18 | <Compile Include="HTML_Help_Registration__RTL_X86.wxs" /> | ||
19 | <Compile Include="Vs2003.wxs" /> | ||
20 | <Compile Include="Vs2005.wxs" /> | ||
21 | <Compile Include="Vs2008.wxs" /> | ||
22 | <Compile Include="Vs2010.wxs" /> | ||
23 | <Compile Include="Vs11.wxs" /> | ||
24 | <Compile Include="Vs2012.wxs" /> | ||
25 | <Compile Include="Vs2013.wxs" /> | ||
26 | <Compile Include="VS14.wxs" /> | ||
27 | <Compile Include="VS2015.wxs" /> | ||
28 | <Compile Include="VS2017.wxs" /> | ||
29 | <Compile Include="VSExtension_x86.wxs" /> | ||
30 | <Compile Include="VsixPackage.wxs" /> | ||
31 | <Compile Include="vs2005\vs2005_VSIPCC_Collection_Files_RTL.wxs" /> | ||
32 | <Compile Include="vs2008\vs2008_VSIPCC_Collection_Files_RTL.wxs" /> | ||
33 | </ItemGroup> | ||
34 | |||
35 | <ItemGroup> | ||
36 | <Folder Include="vs2005\" /> | ||
37 | <Folder Include="vs2008\" /> | ||
38 | </ItemGroup> | ||
39 | |||
40 | <ItemGroup> | ||
41 | <None Include="packages.config" /> | ||
42 | </ItemGroup> | ||
43 | |||
44 | <ItemGroup> | ||
45 | <ProjectReference Include="..\ca\vsca.vcxproj"> | ||
46 | <Name>vsca</Name> | ||
47 | <Project>{45308b85-0628-4978-8fc8-6ad9e1ad5949}</Project> | ||
48 | </ProjectReference> | ||
49 | </ItemGroup> | ||
50 | |||
51 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | ||
52 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " /> | ||
53 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||
54 | <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/." /> | ||
55 | </Target> | ||
56 | |||
57 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
58 | <PropertyGroup> | ||
59 | <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> | ||
60 | </PropertyGroup> | ||
61 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.0.41\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.0.41\build\Nerdbank.GitVersioning.targets'))" /> | ||
62 | <Error Condition="!Exists('..\..\packages\WixToolset.Core.InternalPackage.4.0.15\build\WixToolset.Core.InternalPackage.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Core.InternalPackage.4.0.15\build\WixToolset.Core.InternalPackage.props'))" /> | ||
63 | </Target> | ||
64 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.0.41\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.0.41\build\Nerdbank.GitVersioning.targets')" /> | ||
65 | </Project> | ||