diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2018-12-16 11:57:53 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2018-12-16 12:03:17 -0600 |
commit | 1b7a9d3734119e658c91ebd9742ab5a3ce94cce4 (patch) | |
tree | 0c4b710cd5665f2b24a4cefcab19626398e3d139 /src/wixlib/sql.wixproj | |
parent | 8464662dfcf3a6e4fafc33440b33236773d96a65 (diff) | |
download | wix-1b7a9d3734119e658c91ebd9742ab5a3ce94cce4.tar.gz wix-1b7a9d3734119e658c91ebd9742ab5a3ce94cce4.tar.bz2 wix-1b7a9d3734119e658c91ebd9742ab5a3ce94cce4.zip |
Integrate into latest v4.
Still needs TupleDefinitions.
Diffstat (limited to '')
-rw-r--r-- | src/wixlib/sql.wixproj | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/wixlib/sql.wixproj b/src/wixlib/sql.wixproj new file mode 100644 index 00000000..8a775f8f --- /dev/null +++ b/src/wixlib/sql.wixproj | |||
@@ -0,0 +1,46 @@ | |||
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" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0005\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0005\build\WixToolset.MSBuild.props')" /> | ||
5 | <Import Project="..\FindLocalWix.props" /> | ||
6 | <PropertyGroup> | ||
7 | <ProjectGuid>{9ACF1A20-D801-45CC-A463-F9D13E506AA3}</ProjectGuid> | ||
8 | <OutputName>sql</OutputName> | ||
9 | <OutputType>Library</OutputType> | ||
10 | <BindFiles>true</BindFiles> | ||
11 | <Pedantic>true</Pedantic> | ||
12 | <Cultures>en-us</Cultures> | ||
13 | </PropertyGroup> | ||
14 | <ItemGroup> | ||
15 | <Compile Include="SqlExtension.wxs" /> | ||
16 | <EmbeddedResource Include="de-de.wxl" /> | ||
17 | <EmbeddedResource Include="en-us.wxl" /> | ||
18 | <EmbeddedResource Include="es-es.wxl" /> | ||
19 | <EmbeddedResource Include="ja-jp.wxl" /> | ||
20 | <EmbeddedResource Include="pl-pl.wxl" /> | ||
21 | <EmbeddedResource Include="pt-br.wxl" /> | ||
22 | <EmbeddedResource Include="pt-pt.wxl" /> | ||
23 | </ItemGroup> | ||
24 | <ItemGroup> | ||
25 | <None Include="packages.config" /> | ||
26 | </ItemGroup> | ||
27 | <ItemGroup> | ||
28 | <ProjectReference Include="..\ca\sqlca.vcxproj"> | ||
29 | <Name>sqlca</Name> | ||
30 | <Project>{4DCA6E4B-A1F1-4450-BC2D-94AC20F31935}</Project> | ||
31 | </ProjectReference> | ||
32 | </ItemGroup> | ||
33 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | ||
34 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " /> | ||
35 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||
36 | <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/." /> | ||
37 | </Target> | ||
38 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
39 | <PropertyGroup> | ||
40 | <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> | ||
41 | </PropertyGroup> | ||
42 | <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'))" /> | ||
43 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0005\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0005\build\WixToolset.MSBuild.props'))" /> | ||
44 | </Target> | ||
45 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | ||
46 | </Project> \ No newline at end of file | ||