Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/27/10 10:48:24 (14 years ago)
Author:
mjesner
Message:

#1196

Location:
branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/HeuristicLab.Services.Authentication.TestClient2.csproj

    r4789 r4962  
    3838    <Reference Include="System.Core" />
    3939    <Reference Include="System.Drawing" />
     40    <Reference Include="System.Runtime.Serialization" />
     41    <Reference Include="System.ServiceModel" />
    4042    <Reference Include="System.Windows.Forms" />
    4143    <Reference Include="System.Xml.Linq" />
     
    6062      <Name>HeuristicLab.Services.Authentication.DataTransfer</Name>
    6163    </ProjectReference>
     64    <ProjectReference Include="..\HeuristicLab.Services.Authentication.ServiceClients\HeuristicLab.Services.Authentication.ServiceClient.csproj">
     65      <Project>{8E698904-936D-4C7A-AB0D-6225778D2968}</Project>
     66      <Name>HeuristicLab.Services.Authentication.ServiceClient</Name>
     67    </ProjectReference>
    6268    <ProjectReference Include="..\HeuristicLab.Services.Authentication\HeuristicLab.Services.Authentication.csproj">
    6369      <Project>{9FD3F26D-B051-4F4C-9C66-4A361EE357AD}</Project>
     
    7177  </ItemGroup>
    7278  <ItemGroup>
     79    <None Include="app.config" />
     80    <None Include="HeuristicLab.snk" />
    7381    <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Application.datasource" />
    7482    <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Role.datasource" />
    7583    <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.User.datasource" />
     84  </ItemGroup>
     85  <ItemGroup>
     86    <WCFMetadata Include="Service References\" />
    7687  </ItemGroup>
    7788  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/Program.cs

    r4789 r4962  
    44using System.Text;
    55using HeuristicLab.Services.Authentication.DataTransfer;
     6using HeuristicLab.Services.Authentication;
     7using System.ServiceModel.Security;
     8using HeuristicLab.Services.Authentication.ServiceClients;
    69
    710namespace HeuristicLab.Services.Authentication.TestClient2
     
    1114        static void Main(string[] args)
    1215        {
    13             System.Windows.Forms.Application.Run(new UserManagement());
     16            IEnumerable<Application> apps = AuthenticationClient.Instance.Applications;
     17
     18            foreach (Application app in apps)
     19            {
     20                Console.WriteLine(app.Name);
     21            }
     22            Console.ReadLine();
     23
     24            //System.Windows.Forms.Application.Run(new UserManagement());
    1425        }
    1526    }
Note: See TracChangeset for help on using the changeset viewer.