- Timestamp:
- 05/20/15 16:41:14 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Properties/PublishProfiles/Hive.Statistics-3.3.pubxml
r9617 r12395 21 21 <PublishDatabaseSettings> 22 22 <Objects xmlns=""> 23 <ObjectGroup Name="HeuristicLab. Authentication" Order="3" Enabled="False">23 <ObjectGroup Name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" Order="1" Enabled="False"> 24 24 <Destination Path="" /> 25 25 <Object Type="DbDacFx"> 26 <PreSource Path="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" includeData="False" /> 26 <PreSource Path="Data Source=.\SQLEXPRESS;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True" includeData="False" /> 27 <Source Path="$(IntermediateOutputPath)AutoScripts\HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" /> 28 </Object> 29 <UpdateFrom Type="Web.Config"> 30 <Source MatchValue="Data Source=.\SQLEXPRESS;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" /> 31 </UpdateFrom> 32 </ObjectGroup> 33 <ObjectGroup Name="HeuristicLab.Authentication" Order="2" Enabled="False"> 34 <Destination Path="" /> 35 <Object Type="DbDacFx"> 36 <PreSource Path="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" includeData="False" /> 27 37 <Source Path="$(IntermediateOutputPath)AutoScripts\HeuristicLab.Authentication_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" /> 28 38 </Object> 29 39 <UpdateFrom Type="Web.Config"> 30 <Source MatchValue="data source= localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />40 <Source MatchValue="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" MatchAttributes="$(UpdateFromConnectionStringAttributes)" /> 31 41 </UpdateFrom> 32 42 </ObjectGroup> 33 43 </Objects> 34 44 </PublishDatabaseSettings> 45 <LaunchSiteAfterPublish>True</LaunchSiteAfterPublish> 35 46 </PropertyGroup> 36 47 <ItemGroup> -
branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Web.config
r11020 r12395 1 <?xml version="1.0"?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <!-- 3 3 For more information on how to configure your ASP.NET application, please visit … … 6 6 <configuration> 7 7 <connectionStrings> 8 <add name="HeuristicLab.Authentication" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/> 9 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient"/> 8 <remove name="HeuristicLab.Authentication" /> 9 <remove name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" /> 10 <add name="HeuristicLab.Authentication" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" /> 11 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient" /> 10 12 </connectionStrings> 11 13 <appSettings> 12 <add key="webpages:Version" value="2.0.0.0" />13 <add key="webpages:Enabled" value="false" />14 <add key="PreserveLoginUrl" value="true" />15 <add key="ClientValidationEnabled" value="true" />16 <add key="UnobtrusiveJavaScriptEnabled" value="true" />14 <add key="webpages:Version" value="2.0.0.0" /> 15 <add key="webpages:Enabled" value="false" /> 16 <add key="PreserveLoginUrl" value="true" /> 17 <add key="ClientValidationEnabled" value="true" /> 18 <add key="UnobtrusiveJavaScriptEnabled" value="true" /> 17 19 </appSettings> 18 20 <system.web> 19 <compilation targetFramework="4.0" debug="true" />21 <compilation targetFramework="4.0" debug="true" /> 20 22 <authentication mode="Forms"> 21 <forms loginUrl="~/Account/Login" timeout="2880" />23 <forms loginUrl="~/Account/Login" timeout="2880" /> 22 24 </authentication> 23 25 <membership> 24 26 <providers> 25 <clear />26 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="HeuristicLab.Authentication" />27 <clear /> 28 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="HeuristicLab.Authentication" /> 27 29 </providers> 28 30 </membership> 29 31 <roleManager enabled="true"> 30 32 <providers> 31 <clear />32 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />33 <clear /> 34 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" /> 33 35 </providers> 34 36 </roleManager> 35 37 <pages> 36 38 <namespaces> 37 <add namespace="System.Web.Helpers" />38 <add namespace="System.Web.Mvc" />39 <add namespace="System.Web.Mvc.Ajax" />40 <add namespace="System.Web.Mvc.Html" />41 <add namespace="System.Web.Optimization" />42 <add namespace="System.Web.Routing" />43 <add namespace="System.Web.WebPages" />39 <add namespace="System.Web.Helpers" /> 40 <add namespace="System.Web.Mvc" /> 41 <add namespace="System.Web.Mvc.Ajax" /> 42 <add namespace="System.Web.Mvc.Html" /> 43 <add namespace="System.Web.Optimization" /> 44 <add namespace="System.Web.Routing" /> 45 <add namespace="System.Web.WebPages" /> 44 46 </namespaces> 45 47 </pages> 46 48 </system.web> 47 49 <system.webServer> 48 <validation validateIntegratedModeConfiguration="false" />49 <modules runAllManagedModulesForAllRequests="true" />50 <validation validateIntegratedModeConfiguration="false" /> 51 <modules runAllManagedModulesForAllRequests="true" /> 50 52 </system.webServer> 51 53 <runtime> 52 54 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 53 55 <dependentAssembly> 54 <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />55 <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />56 <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> 57 <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> 56 58 </dependentAssembly> 57 59 <dependentAssembly> 58 <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />59 <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />60 <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> 61 <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" /> 60 62 </dependentAssembly> 61 63 <dependentAssembly> 62 <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />63 <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />64 <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> 65 <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> 64 66 </dependentAssembly> 65 67 <dependentAssembly> 66 <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />67 <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />68 <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> 69 <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" /> 68 70 </dependentAssembly> 69 71 </assemblyBinding>
Note: See TracChangeset
for help on using the changeset viewer.