singrdk/base/Windows/mlarm/mlarm.csproj

39 lines
1.1 KiB
XML
Raw Permalink 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
File: Windows\Mlarm\Mlarm.csproj
Note: Native Image Builder
This program handles converting collections of IL assemblies into native
executable images. It is mostly a front-end to Bartok and LINK.
2008-03-05 09:52:00 -05:00
##############################################################################
-->
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Paths.targets"/>
<PropertyGroup>
2008-11-17 18:29:00 -05:00
<AssemblyName>mlarm</AssemblyName>
2008-03-05 09:52:00 -05:00
<OutputType>Exe</OutputType>
2008-11-17 18:29:00 -05:00
<WindowsToolInstallDirectory>$(SINGULARITY_ROOT)\build\x86_arm</WindowsToolInstallDirectory>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2008-03-05 09:52:00 -05:00
</PropertyGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<Compile Include="mlarm.cs"/>
</ItemGroup>
<ItemGroup>
2008-03-05 09:52:00 -05:00
<Reference Include="System"/>
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
</Project>