83 lines
3.1 KiB
XML
83 lines
3.1 KiB
XML
|
<!--
|
|||
|
###############################################################################
|
|||
|
#
|
|||
|
# Microsoft Research Singularity
|
|||
|
#
|
|||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
#
|
|||
|
###############################################################################
|
|||
|
-->
|
|||
|
|
|||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\..\Paths.targets" />
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AssemblyName>NetStackLib</AssemblyName>
|
|||
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
|
|||
|
<!-- PROTOCOL_SOURCES -->
|
|||
|
<Compile Include="Protocol\ARPFmt.cs" />
|
|||
|
<Compile Include="Protocol\DhcpFmt.cs" />
|
|||
|
<Compile Include="Protocol\DhcpOptions.cs" />
|
|||
|
<Compile Include="Protocol\DnsFmt.cs" />
|
|||
|
<Compile Include="Protocol\EtherFmt.cs" />
|
|||
|
<Compile Include="Protocol\ICMPFmt.cs" />
|
|||
|
<Compile Include="Protocol\IPFmt.cs" />
|
|||
|
<Compile Include="Protocol\TCPFmt.cs" />
|
|||
|
<Compile Include="Protocol\UDPFmt.cs" />
|
|||
|
|
|||
|
|
|||
|
<!-- RUNTIME_SOURCES -->
|
|||
|
<Compile Include="Runtime\AdapterInfo.cs" />
|
|||
|
<Compile Include="Runtime\ARPModule.cs" />
|
|||
|
<Compile Include="Runtime\Core.cs" />
|
|||
|
<Compile Include="Runtime\DeMux.cs" />
|
|||
|
<Compile Include="Runtime\DhcpClientFSM.cs" />
|
|||
|
<Compile Include="Runtime\DhcpClient.cs" />
|
|||
|
<Compile Include="Runtime\Dispatcher.cs" />
|
|||
|
<Compile Include="Runtime\DnsClient.cs" />
|
|||
|
<Compile Include="Runtime\HostConfiguration.cs" />
|
|||
|
<Compile Include="Runtime\ICMPModule.cs" />
|
|||
|
<Compile Include="Runtime\ICMPSession.cs" />
|
|||
|
<Compile Include="Runtime\INetModule.cs" />
|
|||
|
<Compile Include="Runtime\IPModule.cs" />
|
|||
|
<Compile Include="Runtime\IProtocol.cs" />
|
|||
|
<Compile Include="Runtime\Mux.cs" />
|
|||
|
<Compile Include="Runtime\NetStatus.cs" />
|
|||
|
<Compile Include="Runtime\PacketTypes.cs" />
|
|||
|
<Compile Include="Runtime\ProtocolParams.cs" />
|
|||
|
<Compile Include="Runtime\RoutingTable.cs" />
|
|||
|
<Compile Include="Runtime\Session.cs" />
|
|||
|
<Compile Include="Runtime\StaticConfiguration.cs" />
|
|||
|
<Compile Include="Runtime\TCPFsm.cs" />
|
|||
|
<Compile Include="Runtime\TCPModule.cs" />
|
|||
|
<Compile Include="Runtime\TCPSession.cs" />
|
|||
|
<Compile Include="Runtime\TCPSessionPool.cs" />
|
|||
|
<Compile Include="Runtime\TimeOut.cs" />
|
|||
|
<Compile Include="Runtime\Timers.cs" />
|
|||
|
<Compile Include="Runtime\UDPModule.cs" />
|
|||
|
<Compile Include="Runtime\UDPSession.cs" />
|
|||
|
|
|||
|
|
|||
|
<!-- COMMON_SOURCES -->
|
|||
|
<Compile Include="Common\IAdapter.cs" />
|
|||
|
<Compile Include="Common\IBuffer.cs" />
|
|||
|
<Compile Include="Common\NetPacket.cs" />
|
|||
|
<Compile Include="Common\SimpleBuffer.cs" />
|
|||
|
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\NetStack.Contracts\NetStack.Contracts.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Drivers.Net\Drivers.Net.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\System.Net.IP\System.Net.IP.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\ConsoleCategory.targets" />
|
|||
|
|
|||
|
</Project>
|