singrdk/base/Windows/mkflash/mkflash.csproj

38 lines
993 B
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\Mkflash\Mkflash.csproj
Note: Flash Image Builder
This program converts a list of assemblies and other files into a
single binary image for flash memory.
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>mkflash</AssemblyName>
2008-03-05 09:52:00 -05:00
<OutputType>Exe</OutputType>
2008-11-17 18:29:00 -05:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2008-03-05 09:52:00 -05:00
</PropertyGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<Compile Include="mkflash.cs"/>
</ItemGroup>
<ItemGroup>
2008-03-05 09:52:00 -05:00
<Reference Include="System"/>
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
</Project>