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