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/wixlib/firewall.wixproj | |
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/wixlib/firewall.wixproj')
-rw-r--r-- | src/ext/Firewall/wixlib/firewall.wixproj | 4 |
1 files changed, 3 insertions, 1 deletions
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 |