diff options
author | Rob Mensching <rob@firegiant.com> | 2022-11-10 23:35:31 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-11-13 07:27:49 -0800 |
commit | c8a832c931f6c34892e596a11c14e9181d5eee16 (patch) | |
tree | f7038e49a221ec4e1ce7a5eb42002e90710b7f50 /src/ext/Firewall | |
parent | fdf2b03587cddd74618f57c59f24a22819bd28ff (diff) | |
download | wix-c8a832c931f6c34892e596a11c14e9181d5eee16.tar.gz wix-c8a832c931f6c34892e596a11c14e9181d5eee16.tar.bz2 wix-c8a832c931f6c34892e596a11c14e9181d5eee16.zip |
Minimize calls into GitInfo by caching results during build_init
Diffstat (limited to 'src/ext/Firewall')
-rw-r--r-- | src/ext/Firewall/ca/fwca.vcxproj | 1 | ||||
-rw-r--r-- | src/ext/Firewall/wixlib/firewall.wixproj | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ext/Firewall/ca/fwca.vcxproj b/src/ext/Firewall/ca/fwca.vcxproj index 0f08bc72..227242cb 100644 --- a/src/ext/Firewall/ca/fwca.vcxproj +++ b/src/ext/Firewall/ca/fwca.vcxproj | |||
@@ -67,7 +67,6 @@ | |||
67 | <ItemGroup> | 67 | <ItemGroup> |
68 | <PackageReference Include="WixToolset.WcaUtil" /> | 68 | <PackageReference Include="WixToolset.WcaUtil" /> |
69 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | 69 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
70 | <PackageReference Include="GitInfo" PrivateAssets="All" /> | ||
71 | </ItemGroup> | 70 | </ItemGroup> |
72 | 71 | ||
73 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | 72 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
diff --git a/src/ext/Firewall/wixlib/firewall.wixproj b/src/ext/Firewall/wixlib/firewall.wixproj index 51941541..efb0b64b 100644 --- a/src/ext/Firewall/wixlib/firewall.wixproj +++ b/src/ext/Firewall/wixlib/firewall.wixproj | |||
@@ -5,18 +5,20 @@ | |||
5 | <BindFiles>true</BindFiles> | 5 | <BindFiles>true</BindFiles> |
6 | <Cultures>en-us</Cultures> | 6 | <Cultures>en-us</Cultures> |
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | |||
8 | <ItemGroup> | 9 | <ItemGroup> |
9 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> | 10 | <BindInputPaths Include="$(OutputPath)x86" BindName="x86" /> |
10 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> | 11 | <BindInputPaths Include="$(OutputPath)x64" BindName="x64" /> |
11 | <BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" /> | 12 | <BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" /> |
12 | </ItemGroup> | 13 | </ItemGroup> |
14 | |||
13 | <ItemGroup> | 15 | <ItemGroup> |
14 | <ProjectReference Include="..\ca\fwca.vcxproj" Properties="Platform=ARM64" ReferenceOutputAssembly="false" /> | 16 | <ProjectReference Include="..\ca\fwca.vcxproj" Properties="Platform=ARM64" ReferenceOutputAssembly="false" /> |
15 | <ProjectReference Include="..\ca\fwca.vcxproj" Properties="Platform=x86" ReferenceOutputAssembly="false" /> | 17 | <ProjectReference Include="..\ca\fwca.vcxproj" Properties="Platform=x86" ReferenceOutputAssembly="false" /> |
16 | <ProjectReference Include="..\ca\fwca.vcxproj" Properties="Platform=x64" ReferenceOutputAssembly="false" /> | 18 | <ProjectReference Include="..\ca\fwca.vcxproj" Properties="Platform=x64" ReferenceOutputAssembly="false" /> |
17 | </ItemGroup> | 19 | </ItemGroup> |
20 | |||
18 | <ItemGroup> | 21 | <ItemGroup> |
19 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | 22 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
20 | <PackageReference Include="GitInfo" PrivateAssets="All" /> | ||
21 | </ItemGroup> | 23 | </ItemGroup> |
22 | </Project> \ No newline at end of file | 24 | </Project> \ No newline at end of file |