37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
|
<!--
|
|||
|
###############################################################################
|
|||
|
#
|
|||
|
# 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>Stress</AssemblyName>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<NoStandardLibraries>true</NoStandardLibraries>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="StressService.sg" />
|
|||
|
<Compile Include="StressDirect.sg" />
|
|||
|
<Compile Include="GcStress.cs" />
|
|||
|
<Compile Include="KPTestBase.sg" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Directory.Contracts\Directory.Contracts.Kernel.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Stress.Contracts\Stress.Contracts.Kernel.csproj" />
|
|||
|
<ProjectReference Include="..\SpecSharp.Contracts\Kernel.Contracts.csproj" />
|
|||
|
<ProjectReference Include="..\Singularity.Directory\Directory.csproj" />
|
|||
|
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\KernelLibrary.targets" />
|
|||
|
|
|||
|
</Project>
|