singrdk/base/Applications/Tests/MemStress/MemStress.csproj

41 lines
1.6 KiB
XML
Raw Normal View History

2008-03-05 09:52:00 -05:00
<!--
##############################################################################
Microsoft Research Singularity
Copyright (c) Microsoft Corporation. All rights reserved.
2008-11-17 18:29:00 -05:00
Note:
2008-03-05 09:52:00 -05:00
##############################################################################
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\Paths.targets"/>
2008-11-17 18:29:00 -05:00
2008-03-05 09:52:00 -05:00
<PropertyGroup>
2008-11-17 18:29:00 -05:00
<AssemblyName>MemStress</AssemblyName>
2008-03-05 09:52:00 -05:00
<OutputType>Exe</OutputType>
2008-11-17 18:29:00 -05:00
<!-- Apparently the following options are assumed in this code ? -->
<NoNullChecks>true</NoNullChecks>
2008-03-05 09:52:00 -05:00
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
</PropertyGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<Compile Include="MemStress.cs"/>
<Compile Include="SubProcess.sg"/>
2008-03-05 09:52:00 -05:00
</ItemGroup>
2008-11-17 18:29:00 -05:00
<ItemGroup>
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Test.Contracts\app.csproj"/>
2008-03-05 09:52:00 -05:00
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\FileSystem.Contracts\FileSystem.Contracts.csproj"/>
2008-11-17 18:29:00 -05:00
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Manifest\Manifest.csproj"/>
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\DirectoryService.Utils\DirectoryService.Utils.csproj" />
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\FileSystem.Utils\FileSystem.Utils.csproj"/>
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\System.IO\System.IO.csproj"/>
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Xml\Xml.csproj"/>
2008-03-05 09:52:00 -05:00
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\ConsoleCategory.targets"/>
</Project>