31 lines
955 B
XML
31 lines
955 B
XML
<!--
|
|
##############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# File: Interfaces\Corlib\Corlib.csproj
|
|
#
|
|
# Note: Application stdlib interface assembly.
|
|
#
|
|
##############################################################################
|
|
-->
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Corlib</AssemblyName>
|
|
<OutputType>Library</OutputType>
|
|
<OutputPath>$(APPILLSDIR)</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoStdlib>true</NoStdlib>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\Basetypes\Basetypes.App.csproj"/>
|
|
<Import Project="..\BaseAttrs\BaseAttrs.App.csproj"/>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|
</Project>
|