singrdk/base/Windows/nib/nib.csproj

35 lines
1.2 KiB
XML
Raw Normal View History

2008-03-05 09:52:00 -05:00
<!--
##############################################################################
Microsoft Research Singularity
Copyright (c) Microsoft Corporation. All rights reserved.
File: Windows\Nib\Nib.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-11-17 18:29:00 -05:00
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<Import Project="..\Paths.targets" />
2008-03-05 09:52:00 -05:00
<PropertyGroup>
<AssemblyName>nib</AssemblyName>
<OutputType>Exe</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2008-11-17 18:29:00 -05:00
<ProjectGuid>{84B9B480-CE90-423A-A3AE-532AAF37D1EB}</ProjectGuid>
2008-03-05 09:52:00 -05:00
</PropertyGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<Compile Include="nib.cs" />
<Compile Include="..\WindowsInteropLib\Kernel32.cs" />
2008-03-05 09:52:00 -05:00
</ItemGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<Reference Include="System" />
<Reference Include="System.Xml" />
2008-03-05 09:52:00 -05:00
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
2008-11-17 18:29:00 -05:00
</Project>