26 lines
730 B
XML
26 lines
730 B
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>VolMgr</AssemblyName>
|
|||
|
<AssumeFieldsNonNull>true</AssumeFieldsNonNull>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="disk.sg" />
|
|||
|
<Compile Include="volmgr.sg" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\DriverCategory.targets" />
|
|||
|
|
|||
|
</Project>
|