33 lines
951 B
XML
33 lines
951 B
XML
|
<!--
|
|||
|
##############################################################################
|
|||
|
|
|||
|
Microsoft Research Singularity
|
|||
|
|
|||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
|
|||
|
File: Windows\YourApp\YourApp.csproj
|
|||
|
|
|||
|
Note: Windows-based test app for NetStack
|
|||
|
|
|||
|
##############################################################################
|
|||
|
-->
|
|||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|||
|
<Import Project="..\Paths.targets"/>
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<ProductVersion>8.0.50727</ProductVersion>
|
|||
|
<SchemaVersion>2.0</SchemaVersion>
|
|||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|||
|
<AssemblyName>UdpBlast</AssemblyName>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="udpblast.cs"/>
|
|||
|
<Reference Include="System"/>
|
|||
|
<Reference Include="System.Net"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\Windows.targets" />
|
|||
|
|
|||
|
</Project>
|