40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<!--
|
|
##############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# File: Interfaces\Drivers\Makefile
|
|
#
|
|
# Note:
|
|
#
|
|
##############################################################################
|
|
-->
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Security</AssemblyName>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoStdlib>true</NoStdlib>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Security.csi" />
|
|
<Compile Include="Principal.csi" />
|
|
<Compile Include="PrincipalImpl.csi" />
|
|
<ProjectReference Include="..\Basetypes\Basetypes.csproj"><Alias>kernel.exe</Alias></ProjectReference>
|
|
<ProjectReference Include="..\Kernel\Kernel.csproj" />
|
|
<ProjectReference Include="..\Loader\Loader.csproj" />
|
|
<ProjectReference Include="..\Memory\Memory.csproj"><Alias>kernel.exe</Alias></ProjectReference>
|
|
<ProjectReference Include="..\Xml\Xml.csproj"><Alias>kernel.exe</Alias></ProjectReference>
|
|
<ProjectReference Include="..\Collections\Collections.csproj"><Alias>kernel.exe</Alias></ProjectReference>
|
|
</ItemGroup>
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\InterfaceAssembly.targets" />
|
|
</Project>
|