singrdk/base/Libraries/Crypto/Crypto.csproj

46 lines
1.4 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: 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>
2008-11-17 18:29:00 -05:00
<Compile Include="AssemblyInfo.sg" />
2008-03-05 09:52:00 -05:00
<!-- # already part of kernel.exe and corlib.dll MD5.cs -->
<Compile Include="Random.cs" />
2008-11-17 18:29:00 -05:00
<Compile Include="Rsa\Digit.cs" />
<Compile Include="Rsa\Digit2.cs" />
<Compile Include="Rsa\Digits.cs" />
<Compile Include="Rsa\Modular.cs" />
<Compile Include="Rsa\Modulus.cs" />
<Compile Include="Rsa\Prime.cs" />
<Compile Include="Rsa\RSA.cs" />
2008-03-05 09:52:00 -05:00
<Compile Include="Des.cs" />
<Compile Include="MD4.cs" />
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
</Project>