singrdk/base/Kernel/ILHelpers.proj

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2008-03-05 09:52:00 -05:00
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Paths.targets"/>
<PropertyGroup>
<AssemblyName>ILHelpers</AssemblyName>
<OutputType>Library</OutputType>
<OutputPath>$(KERNEL_IL_DIR)</OutputPath>
</PropertyGroup>
<PropertyGroup>
<AssemblyOutputPath>$(OutputPath)\$(AssemblyName).dll</AssemblyOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="Bartok\ILHelpers.il"/>
</ItemGroup>
<Target Name="BuildILHelpers" Inputs="@(Compile)" Outputs="$(AssemblyOutputPath)"
DependsOnTargets="CreateStrongName">
<Message Text="Building ILHelpers"/>
<MakeDir Directories="$(OutputPath)"/>
<Exec Command="$(ILASM) /nologo /quiet /dll /debug /key=$(OutputPath)\public.snk /output=$(AssemblyOutputPath) @(Compile,' ')" />
</Target>
<Target Name="CreateStrongName" Condition="'$(NoStrongName)'!='true'">
<MSBuild Projects="$(SINGULARITY_ROOT)\Build\BuildKey.proj"/>
</Target>
<Target Name="Build" DependsOnTargets="BuildILHelpers" Outputs="$(AssemblyOutputPath)">
</Target>
</Project>