39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
|
<!--
|
||
|
##############################################################################
|
||
|
#
|
||
|
# Microsoft Research Singularity
|
||
|
#
|
||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
#
|
||
|
# File: Kernel\System.Compiler.Runtime\System.Compiler.Runtime.App.csproj
|
||
|
#
|
||
|
# 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>
|
||
|
<Compile Include="AssemblyInfo.cs"/>
|
||
|
<Compile Include="Classes.cs"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Interfaces\Singularity.V1\Singularity.V1.csproj"/>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\AppRuntime.targets"/>
|
||
|
|
||
|
</Project>
|