2008-03-05 09:52:00 -05:00
|
|
|
<!--
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Microsoft Research Singularity
|
|
|
|
#
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
#
|
|
|
|
# Note: This project builds the copy of System.Runtime.Compiler.dll
|
|
|
|
# that applications use (executables outside of the kernel).
|
|
|
|
#
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
-->
|
|
|
|
|
|
|
|
<Project DefaultTarget="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Import Project="..\..\Paths.targets"/>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<AssemblyName>System.Compiler.Runtime</AssemblyName>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<Language>C#</Language>
|
|
|
|
<DefineConstants>ENDPOINT_STRUCT;SINGULARITY;SINGULARITY_PROCESS;PTR_SIZE_32;_NEW_CLASSLOADER;NODEFAULTLIB;NoData;NOOWNERSHIPCHECK</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
<Compile Include="$(SingSharpSrcDir)\System.Compiler.Runtime\AssemblyInfo.cs"/>
|
|
|
|
<Compile Include="$(SingSharpSrcDir)\System.Compiler.Runtime\Classes.cs"/>
|
2008-03-05 09:52:00 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Interfaces\Singularity.V1\Singularity.V1.App.csproj"/>
|
2008-03-05 09:52:00 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\AppRuntime.targets"/>
|
|
|
|
|
|
|
|
</Project>
|