43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<!--
|
|
##############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# File: Libraries\Manifest\Makefile
|
|
#
|
|
# Note:
|
|
#
|
|
##############################################################################
|
|
-->
|
|
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Manifest</AssemblyName>
|
|
<OutputType>Library</OutputType>
|
|
<DefineConstants>SIMPLE_SECLIB</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.sg" />
|
|
<Compile Include="Binder.sg" />
|
|
<Compile Include="Manifest.sg" />
|
|
<Compile Include="job.sg" />
|
|
<Compile Include="parameters.sg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\FileSystem.Contracts\FileSystem.Contracts.csproj" />
|
|
<ProjectReference Include="..\Xml\Xml.csproj" />
|
|
<ProjectReference Include="..\DirectoryService.Utils\DirectoryService.Utils.csproj" />
|
|
<!-- TODO: Remove all dependencies on System.Console from Manifest.dll. -->
|
|
<ProjectReference Include="..\Console\Console.App.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
|
|
</Project>
|