- Timestamp:
- 02/18/15 10:54:32 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/AccessService.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/AccessServiceLocator.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/AccessServiceRoles.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/App.config
r8040 r12031 2 2 <configuration> 3 3 <connectionStrings> 4 <add name="HeuristicLab.Authentication" 5 connectionString="Data Source=.;Initial Catalog=HeuristicLab.Authentication;Integrated Security=True" 6 providerName="System.Data.SqlClient"/> 4 <add name="HeuristicLab.Authentication" connectionString="Data Source=.;Initial Catalog=HeuristicLab.Authentication;Integrated Security=True" providerName="System.Data.SqlClient"/> 7 5 </connectionStrings> 8 6 <system.web> 9 7 <membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="20"> 10 8 <providers> 11 <clear /> 12 <add name="AspNetSqlMemberShipProvider" 13 type="System.Web.Security.SqlMembershipProvider" 14 connectionStringName="HeuristicLab.Authentication" 15 enablePasswordRetrieval="false" 16 enablePasswordReset="true" 17 requiresQuestionAndAnswer="false" 18 passwordFormat="Hashed" 19 applicationName="HeuristicLab.Authentication" 20 requiresUniqueEmail="false" 21 minRequiredPasswordLength="1" 22 minRequiredNonalphanumericCharacters="0" 23 maxInvalidPasswordAttempts="50" /> 9 <clear/> 10 <add name="AspNetSqlMemberShipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" passwordFormat="Hashed" applicationName="HeuristicLab.Authentication" requiresUniqueEmail="false" minRequiredPasswordLength="1" minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="50"/> 24 11 </providers> 25 12 </membership> 26 <authentication mode="Windows" 13 <authentication mode="Windows"/> 27 14 <roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider"> 28 15 <providers> 29 <clear /> 30 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 31 connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" /> 16 <clear/> 17 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication"/> 32 18 </providers> 33 19 </roleManager> … … 40 26 <wsHttpBinding> 41 27 <binding name="DefaultWsHttpBinding" maxBufferPoolSize="10000000" maxReceivedMessageSize="200000000"> 42 <readerQuotas maxDepth="1000" maxStringContentLength="16000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000" 28 <readerQuotas maxDepth="1000" maxStringContentLength="16000" maxArrayLength="200000000" maxBytesPerRead="200000000" maxNameTableCharCount="16000"/> 43 29 <security mode="Message"> 44 <message clientCredentialType="UserName" 30 <message clientCredentialType="UserName"/> 45 31 </security> 46 32 </binding> 47 33 </wsHttpBinding> 48 34 <mexHttpBinding> 49 <binding name="DefaultMexHttpBinding" 35 <binding name="DefaultMexHttpBinding"/> 50 36 </mexHttpBinding> 51 37 </bindings> … … 58 44 <endpointBehaviors> 59 45 <behavior name="DefaultEndpointBehavior"> 60 <dataContractSerializer maxItemsInObjectGraph="1000000" 46 <dataContractSerializer maxItemsInObjectGraph="1000000"/> 61 47 </behavior> 62 48 </endpointBehaviors> … … 64 50 <serviceBehaviors> 65 51 <behavior name="DefaultServiceBehavior"> 66 <serviceMetadata httpGetEnabled="true" 67 <serviceDebug includeExceptionDetailInFaults="true" 52 <serviceMetadata httpGetEnabled="true"/> 53 <serviceDebug includeExceptionDetailInFaults="true"/> 68 54 <serviceCredentials> 69 <serviceCertificate findValue="localhost" storeLocation="LocalMachine" 70 storeName="My" x509FindType="FindBySubjectName" /> 71 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" 72 membershipProviderName="AspNetSqlMembershipProvider" /> 55 <serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName"/> 56 <userNameAuthentication userNamePasswordValidationMode="MembershipProvider" membershipProviderName="AspNetSqlMembershipProvider"/> 73 57 </serviceCredentials> 74 <serviceAuthorization principalPermissionMode="UseAspNetRoles" 75 roleProviderName="AspNetSqlRoleProvider" /> 58 <serviceAuthorization principalPermissionMode="UseAspNetRoles" roleProviderName="AspNetSqlRoleProvider"/> 76 59 </behavior> 77 60 </serviceBehaviors> … … 80 63 <services> 81 64 <service name="HeuristicLab.Services.Access.AccessService" behaviorConfiguration="DefaultServiceBehavior"> 82 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange" /> 83 <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" 84 contract="HeuristicLab.Services.Access.IAccessService" /> 65 <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange"/> 66 <endpoint behaviorConfiguration="DefaultEndpointBehavior" binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.Access.IAccessService"/> 85 67 <host> 86 68 <baseAddresses> 87 <add baseAddress="http://localhost:81/AccessService" 69 <add baseAddress="http://localhost:81/AccessService"/> 88 70 </baseAddresses> 89 71 </host> … … 91 73 </services> 92 74 </system.serviceModel> 93 < /configuration>75 <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration> -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/Convert.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/AccessItem.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/Client.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/ClientConfiguration.cs
r11171 r12031 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/ClientError.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/ClientGroup.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/ClientGroupMapping.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/ClientLog.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/ClientType.cs
r11171 r12031 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/Country.cs
r11171 r12031 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/LightweightUser.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/OperatingSystem.cs
r11171 r12031 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/Plugin.cs
r11171 r12031 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/Resource.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/Role.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/User.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/UserGroup.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/UserGroupBase.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/DataTransfer/UserGroupMapping.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/HeuristicLab.Services.Access-3.3.csproj
r8600 r12031 13 13 <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> 14 14 <StartArguments>/client:"WcfTestClient.exe"</StartArguments> 15 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>15 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 16 16 <TargetFrameworkProfile> 17 17 </TargetFrameworkProfile> … … 26 26 <WarningLevel>4</WarningLevel> 27 27 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 28 <Prefer32Bit>false</Prefer32Bit> 28 29 </PropertyGroup> 29 30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 37 38 </DocumentationFile> 38 39 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 40 <Prefer32Bit>false</Prefer32Bit> 39 41 </PropertyGroup> 40 42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 46 48 <ErrorReport>prompt</ErrorReport> 47 49 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 50 <Prefer32Bit>false</Prefer32Bit> 48 51 </PropertyGroup> 49 52 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 57 60 <ErrorReport>prompt</ErrorReport> 58 61 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 62 <Prefer32Bit>false</Prefer32Bit> 59 63 </PropertyGroup> 60 64 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 66 70 <ErrorReport>prompt</ErrorReport> 67 71 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 72 <Prefer32Bit>false</Prefer32Bit> 68 73 </PropertyGroup> 69 74 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 77 82 <ErrorReport>prompt</ErrorReport> 78 83 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 84 <Prefer32Bit>false</Prefer32Bit> 79 85 </PropertyGroup> 80 86 <PropertyGroup> … … 160 166 </ProjectExtensions> 161 167 <PropertyGroup> 162 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)168 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 163 169 set ProjectDir=$(ProjectDir) 164 170 set SolutionDir=$(SolutionDir) … … 166 172 167 173 call PreBuildEvent.cmd</PreBuildEvent> 168 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">174 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 169 175 export ProjectDir=$(ProjectDir) 170 176 export SolutionDir=$(SolutionDir) -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/IAccessService.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/Interfaces/IAccessServiceLocator.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/Interfaces/IRoleVerifier.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/Interfaces/IUserManager.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/Properties/AssemblyInfo.cs.frame
r11174 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 [assembly: AssemblyCompany("")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 4HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2015 HEAL")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] … … 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3.1 0.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.11.$WCREV$")] -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/RoleVerifier.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Access/3.3/UserManager.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab.
Note: See TracChangeset
for help on using the changeset viewer.