36 lines
1.0 KiB
XML
36 lines
1.0 KiB
XML
|
<!--
|
|||
|
###############################################################################
|
|||
|
#
|
|||
|
# Microsoft Research Singularity
|
|||
|
#
|
|||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
#
|
|||
|
###############################################################################
|
|||
|
-->
|
|||
|
|
|||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\Paths.targets"/>
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<ProductVersion>8.0.50727</ProductVersion>
|
|||
|
<SchemaVersion>2.0</SchemaVersion>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<AssemblyName>AppReader</AssemblyName>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="ReaderMain.cs"/>
|
|||
|
<Compile Include="AppTree.cs"/>
|
|||
|
<Compile Include="AppNode.cs"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="System"/>
|
|||
|
<Reference Include="System.Xml"/>
|
|||
|
<ProjectReference Include="ManifestParsers.csproj"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
|
|||
|
|
|||
|
</Project>
|