diff options
Diffstat (limited to 'src/ext/Firewall/ca/fwca.vcxproj')
-rw-r--r-- | src/ext/Firewall/ca/fwca.vcxproj | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/ext/Firewall/ca/fwca.vcxproj b/src/ext/Firewall/ca/fwca.vcxproj new file mode 100644 index 00000000..5e9a1db6 --- /dev/null +++ b/src/ext/Firewall/ca/fwca.vcxproj | |||
@@ -0,0 +1,81 @@ | |||
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" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
5 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props')" /> | ||
6 | <Import Project="..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props" Condition="Exists('..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props')" /> | ||
7 | |||
8 | <ItemGroup Label="ProjectConfigurations"> | ||
9 | <ProjectConfiguration Include="Debug|ARM64"> | ||
10 | <Configuration>Debug</Configuration> | ||
11 | <Platform>ARM64</Platform> | ||
12 | </ProjectConfiguration> | ||
13 | <ProjectConfiguration Include="Release|ARM64"> | ||
14 | <Configuration>Release</Configuration> | ||
15 | <Platform>ARM64</Platform> | ||
16 | </ProjectConfiguration> | ||
17 | |||
18 | <ProjectConfiguration Include="Debug|X64"> | ||
19 | <Configuration>Debug</Configuration> | ||
20 | <Platform>X64</Platform> | ||
21 | </ProjectConfiguration> | ||
22 | <ProjectConfiguration Include="Release|X64"> | ||
23 | <Configuration>Release</Configuration> | ||
24 | <Platform>X64</Platform> | ||
25 | </ProjectConfiguration> | ||
26 | |||
27 | <ProjectConfiguration Include="Debug|Win32"> | ||
28 | <Configuration>Debug</Configuration> | ||
29 | <Platform>Win32</Platform> | ||
30 | </ProjectConfiguration> | ||
31 | <ProjectConfiguration Include="Release|Win32"> | ||
32 | <Configuration>Release</Configuration> | ||
33 | <Platform>Win32</Platform> | ||
34 | </ProjectConfiguration> | ||
35 | </ItemGroup> | ||
36 | |||
37 | <PropertyGroup Label="Globals"> | ||
38 | <ProjectGuid>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</ProjectGuid> | ||
39 | <ConfigurationType>DynamicLibrary</ConfigurationType> | ||
40 | <TargetName>fwca</TargetName> | ||
41 | <PlatformToolset>v142</PlatformToolset> | ||
42 | <CharacterSet>Unicode</CharacterSet> | ||
43 | <ProjectModuleDefinitionFile>fwca.def</ProjectModuleDefinitionFile> | ||
44 | <Description>WiX Toolset Firewall CustomAction</Description> | ||
45 | </PropertyGroup> | ||
46 | |||
47 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
48 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
49 | |||
50 | <PropertyGroup> | ||
51 | <ProjectAdditionalLinkLibraries>msi.lib</ProjectAdditionalLinkLibraries> | ||
52 | </PropertyGroup> | ||
53 | |||
54 | <ItemGroup> | ||
55 | <ClCompile Include="dllmain.cpp"> | ||
56 | <PrecompiledHeader>Create</PrecompiledHeader> | ||
57 | </ClCompile> | ||
58 | <ClCompile Include="firewall.cpp" /> | ||
59 | </ItemGroup> | ||
60 | |||
61 | <ItemGroup> | ||
62 | <ClInclude Include="cost.h" /> | ||
63 | <ClInclude Include="CustomMsiErrors.h" /> | ||
64 | <ClInclude Include="precomp.h" /> | ||
65 | </ItemGroup> | ||
66 | |||
67 | <ItemGroup> | ||
68 | <None Include="fwca.def" /> | ||
69 | <None Include="packages.config" /> | ||
70 | </ItemGroup> | ||
71 | |||
72 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
73 | |||
74 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
75 | <PropertyGroup> | ||
76 | <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> | ||
77 | </PropertyGroup> | ||
78 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.56\build\WixToolset.DUtil.props'))" /> | ||
79 | <Error Condition="!Exists('..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.WcaUtil.4.0.17\build\WixToolset.WcaUtil.props'))" /> | ||
80 | </Target> | ||
81 | </Project> | ||