31 lines
903 B
XML
31 lines
903 B
XML
|
<!--
|
|||
|
##############################################################################
|
|||
|
#
|
|||
|
# Microsoft Research Singularity
|
|||
|
#
|
|||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
#
|
|||
|
# Note:
|
|||
|
#
|
|||
|
##############################################################################
|
|||
|
-->
|
|||
|
|
|||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\..\Paths.targets" />
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<AssemblyName>NVidiaDrivers</AssemblyName>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<NoStdlib>true</NoStdlib>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="NVidiaDrivers.csi" />
|
|||
|
<ProjectReference Include="..\Basetypes\Basetypes.csproj"><Alias>kernel.exe</Alias></ProjectReference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|||
|
</Project>
|