forked from apple-oss-distributions/mDNSResponder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mDNSResponder.proj
36 lines (26 loc) · 1.27 KB
/
mDNSResponder.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="install" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectRootDirectory>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</ProjectRootDirectory>
<ProjectRootDirectory Condition="!HasTrailingSlash('$(ProjectRootDirectory)')">$(ProjectRootDirectory)\</ProjectRootDirectory>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<Platform Condition="'$(Platform)' == ''">Win32;x64</Platform>
</PropertyGroup>
<Target Name="install" DependsOnTargets="mDNSResponder" />
<Target Name="mDNSResponder">
<PropertyGroup>
<SolutionFile>$(ProjectRootDirectory)mDNSWindows\mDNSResponder.sln</SolutionFile>
</PropertyGroup>
<ItemGroup>
<Platforms Include="$(Platform)" />
</ItemGroup>
<ItemGroup>
<SolutionTargets Include="dnssd;mDNSResponder;mDNSResponderDLL;dns-sd;mdnsNSP">
<Platform>%(Platforms.Identity)</Platform>
</SolutionTargets>
</ItemGroup>
<MSBuild Projects="$(SolutionFile)" Targets="%(SolutionTargets.Identity)" Properties="Configuration=$(Configuration);Platform=%(SolutionTargets.Platform)" />
</Target>
</Project>