71 lines
2.3 KiB
XML
71 lines
2.3 KiB
XML
<!--
|
|
##############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# File: Interfaces\Bartok\Bartok.csproj
|
|
#
|
|
# Note:
|
|
#
|
|
##############################################################################
|
|
-->
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Bartok</AssemblyName>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoStdlib>true</NoStdlib>
|
|
<AssemblyAlias>kernel.exe</AssemblyAlias>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="ArrayHelper.csi" />
|
|
<Compile Include="ArgIterator.csi" />
|
|
<Compile Include="ASCIIEncoding.csi" />
|
|
<Compile Include="Assembly.csi" />
|
|
<Compile Include="BartokRT.csi" />
|
|
<Compile Include="Encoding.csi" />
|
|
<Compile Include="CallStack.csi" />
|
|
<Compile Include="Collector.csi" />
|
|
<Compile Include="ConcurrentMSCollector.csi" />
|
|
<Compile Include="GC.csi" />
|
|
<!-- <Compile Include="ICollection.csi"/> -->
|
|
<!-- <Compile Include="IList.csi"/> -->
|
|
<Compile Include="MarkSweepCollector.csi" />
|
|
<Compile Include="Marshal.csi" />
|
|
<Compile Include="Math.csi" />
|
|
<Compile Include="Module.csi" />
|
|
<Compile Include="PageTable.csi" />
|
|
<Compile Include="RuntimeFieldHandle.csi" />
|
|
<Compile Include="RuntimeMethodHandle.csi" />
|
|
<!-- <Compile Include="RuntimeType.csi"/> -->
|
|
<Compile Include="StackHeight.csi" />
|
|
<Compile Include="StaticData.csi" />
|
|
<Compile Include="StringBuilder.csi" />
|
|
<Compile Include="Thread.csi" />
|
|
<Compile Include="Transitions.csi" />
|
|
<Compile Include="TryAll.csi" />
|
|
<Compile Include="TryAllException.csi" />
|
|
<Compile Include="VarargList.csi" />
|
|
<Compile Include="Win32.csi" />
|
|
<Compile Include="WriteBarrierCMS.csi" />
|
|
|
|
<Compile Include="Bartok.csi" />
|
|
|
|
<ProjectReference Include="..\Basetypes\Basetypes.csproj">
|
|
<Alias>kernel.exe</Alias>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Baseattrs\Baseattrs.csproj">
|
|
<Alias>kernel.exe</Alias>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|
</Project>
|