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