singrdk/base/Windows/SmtpClient/SmtpClientDriver.csproj

37 lines
977 B
XML
Raw Normal View History

2008-03-05 09:52:00 -05:00
<!--
##############################################################################
Microsoft Research Singularity
Copyright (c) Microsoft Corporation. All rights reserved.
2008-11-17 18:29:00 -05:00
File: Windows\SmtpClient\SmtpClient.csproj
Note: Test client for SMTP server
2008-03-05 09:52:00 -05:00
##############################################################################
-->
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Paths.targets"/>
<PropertyGroup>
2008-11-17 18:29:00 -05:00
<AssemblyName>SmtpClientDriver</AssemblyName>
2008-03-05 09:52:00 -05:00
<OutputType>Exe</OutputType>
2008-11-17 18:29:00 -05:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2008-03-05 09:52:00 -05:00
</PropertyGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<Compile Include="SmtpClientDriver.cs"/>
<Compile Include="Session.cs"/>
</ItemGroup>
<ItemGroup>
2008-03-05 09:52:00 -05:00
<Reference Include="System"/>
2008-11-17 18:29:00 -05:00
<Reference Include="System.Net"/>
2008-03-05 09:52:00 -05:00
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
</Project>