- Timestamp:
- 11/28/10 23:11:21 (14 years ago)
- Location:
- branches/UserManagement
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UserManagement/HeuristicLab.Services.Authentication.ServiceClients/AuthenticationClient.cs
r4979 r4983 47 47 { 48 48 applications = CallService<Application[]>(s => s.GetApplications()).OrderBy(x => x.Name); 49 users = CallService<User[]>(s => s.GetAllUsers()).OrderBy(x => x.Name); 50 roles = CallService<Role[]>(s => s.GetAllRoles()).OrderBy(x => x.Name); 49 51 } 50 52 -
branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/HeuristicLab.Services.Authentication.TestClient2.csproj
r4962 r4983 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{EB40C828-D545-4DFE-9CE6-108FB03C6912}</ProjectGuid> 9 <OutputType> Exe</OutputType>9 <OutputType>WinExe</OutputType> 10 10 <AppDesignerFolder>Properties</AppDesignerFolder> 11 11 <RootNamespace>HeuristicLab.Services.Authentication.TestClient2</RootNamespace> … … 34 34 <WarningLevel>4</WarningLevel> 35 35 </PropertyGroup> 36 <PropertyGroup> 37 <StartupObject /> 38 </PropertyGroup> 36 39 <ItemGroup> 37 40 <Reference Include="System" /> … … 48 51 </ItemGroup> 49 52 <ItemGroup> 53 <Compile Include="Form1.cs"> 54 <SubType>Form</SubType> 55 </Compile> 56 <Compile Include="Form1.Designer.cs"> 57 <DependentUpon>Form1.cs</DependentUpon> 58 </Compile> 50 59 <Compile Include="Program.cs" /> 51 60 <Compile Include="Properties\AssemblyInfo.cs" /> … … 72 81 </ItemGroup> 73 82 <ItemGroup> 83 <EmbeddedResource Include="Form1.resx"> 84 <DependentUpon>Form1.cs</DependentUpon> 85 </EmbeddedResource> 74 86 <EmbeddedResource Include="UserManagement.resx"> 75 87 <DependentUpon>UserManagement.cs</DependentUpon> -
branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/Program.cs
r4979 r4983 26 26 Console.WriteLine(u.Name); 27 27 } 28 Console.ReadLine(); 28 Console.ReadLine(); 29 29 30 //System.Windows.Forms.Application.Run(new UserManagement());30 System.Windows.Forms.Application.Run(new Form1()); 31 31 } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.