2008-03-05 09:52:00 -05:00
|
|
|
|
<!--
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Microsoft Research Singularity
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
# File: Interfaces\Kernel\Kernel.csproj
|
|
|
|
|
#
|
|
|
|
|
# Note:
|
|
|
|
|
#
|
|
|
|
|
##############################################################################
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>Kernel</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>
|
|
|
|
|
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<Import Project="..\Basetypes\Basetypes.Kernel.csproj"/>
|
|
|
|
|
<Import Project="..\BaseAttrs\BaseAttrs.Kernel.csproj"/>
|
|
|
|
|
<Import Project="..\Collections\Collections.csproj"/>
|
|
|
|
|
<Import Project="..\IoSystem\IoConfig.csproj"/>
|
|
|
|
|
<Import Project="..\Memory\Memory.csproj"/>
|
|
|
|
|
<Import Project="..\Hal\Processor.csproj"/>
|
|
|
|
|
<Import Project="..\Singularity.V1\Singularity.V1.Kernel.csproj"/>
|
|
|
|
|
<Import Project="..\Xml\Xml.csproj"/>
|
|
|
|
|
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="IoMemory.csi" />
|
|
|
|
|
<Compile Include="Kernel.csi" />
|
|
|
|
|
<Compile Include="Process.csi" />
|
|
|
|
|
<Compile Include="PerfCounters.csi" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|
|
|
|
</Project>
|