blob: c1daa05a7e078efd4adf18b4c4b1dd91a9c0804d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<?xml version="1.0" encoding="utf-8"?>
<!-- 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. -->
<Project DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0">
<Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props')" />
<Import Project="..\FindLocalWix.props" />
<PropertyGroup>
<ProjectGuid>{1acffefd-505a-41a5-acbf-a02b7b473aa2}</ProjectGuid>
<OutputName>firewall</OutputName>
<OutputType>Library</OutputType>
<BindFiles>true</BindFiles>
<Pedantic>true</Pedantic>
<Cultures>en-us</Cultures>
</PropertyGroup>
<ItemGroup>
<Compile Include="FirewallExtension.wxs" />
<Compile Include="FirewallExtension_arm.wxs" />
<Compile Include="FirewallExtension_arm64.wxs" />
<Compile Include="FirewallExtension_x64.wxs" />
<Compile Include="FirewallExtension_x86.wxs" />
<EmbeddedResource Include="en-us.wxl" />
<EmbeddedResource Include="es-es.wxl" />
<EmbeddedResource Include="ja-jp.wxl" />
<EmbeddedResource Include="pl-pl.wxl" />
</ItemGroup>
<ItemGroup>
<BindInputPaths Include="$(OutputPath)Win32">
<BindName>x86</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath)x64)">
<BindName>x64</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath)arm)">
<BindName>arm</BindName>
</BindInputPaths>
<BindInputPaths Include="$(OutputPath)arm64)">
<BindName>arm64</BindName>
</BindInputPaths>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ca\fwca.vcxproj">
<Name>fwca</Name>
<Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project>
<Properties>Platform=ARM</Properties>
</ProjectReference>
<ProjectReference Include="..\ca\fwca.vcxproj">
<Name>fwca</Name>
<Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project>
<Properties>Platform=ARM64</Properties>
</ProjectReference>
<ProjectReference Include="..\ca\fwca.vcxproj">
<Name>fwca</Name>
<Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project>
<Properties>Platform=x86</Properties>
</ProjectReference>
<ProjectReference Include="..\ca\fwca.vcxproj">
<Name>fwca</Name>
<Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project>
<Properties>Platform=x64</Properties>
</ProjectReference>
</ItemGroup>
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " />
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
<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/." />
</Target>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<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>
</PropertyGroup>
<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'))" />
<Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props'))" />
</Target>
<Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" />
</Project>
|