52 lines
2.0 KiB
XML
52 lines
2.0 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>Directory</AssemblyName>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="DirectoryService.sg" />
|
|||
|
<Compile Include="DirectoryServiceWorker.sg" />
|
|||
|
<Compile Include="DirNode.sg" />
|
|||
|
<Compile Include="IoMemoryNode.sg" />
|
|||
|
<Compile Include="IoMemoryService.sg" />
|
|||
|
<Compile Include="Node.sg" />
|
|||
|
<Compile Include="NotificationManager.sg" />
|
|||
|
<Compile Include="Path.sg" />
|
|||
|
<Compile Include="Property.sg" />
|
|||
|
<Compile Include="ProviderNode.sg" />
|
|||
|
<Compile Include="ResolutionState.sg" />
|
|||
|
<Compile Include="SbUtils.sg" />
|
|||
|
<Compile Include="SymLinkNode.sg" />
|
|||
|
<Compile Include="WorkerFunctions.sg" />
|
|||
|
<Compile Include="DirAclCoreSupport.sg" />
|
|||
|
<Compile Include="SdsUtils.sg" />
|
|||
|
<Compile Include="SdsUtilsAcl.sg" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Directory.Contracts\Directory.Contracts.Kernel.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Security.Contracts\Security.Contracts.Kernel.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Interfaces\Security\Security.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Interfaces\Loader\Loader.csproj" />
|
|||
|
<ProjectReference Include="..\Singularity.Security\Security.csproj" />
|
|||
|
<ProjectReference Include="..\SpecSharp.Contracts\Kernel.Contracts.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\KernelLibrary.targets" />
|
|||
|
</Project>
|