44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<!--
|
|
###############################################################################
|
|
#
|
|
# Microsoft Research Singularity
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
###############################################################################
|
|
-->
|
|
|
|
<Project DefaultTarget="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Import Project="..\..\Paths.targets"/>
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>testapp</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<OutputPath>$(APPRUNTIMEDIR)</OutputPath>
|
|
<Language>C#</Language>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="testapp.cs"/>
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Interfaces\Singularity.V1\Singularity.V1.csproj">
|
|
<ExcludeFromNativeReferences>true</ExcludeFromNativeReferences>
|
|
</ProjectReference>
|
|
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Io.Contracts\Io.Contracts.csproj"/>
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Directory.Contracts\Directory.Contracts.csproj"/>
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Applications\Runtime\Corlibsg.csproj"/>
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Kernel\SingSharp.Runtime\Microsoft.SingSharp.Runtime.App.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets"/>
|
|
|
|
<!--
|
|
<Target Name="AfterBuild"
|
|
DependsOnTargets="CompileNative">
|
|
</Target>
|
|
-->
|
|
|
|
</Project>
|
|
|