38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
|
<!--
|
|||
|
###############################################################################
|
|||
|
#
|
|||
|
# Microsoft Research Singularity
|
|||
|
#
|
|||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
#
|
|||
|
###############################################################################
|
|||
|
-->
|
|||
|
|
|||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\..\Paths.targets" />
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AssemblyName>Diagnostics</AssemblyName>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<NoStandardLibraries>true</NoStandardLibraries>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="ChannelModule.sg" />
|
|||
|
<Compile Include="Diagnostics.sg" />
|
|||
|
<Compile Include="MemoryModule.sg" />
|
|||
|
<Compile Include="ProcessModule.sg" />
|
|||
|
<Compile Include="ProcMemInfoModule.sg" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Directory.Contracts\Directory.Contracts.Kernel.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Diagnostics.Contracts\Diagnostics.Contracts.Kernel.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Interfaces\Hal\Hal.csproj" />
|
|||
|
<ProjectReference Include="..\Singularity.Directory\Directory.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\KernelLibrary.targets" />
|
|||
|
</Project>
|