Skip to content

Commit d2525d4

Browse files
committed
Clean-up ConnectionStringHelper for forking
1 parent a5ffa40 commit d2525d4

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

Elmah.sln.DotSettings

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
22
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ARRANGE_MODIFIER_IN_EXISTING_CODE/@EntryValue">False</s:Boolean>
33
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/EXPLICIT_INTERNAL_MODIFIER/@EntryValue">False</s:Boolean>
44
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/EXPLICIT_PRIVATE_MODIFIER/@EntryValue">False</s:Boolean>
55
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AROUND_MULTIPLICATIVE_OP/@EntryValue">True</s:Boolean>
66
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_SIZEOF_PARENTHESES/@EntryValue">False</s:Boolean>
77
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_TYPEOF_PARENTHESES/@EntryValue">False</s:Boolean>
88
<s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/AddImportsToDeepestScope/@EntryValue">True</s:Boolean>
9+
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
910
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
11+
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean>
1012
<s:String x:Key="/Default/FilterSettingsManager/CoverageFilterXml/@EntryValue">&lt;data&gt;&lt;IncludeFilters /&gt;&lt;ExcludeFilters /&gt;&lt;/data&gt;</s:String>
1113
<s:String x:Key="/Default/FilterSettingsManager/AttributeFilterXml/@EntryValue">&lt;data /&gt;</s:String></wpf:ResourceDictionary>

samples/Demo/vwd.webinfo

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
Visual Studio global web project settings.
4+
-->
5+
<VisualWebDeveloper>
6+
7+
<iisExpressSettings windowsAuthentication="enabled" anonymousAuthentication="enabled" useClassicPipelineMode="false"/>
8+
</VisualWebDeveloper>

src/Elmah.MsAccess/Elmah.MsAccess.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">NETFX 4.5 Debug</Configuration>
@@ -118,7 +118,7 @@
118118
<Folder Include="Properties\" />
119119
</ItemGroup>
120120
<ItemGroup>
121-
<EmbeddedResource Include="mkmdb.vbs" >
121+
<EmbeddedResource Include="mkmdb.vbs">
122122
<LogicalName>Elmah.mkmdb.vbs</LogicalName>
123123
</EmbeddedResource>
124124
</ItemGroup>

src/Elmah.Oracle/Elmah.Oracle.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">NETFX 4.5 Debug</Configuration>

src/Elmah/ConnectionStringHelper.cs

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
#region License, Terms and Author(s)
1+
#region Copyright (c) 2004 Atif Aziz. All rights reserved.
22
//
33
// ELMAH - Error Logging Modules and Handlers for ASP.NET
4-
// Copyright (c) 2004-9 Atif Aziz. All rights reserved.
5-
//
6-
// Author(s):
7-
//
8-
// Atif Aziz, http://www.raboof.com
9-
// James Driscoll, mailto:[email protected]
4+
// Copyright (c) 2004 Atif Aziz. All rights reserved.
105
//
116
// Licensed under the Apache License, Version 2.0 (the "License");
127
// you may not use this file except in compliance with the License.
@@ -22,8 +17,6 @@
2217
//
2318
#endregion
2419

25-
[assembly: Elmah.Scc("$Id: ConnectionStringHelper.cs 641 2009-06-01 17:38:40Z azizatif $")]
26-
2720
namespace Elmah
2821
{
2922
#region Imports

0 commit comments

Comments
 (0)