diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-10-06 16:37:14 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-10-10 11:40:02 -0500 |
commit | 21a0685ef69e9d634600622b19ea970c6f58ef03 (patch) | |
tree | 5d37e316803f06d97d4aefd3df8ab45f3f7e7257 /src/ext/NetFx/netcoresearch/netcoresearch.vcxproj | |
parent | 3c11c1389f67824fb1f368cedacbaf566645e56f (diff) | |
download | wix-21a0685ef69e9d634600622b19ea970c6f58ef03.tar.gz wix-21a0685ef69e9d634600622b19ea970c6f58ef03.tar.bz2 wix-21a0685ef69e9d634600622b19ea970c6f58ef03.zip |
Add Netfx bundle extension and netfx:DotNetCoreSearch.
Remove built-in .NET Core packages since they update too quickly.
Fixes 6257
Diffstat (limited to 'src/ext/NetFx/netcoresearch/netcoresearch.vcxproj')
-rw-r--r-- | src/ext/NetFx/netcoresearch/netcoresearch.vcxproj | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/ext/NetFx/netcoresearch/netcoresearch.vcxproj b/src/ext/NetFx/netcoresearch/netcoresearch.vcxproj new file mode 100644 index 00000000..b5f12f07 --- /dev/null +++ b/src/ext/NetFx/netcoresearch/netcoresearch.vcxproj | |||
@@ -0,0 +1,73 @@ | |||
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 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
4 | <ItemGroup Label="ProjectConfigurations"> | ||
5 | <ProjectConfiguration Include="Debug|ARM64"> | ||
6 | <Configuration>Debug</Configuration> | ||
7 | <Platform>ARM64</Platform> | ||
8 | </ProjectConfiguration> | ||
9 | <ProjectConfiguration Include="Release|ARM64"> | ||
10 | <Configuration>Release</Configuration> | ||
11 | <Platform>ARM64</Platform> | ||
12 | </ProjectConfiguration> | ||
13 | <ProjectConfiguration Include="Debug|Win32"> | ||
14 | <Configuration>Debug</Configuration> | ||
15 | <Platform>Win32</Platform> | ||
16 | </ProjectConfiguration> | ||
17 | <ProjectConfiguration Include="Release|Win32"> | ||
18 | <Configuration>Release</Configuration> | ||
19 | <Platform>Win32</Platform> | ||
20 | </ProjectConfiguration> | ||
21 | <ProjectConfiguration Include="Debug|x64"> | ||
22 | <Configuration>Debug</Configuration> | ||
23 | <Platform>x64</Platform> | ||
24 | </ProjectConfiguration> | ||
25 | <ProjectConfiguration Include="Release|x64"> | ||
26 | <Configuration>Release</Configuration> | ||
27 | <Platform>x64</Platform> | ||
28 | </ProjectConfiguration> | ||
29 | </ItemGroup> | ||
30 | |||
31 | <PropertyGroup Label="Globals"> | ||
32 | <ProjectGuid>{A7FD9EF2-68CF-4C8E-AD81-3E8A6C7E1937}</ProjectGuid> | ||
33 | <ConfigurationType>Application</ConfigurationType> | ||
34 | <CharacterSet>Unicode</CharacterSet> | ||
35 | <ProjectSubSystem>Console</ProjectSubSystem> | ||
36 | <TargetName>netcoresearch</TargetName> | ||
37 | </PropertyGroup> | ||
38 | |||
39 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
40 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
41 | |||
42 | <PropertyGroup> | ||
43 | <NetHostPlatform>$(Platform)</NetHostPlatform> | ||
44 | <NetHostPlatform Condition=" '$(NetHostPlatform)'=='Win32' ">x86</NetHostPlatform> | ||
45 | <NetHostPath>..\..\..\..\packages\runtime.win-$(NetHostPlatform).Microsoft.NETCore.DotNetAppHost.6.0.4\runtimes\win-$(NetHostPlatform)\native\</NetHostPath> | ||
46 | <HostfxrPath>..\..\..\..\packages\runtime.win-$(NetHostPlatform).Microsoft.NETCore.DotNetHostResolver.6.0.4\runtimes\win-$(NetHostPlatform)\native\</HostfxrPath> | ||
47 | <ProjectAdditionalIncludeDirectories>$(NetHostPath)</ProjectAdditionalIncludeDirectories> | ||
48 | </PropertyGroup> | ||
49 | |||
50 | <ItemGroup> | ||
51 | <ClCompile Include="netcoresearch.cpp" /> | ||
52 | <ClCompile Include="precomp.cpp"> | ||
53 | <PrecompiledHeader>Create</PrecompiledHeader> | ||
54 | </ClCompile> | ||
55 | </ItemGroup> | ||
56 | |||
57 | <ItemGroup> | ||
58 | <ClInclude Include="netcoresearch.h" /> | ||
59 | <ClInclude Include="precomp.h" /> | ||
60 | </ItemGroup> | ||
61 | |||
62 | <ItemGroup> | ||
63 | <PackageReference Include="WixToolset.Dutil" /> | ||
64 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | ||
65 | <PackageReference Include="GitInfo" PrivateAssets="All" /> | ||
66 | </ItemGroup> | ||
67 | |||
68 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
69 | |||
70 | <Target Name="CopyHostfxr" AfterTargets="Build"> | ||
71 | <Copy SourceFiles="$(HostfxrPath)hostfxr.dll" DestinationFolder="$(OutputPath)" /> | ||
72 | </Target> | ||
73 | </Project> | ||