31 lines
884 B
XML
31 lines
884 B
XML
<!--
|
|
##############################################################################
|
|
|
|
Microsoft Research Singularity
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
Note:
|
|
|
|
##############################################################################
|
|
-->
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Import Project="..\..\..\Paths.targets"/>
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>MonitorTest</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<!-- Apparently the following options are assumed in this code ? -->
|
|
<NoNullChecks>true</NoNullChecks>
|
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="PulseTest.cs"/>
|
|
<Compile Include="PulseAllTest.cs"/>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\TestCategory.targets"/>
|
|
</Project>
|