diff options
Diffstat (limited to 'src/wixlib/msmq.wixproj')
-rw-r--r-- | src/wixlib/msmq.wixproj | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/wixlib/msmq.wixproj b/src/wixlib/msmq.wixproj new file mode 100644 index 00000000..a0e28ba7 --- /dev/null +++ b/src/wixlib/msmq.wixproj | |||
@@ -0,0 +1,40 @@ | |||
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>{42493058-5FC8-4F85-9884-FF3190E084B6}</ProjectGuid> | ||
8 | <OutputName>msmq</OutputName> | ||
9 | <OutputType>Library</OutputType> | ||
10 | <BindFiles>true</BindFiles> | ||
11 | </PropertyGroup> | ||
12 | |||
13 | <ItemGroup> | ||
14 | <Compile Include="MsmqExtension.wxs" /> | ||
15 | <EmbeddedResource Include="en-us.wxl" /> | ||
16 | <EmbeddedResource Include="ja-jp.wxl" /> | ||
17 | </ItemGroup> | ||
18 | <ItemGroup> | ||
19 | <None Include="packages.config" /> | ||
20 | </ItemGroup> | ||
21 | <ItemGroup> | ||
22 | <ProjectReference Include="..\ca\msmqca.vcxproj"> | ||
23 | <Name>msmqca</Name> | ||
24 | <Project>{CAD56A7E-342B-4324-9DCB-BCEB8F3BC80D}</Project> | ||
25 | </ProjectReference> | ||
26 | </ItemGroup> | ||
27 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | ||
28 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " /> | ||
29 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||
30 | <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/." /> | ||
31 | </Target> | ||
32 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
33 | <PropertyGroup> | ||
34 | <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> | ||
35 | </PropertyGroup> | ||
36 | <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'))" /> | ||
37 | <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'))" /> | ||
38 | </Target> | ||
39 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | ||
40 | </Project> | ||