singrdk/base/Interfaces/Drivers/Drivers.csproj

34 lines
972 B
XML
Raw Normal View History

2008-03-05 09:52:00 -05:00
<!--
##############################################################################
#
# Microsoft Research Singularity
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# File: Interfaces\Drivers\Makefile
#
# Note:
#
##############################################################################
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\Paths.targets" />
<PropertyGroup>
<AssemblyName>Drivers</AssemblyName>
<OutputType>Library</OutputType>
2008-11-17 18:29:00 -05:00
<OutputPath>$(KERNEL_IL_DIR)</OutputPath>
2008-03-05 09:52:00 -05:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoStdlib>true</NoStdlib>
</PropertyGroup>
<ItemGroup>
<Compile Include="Drivers.csi" />
2008-11-17 18:29:00 -05:00
<ProjectReference Include="..\Kernel\Kernel.csproj"><Alias>kernel</Alias></ProjectReference>
2008-03-05 09:52:00 -05:00
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
</Project>