2008-03-05 09:52:00 -05:00
|
|
|
|
<!--
|
|
|
|
|
##############################################################################
|
|
|
|
|
#
|
|
|
|
|
# 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>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AssemblyName>UnitTest</AssemblyName>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<Compile Include="TestTransform.sg" />
|
|
|
|
|
<Compile Include="TestLog.cs" />
|
|
|
|
|
<Compile Include="ModuleTestJig.sg" />
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<Compile Include="Assert.cs" />
|
|
|
|
|
<Compile Include="FailedAssertionException.cs" />
|
|
|
|
|
<Compile Include="TestAppAttribute.cs" />
|
|
|
|
|
<Compile Include="UnitTest.cs" />
|
|
|
|
|
<Compile Include="WatchDogTimer.cs" />
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<Compile Include="TestMethodAttribute.cs" />
|
|
|
|
|
<Compile Include="TestClassAttribute.cs" />
|
|
|
|
|
<Compile Include="TestInitializeAttribute.cs" />
|
|
|
|
|
<Compile Include="TestCleanupAttribute.cs" />
|
|
|
|
|
<Compile Include="ClassInitializeAttribute.cs" />
|
|
|
|
|
<Compile Include="ClassCleanupAttribute.cs" />
|
|
|
|
|
<Compile Include="AssemblyInitializeAttribute.cs" />
|
|
|
|
|
<Compile Include="AssemblyCleanupAttribute.cs" />
|
|
|
|
|
<Compile Include="ExceptionExpectedAttribute.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Test.Contracts\app.csproj"/>
|
|
|
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Console\Console.App.csproj"/>
|
2008-03-05 09:52:00 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
|
|
|
|
|
</Project>
|