singrdk/base/Targets/DriverCategory.targets

37 lines
982 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
<!--
2008-11-17 18:29:00 -05:00
###############################################################################
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
###############################################################################
-->
2008-03-05 09:52:00 -05:00
2008-11-17 18:29:00 -05:00
<!--
2008-03-05 09:52:00 -05:00
Projects that are "driver" apps should import this targets file.
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2008-11-17 18:29:00 -05:00
<PropertyGroup>
<ApplicationCategory>Driver</ApplicationCategory>
</PropertyGroup>
2008-03-05 09:52:00 -05:00
<ItemGroup>
<ProjectReference Include="$(SINGULARITY_ROOT)\Drivers\Transforms\DriverTransform.csproj">
<ExcludeFromNativeReferences>true</ExcludeFromNativeReferences>
</ProjectReference>
2008-11-17 18:29:00 -05:00
2008-03-05 09:52:00 -05:00
</ItemGroup>
<Import Condition="'$(SingularityPathsIncluded)'==''" Project="Paths.targets"/>
<PropertyGroup>
<OutputPath Condition="'$(OutputPath)'==''">$(DRIVDIR)</OutputPath>
</PropertyGroup>
<Import Project="App.targets"/>
</Project>