- Timestamp:
- 11/27/10 10:48:24 (14 years ago)
- 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 38 38 <Reference Include="System.Core" /> 39 39 <Reference Include="System.Drawing" /> 40 <Reference Include="System.Runtime.Serialization" /> 41 <Reference Include="System.ServiceModel" /> 40 42 <Reference Include="System.Windows.Forms" /> 41 43 <Reference Include="System.Xml.Linq" /> … … 60 62 <Name>HeuristicLab.Services.Authentication.DataTransfer</Name> 61 63 </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> 62 68 <ProjectReference Include="..\HeuristicLab.Services.Authentication\HeuristicLab.Services.Authentication.csproj"> 63 69 <Project>{9FD3F26D-B051-4F4C-9C66-4A361EE357AD}</Project> … … 71 77 </ItemGroup> 72 78 <ItemGroup> 79 <None Include="app.config" /> 80 <None Include="HeuristicLab.snk" /> 73 81 <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Application.datasource" /> 74 82 <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.Role.datasource" /> 75 83 <None Include="Properties\DataSources\HeuristicLab.Services.Authentication.DataTransfer.User.datasource" /> 84 </ItemGroup> 85 <ItemGroup> 86 <WCFMetadata Include="Service References\" /> 76 87 </ItemGroup> 77 88 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/Program.cs
r4789 r4962 4 4 using System.Text; 5 5 using HeuristicLab.Services.Authentication.DataTransfer; 6 using HeuristicLab.Services.Authentication; 7 using System.ServiceModel.Security; 8 using HeuristicLab.Services.Authentication.ServiceClients; 6 9 7 10 namespace HeuristicLab.Services.Authentication.TestClient2 … … 11 14 static void Main(string[] args) 12 15 { 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()); 14 25 } 15 26 }
Note: See TracChangeset
for help on using the changeset viewer.