35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<!--
|
|
###############################################################################
|
|
#
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
#
|
|
###############################################################################
|
|
-->
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="..\..\..\Paths.targets" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<AssemblyName>RamDisk</AssemblyName>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|
<ApplicationCategory>Custom</ApplicationCategory>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="RamDisk.sg" />
|
|
<Compile Include="Main.sg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Contracts\RamDiskContracts.csproj" />
|
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Services\Transforms\ServiceTransform.csproj" >
|
|
<ExcludeFromNativeReferences>true</ExcludeFromNativeReferences>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
|
|
|
|
</Project>
|