diff options
Diffstat (limited to 'src/wixlib/firewall.wixproj')
-rw-r--r-- | src/wixlib/firewall.wixproj | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/src/wixlib/firewall.wixproj b/src/wixlib/firewall.wixproj index f9260c88..cb273a38 100644 --- a/src/wixlib/firewall.wixproj +++ b/src/wixlib/firewall.wixproj | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 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. --> | 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"> | 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-0086\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props')" /> | 4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0093\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0093\build\WixToolset.MSBuild.props')" /> |
5 | <Import Project="..\FindLocalWix.props" /> | 5 | <Import Project="..\FindLocalWix.props" /> |
6 | <PropertyGroup> | 6 | <PropertyGroup> |
7 | <ProjectGuid>{1acffefd-505a-41a5-acbf-a02b7b473aa2}</ProjectGuid> | 7 | <ProjectGuid>{1acffefd-505a-41a5-acbf-a02b7b473aa2}</ProjectGuid> |
@@ -13,12 +13,31 @@ | |||
13 | </PropertyGroup> | 13 | </PropertyGroup> |
14 | <ItemGroup> | 14 | <ItemGroup> |
15 | <Compile Include="FirewallExtension.wxs" /> | 15 | <Compile Include="FirewallExtension.wxs" /> |
16 | <Compile Include="FirewallExtension_arm.wxs" /> | ||
17 | <Compile Include="FirewallExtension_arm64.wxs" /> | ||
18 | <Compile Include="FirewallExtension_x64.wxs" /> | ||
16 | <Compile Include="FirewallExtension_x86.wxs" /> | 19 | <Compile Include="FirewallExtension_x86.wxs" /> |
17 | <EmbeddedResource Include="en-us.wxl" /> | 20 | <EmbeddedResource Include="en-us.wxl" /> |
18 | <EmbeddedResource Include="es-es.wxl" /> | 21 | <EmbeddedResource Include="es-es.wxl" /> |
19 | <EmbeddedResource Include="ja-jp.wxl" /> | 22 | <EmbeddedResource Include="ja-jp.wxl" /> |
20 | <EmbeddedResource Include="pl-pl.wxl" /> | 23 | <EmbeddedResource Include="pl-pl.wxl" /> |
21 | </ItemGroup> | 24 | </ItemGroup> |
25 | |||
26 | <ItemGroup> | ||
27 | <BindInputPaths Include="$(OutputPath)Win32"> | ||
28 | <BindName>x86</BindName> | ||
29 | </BindInputPaths> | ||
30 | <BindInputPaths Include="$(OutputPath)x64)"> | ||
31 | <BindName>x64</BindName> | ||
32 | </BindInputPaths> | ||
33 | <BindInputPaths Include="$(OutputPath)arm)"> | ||
34 | <BindName>arm</BindName> | ||
35 | </BindInputPaths> | ||
36 | <BindInputPaths Include="$(OutputPath)arm64)"> | ||
37 | <BindName>arm64</BindName> | ||
38 | </BindInputPaths> | ||
39 | </ItemGroup> | ||
40 | |||
22 | <ItemGroup> | 41 | <ItemGroup> |
23 | <None Include="packages.config" /> | 42 | <None Include="packages.config" /> |
24 | </ItemGroup> | 43 | </ItemGroup> |
@@ -26,6 +45,22 @@ | |||
26 | <ProjectReference Include="..\ca\fwca.vcxproj"> | 45 | <ProjectReference Include="..\ca\fwca.vcxproj"> |
27 | <Name>fwca</Name> | 46 | <Name>fwca</Name> |
28 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | 47 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> |
48 | <Properties>Platform=ARM</Properties> | ||
49 | </ProjectReference> | ||
50 | <ProjectReference Include="..\ca\fwca.vcxproj"> | ||
51 | <Name>fwca</Name> | ||
52 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
53 | <Properties>Platform=ARM64</Properties> | ||
54 | </ProjectReference> | ||
55 | <ProjectReference Include="..\ca\fwca.vcxproj"> | ||
56 | <Name>fwca</Name> | ||
57 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
58 | <Properties>Platform=x86</Properties> | ||
59 | </ProjectReference> | ||
60 | <ProjectReference Include="..\ca\fwca.vcxproj"> | ||
61 | <Name>fwca</Name> | ||
62 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
63 | <Properties>Platform=x64</Properties> | ||
29 | </ProjectReference> | 64 | </ProjectReference> |
30 | </ItemGroup> | 65 | </ItemGroup> |
31 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | 66 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> |
@@ -38,7 +73,7 @@ | |||
38 | <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> | 73 | <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> |
39 | </PropertyGroup> | 74 | </PropertyGroup> |
40 | <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'))" /> | 75 | <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'))" /> |
41 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props'))" /> | 76 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0093\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0093\build\WixToolset.MSBuild.props'))" /> |
42 | </Target> | 77 | </Target> |
43 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | 78 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> |
44 | </Project> \ No newline at end of file | 79 | </Project> \ No newline at end of file |