44 lines
1.3 KiB
XML
44 lines
1.3 KiB
XML
<!--
|
|
##############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
# File: Libraries\Crypto\Makefile
|
|
#
|
|
# Note:
|
|
#
|
|
##############################################################################
|
|
-->
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Crypto</AssemblyName>
|
|
<OutputType>Library</OutputType>
|
|
<Language>C#</Language>
|
|
<AssemblyEnvironment>none</AssemblyEnvironment>
|
|
<WarningLevel>2</WarningLevel>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Digit.cs" />
|
|
<Compile Include="Digit2.cs" />
|
|
<Compile Include="Digits.cs" />
|
|
<!-- # already part of kernel.exe and corlib.dll MD5.cs -->
|
|
<Compile Include="Modular.cs" />
|
|
<Compile Include="Modulus.cs" />
|
|
<Compile Include="Prime.cs" />
|
|
<Compile Include="Random.cs" />
|
|
<Compile Include="Des.cs" />
|
|
<Compile Include="MD4.cs" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
|
|
|
|
</Project>
|