De-haiku wintun.proj

No need for breaking every XML tag with attributes into lines - besides,
we're imposing 2-space indentation on .proj files making lines even
shorter and indentation combined with excessive line breaking harder to
follow visually.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2019-04-23 13:28:03 +02:00
parent 56424d52f7
commit eb16ea534d

View File

@ -4,9 +4,7 @@
Copyright (C) 2019 WireGuard LLC. All Rights Reserved. Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
--> -->
<Project <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="Build">
<!-- <!--
General Properties General Properties
@ -33,69 +31,42 @@
<Target Name="Driver-x86" <Target Name="Driver-x86"
Outputs="x86\Release\wintun\wintun.sys;x86\Release\wintun\wintun.inf;x86\Release\wintun\wintun.cat" Outputs="x86\Release\wintun\wintun.sys;x86\Release\wintun\wintun.inf;x86\Release\wintun\wintun.cat"
Inputs="wintun.c;wintun.inf;wintun.props;wintun.rc;wintun.vcxproj"> Inputs="wintun.c;wintun.inf;wintun.props;wintun.rc;wintun.vcxproj">
<MSBuild <MSBuild Projects="wintun.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=Win32"/>
Projects="wintun.vcxproj"
Targets="Build"
Properties="Configuration=Release;Platform=Win32"/>
</Target> </Target>
<Target Name="Driver-amd64" <Target Name="Driver-amd64"
Outputs="amd64\Release\wintun\wintun.sys;amd64\Release\wintun\wintun.inf;amd64\Release\wintun\wintun.cat" Outputs="amd64\Release\wintun\wintun.sys;amd64\Release\wintun\wintun.inf;amd64\Release\wintun\wintun.cat"
Inputs="wintun.c;wintun.inf;wintun.props;wintun.rc;wintun.vcxproj"> Inputs="wintun.c;wintun.inf;wintun.props;wintun.rc;wintun.vcxproj">
<MSBuild <MSBuild Projects="wintun.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=x64"/>
Projects="wintun.vcxproj"
Targets="Build"
Properties="Configuration=Release;Platform=x64"/>
</Target> </Target>
<Target Name="Driver-arm64" <Target Name="Driver-arm64"
Outputs="arm64\Release\wintun\wintun.sys;arm64\Release\wintun\wintun.inf;arm64\Release\wintun\wintun.cat" Outputs="arm64\Release\wintun\wintun.sys;arm64\Release\wintun\wintun.inf;arm64\Release\wintun\wintun.cat"
Inputs="wintun.c;wintun.inf;wintun.props;wintun.rc;wintun.vcxproj"> Inputs="wintun.c;wintun.inf;wintun.props;wintun.rc;wintun.vcxproj">
<MSBuild <MSBuild Projects="wintun.vcxproj" Targets="Build" Properties="Configuration=Release;Platform=ARM64"/>
Projects="wintun.vcxproj"
Targets="Build"
Properties="Configuration=Release;Platform=ARM64"/>
</Target> </Target>
<!-- <!--
Static Driver Verifier Static Driver Verifier
--> -->
<Target Name="SDV" <Target Name="SDV" Outputs="$(SDVDir)SDV.DVL.xml;amd64\Release\vc.nativecodeanalysis.all.xml">
Outputs="$(SDVDir)SDV.DVL.xml;amd64\Release\vc.nativecodeanalysis.all.xml"> <MSBuild Projects="wintun.vcxproj" Targets="sdv" Properties="Inputs=/check:*;Configuration=Release;Platform=x64"/>
<MSBuild
Projects="wintun.vcxproj"
Targets="sdv"
Properties="Inputs=/check:*;Configuration=Release;Platform=x64"/>
</Target> </Target>
<!-- <!--
Driver Verification Log Driver Verification Log
--> -->
<Target Name="DVL" <Target Name="DVL" DependsOnTargets="SDV"
DependsOnTargets="SDV"
Outputs="wintun.DVL.XML" Outputs="wintun.DVL.XML"
Inputs="$(SDVDir)SDV.DVL.xml;amd64\Release\vc.nativecodeanalysis.all.xml"> Inputs="$(SDVDir)SDV.DVL.xml;amd64\Release\vc.nativecodeanalysis.all.xml">
<MSBuild <MSBuild Projects="wintun.vcxproj" Targets="dvl" Properties="Configuration=Release;Platform=x64"/>
Projects="wintun.vcxproj"
Targets="dvl"
Properties="Configuration=Release;Platform=x64"/>
</Target> </Target>
<!-- <!--
MSM Building MSM Building
--> -->
<Target Name="MSM-x86" <Target Name="MSM-x86" DependsOnTargets="Build" Outputs="$(DistributionDir)wintun-x86-$(WintunVersionStr).msm">
DependsOnTargets="Build" <MSBuild Projects="wintun.wixproj" Targets="Build" Properties="Configuration=Release;Platform=x86"/>
Outputs="$(DistributionDir)wintun-x86-$(WintunVersionStr).msm">
<MSBuild
Projects="wintun.wixproj"
Targets="Build"
Properties="Configuration=Release;Platform=x86"/>
</Target> </Target>
<Target Name="MSM-amd64" <Target Name="MSM-amd64" DependsOnTargets="Build" Outputs="$(DistributionDir)wintun-amd64-$(WintunVersionStr).msm">
DependsOnTargets="Build" <MSBuild Projects="wintun.wixproj" Targets="Build" Properties="Configuration=Release;Platform=x64"/>
Outputs="$(DistributionDir)wintun-amd64-$(WintunVersionStr).msm">
<MSBuild
Projects="wintun.wixproj"
Targets="Build"
Properties="Configuration=Release;Platform=x64"/>
</Target> </Target>
</Project> </Project>