singrdk/base/Services/Iso9660/Iso9660.csproj

51 lines
2.2 KiB
XML
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
<!--
###############################################################################
#
# 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>iso9660</AssemblyName>
<NoWarn>2614,2637,2638,2613,2639</NoWarn>
2008-11-17 18:29:00 -05:00
<ServiceActivationMode>Demand</ServiceActivationMode>
2008-03-05 09:52:00 -05:00
</PropertyGroup>
<ItemGroup>
<Compile Include="Main.sg"/>
<Compile Include="Iso9660DirectoryInfo.cs"/>
<Compile Include="Iso9660FileInfo.cs"/>
<Compile Include="Iso9660FileSystemInfo.cs"/>
<Compile Include="Iso9660FileStream.cs"/>
<Compile Include="SingFSStructs.cs"/>
<Compile Include="FSFileInstanceWorker.sg"/>
<Compile Include="FSDirectoryInstanceWorker.sg"/>
<Compile Include="ByteContainers.sg"/>
<Compile Include="FSRequest.sg"/>
<Compile Include="FSThreadPool.sg"/>
<Compile Include="StdIOSingularity.sg"/>
<Compile Include="ByteArray.cs"/>
<Compile Include="iso9660.cs"/>
<Compile Include="Int.cs"/>
</ItemGroup>
<ItemGroup>
2008-11-17 18:29:00 -05:00
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\ServiceManager.Contracts\ServiceManager.Contracts.csproj"/>
2008-03-05 09:52:00 -05:00
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\FileSystem.Contracts\FileSystem.Contracts.csproj"/>
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Security.Contracts\Security.Contracts.csproj" />
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\DirectoryService.Utils\DirectoryService.Utils.csproj" />
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\FileSystem.Utils\FileSystem.Utils.csproj" />
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Security\Security.csproj" />
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Xml\Xml.csproj"/>
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\System.IO\System.IO.csproj"/>
</ItemGroup>
2008-11-17 18:29:00 -05:00
<Import Project="$(SINGULARITY_ROOT)\Targets\ServiceCategory.targets" />
2008-03-05 09:52:00 -05:00
</Project>