40 lines
1.1 KiB
XML
40 lines
1.1 KiB
XML
|
<!--
|
|||
|
##############################################################################
|
|||
|
|
|||
|
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.
|
|||
|
|
|||
|
|
|||
|
##############################################################################
|
|||
|
-->
|
|||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\Paths.targets"/>
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<AssemblyName>nib</AssemblyName>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="nib.cs"/>
|
|||
|
<Compile Include="..\WindowsInteropLib\Kernel32.cs"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="System"/>
|
|||
|
<Reference Include="System.Xml"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
|
|||
|
|
|||
|
</Project>
|