44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
|
<!--
|
|||
|
###############################################################################
|
|||
|
#
|
|||
|
# Microsoft Research Singularity
|
|||
|
#
|
|||
|
# 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>CredentialsManager</AssemblyName>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="CredentialsManagerService.sg" />
|
|||
|
<Compile Include="Credentials.sg" />
|
|||
|
<Compile Include="ProtocolMapping.sg" />
|
|||
|
<Compile Include="Collections.sg" />
|
|||
|
<Compile Include="Util.sg" />
|
|||
|
<Compile Include="Ntlm.sg" />
|
|||
|
<Compile Include="TraceSwitches.sg" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\CredentialsManager.Contracts\CredentialsManager.Contracts.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Contracts\Security.Contracts\Security.Contracts.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\CredentialsManager\CredentialsManager.Library.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\System.IO\System.IO.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Security\Security.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Crypto\Crypto.csproj" />
|
|||
|
<ProjectReference Include="$(SINGULARITY_ROOT)\Libraries\Ntlm\Ntlm.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<Import Project="$(SINGULARITY_ROOT)\Targets\App.targets" />
|
|||
|
|
|||
|
</Project>
|