49 lines
2.1 KiB
XML
49 lines
2.1 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>Exe</OutputType>
|
|
<AssemblyName>sms</AssemblyName>
|
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Acceptor.sg" />
|
|
<Compile Include="AccessControlException.cs" />
|
|
<Compile Include="DefaultService.sg" />
|
|
<Compile Include="DefaultServiceCreator.sg" />
|
|
<Compile Include="IServiceProduceable.sg" />
|
|
<Compile Include="JournalService.sg" />
|
|
<Compile Include="ResilientServiceCreator.sg" />
|
|
<Compile Include="Service.sg" />
|
|
<Compile Include="ServiceController.sg" />
|
|
<Compile Include="ServiceManager.sg" />
|
|
<Compile Include="ThreadTerminationContract.sg" />
|
|
<Compile Include="ResilientService.sg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\FileSystem.Contracts\FileSystem.Contracts.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\ServiceManager.Contracts\ServiceManager.Contracts.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\FileSystem.Utils\FileSystem.Utils.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Manifest\Manifest.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Xml2\Singularity.Xml2.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\System.IO\System.IO.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Services\Services.Utils.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\DirectoryService.Utils\DirectoryService.Utils.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\ConsoleCategory.targets" />
|
|
|
|
</Project>
|