49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
|
<!--
|
|||
|
##############################################################################
|
|||
|
#
|
|||
|
# Microsoft Research Singularity
|
|||
|
#
|
|||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
#
|
|||
|
# File: Libraries\xxx\xxx.csproj
|
|||
|
#
|
|||
|
# Note:
|
|||
|
#
|
|||
|
##############################################################################
|
|||
|
-->
|
|||
|
|
|||
|
|
|||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\..\Paths.targets" />
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AssemblyName>Resiliency</AssemblyName>
|
|||
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="Journalet2.sg" />
|
|||
|
<Compile Include="JournaletFactory.sg" />
|
|||
|
<Compile Include="JournaletGroup.sg" />
|
|||
|
<Compile Include="Log.sg" />
|
|||
|
<Compile Include="LogData.sg" />
|
|||
|
<Compile Include="DirectoryServiceProxy.sg" />
|
|||
|
<Compile Include="ServiceProviderProxy.sg" />
|
|||
|
<Compile Include="ServiceProxy.sg" />
|
|||
|
<Compile Include="PersistentMemory.sg" />
|
|||
|
<Compile Include="UndoableMemory.sg" />
|
|||
|
<Compile Include="IRecoveryAware.sg" />
|
|||
|
<Compile Include="ICheckpoint.sg" />
|
|||
|
<Compile Include="SignalContract.sg" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Directory.Contracts\Directory.Contracts.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\ServiceManager.Contracts\ServiceManager.Contracts.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Services\Services.Utils.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
|
|||
|
</Project>
|