Skip to content

Commit ba75d3a

Browse files
committed
Renamed the PCL Library to Exceptionless.Portable and the Exceptionless.Console library to Exceptionless
1 parent 5f06d8d commit ba75d3a

37 files changed

+81
-75
lines changed

Exceptionless.Net.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2323
EndProject
2424
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless.WebApi", "Source\Platforms\WebApi\Exceptionless.WebApi.csproj", "{D6E6EE87-5869-4A62-8F67-7A685205BCAD}"
2525
EndProject
26-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless", "Source\Shared\Exceptionless.csproj", "{14DFD206-B445-4D52-9C3C-8B2F69B22B91}"
26+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless.Portable", "Source\Shared\Exceptionless.Portable.csproj", "{14DFD206-B445-4D52-9C3C-8B2F69B22B91}"
2727
EndProject
2828
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless.Tests", "Source\Tests\Exceptionless.Tests.csproj", "{D8F22775-3DB8-4BAD-AFCF-9CC8DAF7A807}"
2929
EndProject
@@ -55,7 +55,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless.SampleWindows
5555
EndProject
5656
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless.NLog", "Source\Platforms\NLog\Exceptionless.NLog.csproj", "{5EB81EEF-ED35-4AD2-9B20-0B3E5C94BBA4}"
5757
EndProject
58-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless.Console", "Source\Platforms\Console\Exceptionless.Console.csproj", "{1E53D5CD-1719-4BFB-A9A8-7D46BACA6402}"
58+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Exceptionless", "Source\Platforms\Console\Exceptionless.csproj", "{1E53D5CD-1719-4BFB-A9A8-7D46BACA6402}"
5959
EndProject
6060
Global
6161
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Libraries/Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
ForEach ($p in $client_projects) {
55
ForEach ($b in $client_build_configurations) {
6-
$isPclClient = ($($p.Name) -eq "Exceptionless") -or ($($p.Name) -eq "Exceptionless.Signed")
6+
$isPclClient = ($($p.Name) -eq "Exceptionless.Portable") -or ($($p.Name) -eq "Exceptionless.Portable.Signed")
77
If (($isPclClient -and ($($b.NuGetDir) -ne "portable-net40+sl50+win+wpa81+wp80")) -or (!$isPclClient -and ($($b.NuGetDir) -eq "portable-net40+sl50+win+wpa81+wp80"))) {
88
Continue;
99
}

Libraries/Package.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ForEach ($p in $client_projects) {
1919

2020
#copy assemblies from build directory to working directory.
2121
ForEach ($b in $client_build_configurations) {
22-
$isPclClient = ($($p.Name) -eq "Exceptionless") -or ($($p.Name) -eq "Exceptionless.Signed")
22+
$isPclClient = ($($p.Name) -eq "Exceptionless.Portable") -or ($($p.Name) -eq "Exceptionless.Portable.Signed")
2323
If (($isPclClient -and ($($b.NuGetDir) -ne "portable-net40+sl50+win+wpa81+wp80")) -or (!$isPclClient -and ($($b.NuGetDir) -eq "portable-net40+sl50+win+wpa81+wp80"))) {
2424
Continue;
2525
}
@@ -43,7 +43,7 @@ ForEach ($p in $client_projects) {
4343
robocopy "$base_dir\Source\Core" "$workingDirectory\src\Source\Core" *.cs /S /NP /XD obj | Out-Null
4444
Copy-Item "$base_dir\Source\GlobalAssemblyInfo.cs" "$workingDirectory\src\Source\GlobalAssemblyInfo.cs"
4545

46-
If (($($p.Name) -ne "Exceptionless") -and ($($p.Name) -ne "Exceptionless.Signed")) {
46+
If (($($p.Name) -ne "Exceptionless.Portable") -and ($($p.Name) -ne "Exceptionless.Portable.Signed")) {
4747
robocopy "$base_dir\Source\Extras" "$workingDirectory\src\Source\Extras" *.cs /S /NP /XD obj | Out-Null
4848
}
4949

Libraries/Settings.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ $source_dir = "$base_dir\Source"
77
$sign_file = "$source_dir\Exceptionless.snk"
88

99
$client_projects = @(
10-
@{ Name = "Exceptionless"; SourceDir = "$source_dir\Shared"; ExternalNuGetDependencies = $null; MergeDependencies = $null; },
11-
@{ Name = "Exceptionless.Signed"; SourceDir = "$source_dir\Shared"; ExternalNuGetDependencies = $null; MergeDependencies = $null; },
10+
@{ Name = "Exceptionless.Portable"; SourceDir = "$source_dir\Shared"; ExternalNuGetDependencies = $null; MergeDependencies = $null; },
11+
@{ Name = "Exceptionless.Portable.Signed"; SourceDir = "$source_dir\Shared"; ExternalNuGetDependencies = $null; MergeDependencies = $null; },
1212
@{ Name = "Exceptionless.Mvc"; SourceDir = "$source_dir\Platforms\Mvc"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
1313
@{ Name = "Exceptionless.Mvc.Signed"; SourceDir = "$source_dir\Platforms\Mvc"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
1414
@{ Name = "Exceptionless.Nancy"; SourceDir = "$source_dir\Platforms\Nancy"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
@@ -18,8 +18,8 @@ $client_projects = @(
1818
@{ Name = "Exceptionless.Web.Signed"; SourceDir = "$source_dir\Platforms\Web"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
1919
@{ Name = "Exceptionless.Windows"; SourceDir = "$source_dir\Platforms\Windows"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
2020
@{ Name = "Exceptionless.Windows.Signed"; SourceDir = "$source_dir\Platforms\Windows"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
21-
@{ Name = "Exceptionless.Console"; SourceDir = "$source_dir\Platforms\Console"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
22-
@{ Name = "Exceptionless.Console.Signed"; SourceDir = "$source_dir\Platforms\Console"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
21+
@{ Name = "Exceptionless"; SourceDir = "$source_dir\Platforms\Console"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
22+
@{ Name = "Exceptionless.Signed"; SourceDir = "$source_dir\Platforms\Console"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
2323
@{ Name = "Exceptionless.Wpf"; SourceDir = "$source_dir\Platforms\Wpf"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
2424
@{ Name = "Exceptionless.Wpf.Signed"; SourceDir = "$source_dir\Platforms\Wpf"; ExternalNuGetDependencies = $null; MergeDependencies = "Exceptionless.Extras.dll;"; },
2525
@{ Name = "Exceptionless.NLog"; SourceDir = "$source_dir\Platforms\NLog"; ExternalNuGetDependencies = "NLog"; MergeDependencies = $null; }

Source/Extras/Exceptionless.Extras.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@
8181
<Compile Include="Utility\WrappedDisposable.cs" />
8282
</ItemGroup>
8383
<ItemGroup>
84-
<ProjectReference Include="..\Shared\Exceptionless.csproj">
84+
<ProjectReference Include="..\Shared\Exceptionless.Portable.csproj">
8585
<Project>{14dfd206-b445-4d52-9c3c-8b2f69b22b91}</Project>
86-
<Name>Exceptionless</Name>
86+
<Name>Exceptionless.Portable</Name>
8787
</ProjectReference>
8888
</ItemGroup>
8989
<ItemGroup>

Source/GlobalAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[assembly: AssemblyProduct("Exceptionless")]
1616
[assembly: AssemblyCompany("Exceptionless")]
1717
[assembly: AssemblyTrademark("Exceptionless")]
18-
[assembly: AssemblyCopyright("Copyright (c) 2014 Exceptionless. All rights reserved.")]
18+
[assembly: AssemblyCopyright("Copyright (c) 2015 Exceptionless. All rights reserved.")]
1919
#if DEBUG
2020

2121
[assembly: AssemblyConfiguration("Debug")]
@@ -34,7 +34,7 @@ internal sealed partial class ThisAssembly {
3434

3535
internal const string AssemblyTrademark = "Exceptionless";
3636

37-
internal const string AssemblyCopyright = "Copyright (c) 2014 Exceptionless. All rights reserved.";
37+
internal const string AssemblyCopyright = "Copyright (c) 2015 Exceptionless. All rights reserved.";
3838

3939
internal const string AssemblyConfiguration = "Release";
4040

Source/Platforms/Console/Exceptionless.Console.csproj renamed to Source/Platforms/Console/Exceptionless.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ProjectGuid>{1E53D5CD-1719-4BFB-A9A8-7D46BACA6402}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>Exceptionless.Console</RootNamespace>
12-
<AssemblyName>Exceptionless.Console</AssemblyName>
11+
<RootNamespace>Exceptionless</RootNamespace>
12+
<AssemblyName>Exceptionless</AssemblyName>
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<TargetFrameworkProfile />
@@ -21,7 +21,7 @@
2121
<DebugType>full</DebugType>
2222
<Optimize>false</Optimize>
2323
<OutputPath>bin\Debug\$(TargetFrameworkVersion)\</OutputPath>
24-
<DefineConstants>TRACE;DEBUG;EMBEDDED;</DefineConstants>
24+
<DefineConstants>TRACE;DEBUG</DefineConstants>
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
2727
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
@@ -34,7 +34,7 @@
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>
3636
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
37-
<DocumentationFile>bin\Release\$(TargetFrameworkVersion)\Exceptionless.Console.xml</DocumentationFile>
37+
<DocumentationFile>bin\Release\v4.0\Exceptionless.xml</DocumentationFile>
3838
<NoWarn>1591</NoWarn>
3939
</PropertyGroup>
4040
<PropertyGroup Condition=" '$(TargetFrameworkVersionProperty)' == 'NET40' ">
@@ -58,21 +58,21 @@
5858
<Compile Include="..\..\GlobalAssemblyInfo.cs">
5959
<Link>Properties\GlobalAssemblyInfo.cs</Link>
6060
</Compile>
61-
<Compile Include="ExceptionlessConsoleExtensions.cs" />
61+
<Compile Include="ExceptionlessExtensions.cs" />
6262
<Compile Include="Properties\AssemblyInfo.cs" />
6363
</ItemGroup>
6464
<ItemGroup>
6565
<ProjectReference Include="..\..\Extras\Exceptionless.Extras.csproj">
6666
<Project>{693f3cbf-5bc7-457d-9f31-bdd89c72677e}</Project>
6767
<Name>Exceptionless.Extras</Name>
6868
</ProjectReference>
69-
<ProjectReference Include="..\..\Shared\Exceptionless.csproj">
69+
<ProjectReference Include="..\..\Shared\Exceptionless.Portable.csproj">
7070
<Project>{14dfd206-b445-4d52-9c3c-8b2f69b22b91}</Project>
71-
<Name>Exceptionless</Name>
71+
<Name>Exceptionless.Portable</Name>
7272
</ProjectReference>
7373
</ItemGroup>
7474
<ItemGroup>
75-
<None Include="NuGet\Exceptionless.Console.nuspec" />
75+
<None Include="NuGet\Exceptionless.nuspec" />
7676
<None Include="NuGet\tools\install.ps1" />
7777
<None Include="NuGet\tools\uninstall.ps1" />
7878
</ItemGroup>

Source/Platforms/Console/ExceptionlessConsoleExtensions.cs renamed to Source/Platforms/Console/ExceptionlessExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Exceptionless.Logging;
1313

1414
namespace Exceptionless {
15-
public static class ExceptionlessConsoleExtensions {
15+
public static class ExceptionlessExtensions {
1616
private static EventHandler _onProcessExit;
1717

1818
public static void Register(this ExceptionlessClient client) {
@@ -35,7 +35,7 @@ private static void RegisterOnProcessExitHandler(this ExceptionlessClient client
3535
AppDomain.CurrentDomain.ProcessExit -= _onProcessExit;
3636
AppDomain.CurrentDomain.ProcessExit += _onProcessExit;
3737
} catch (Exception ex) {
38-
client.Configuration.Resolver.GetLog().Error(typeof(ExceptionlessConsoleExtensions), ex, "An error occurred while wiring up to the process exit event.");
38+
client.Configuration.Resolver.GetLog().Error(typeof(ExceptionlessExtensions), ex, "An error occurred while wiring up to the process exit event.");
3939
}
4040
}
4141

Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?xml version="1.0"?>
22
<package>
33
<metadata>
4-
<id>Exceptionless.Console</id>
4+
<id>Exceptionless</id>
55
<version>$version$</version>
66
<authors>Exceptionless</authors>
77
<owners>Exceptionless</owners>
8-
<description>Exceptionless client for Windows console applications. Exceptionless is a cloud based error reporting service that sends your exceptions to http://exceptionless.io and provides aggregated views and analytics.</description>
8+
<description>Exceptionless client for non WPF and WinForms applications. Exceptionless is a cloud based error reporting service that sends your exceptions to http://exceptionless.io and provides aggregated views and analytics.</description>
99
<projectUrl>http://exceptionless.io</projectUrl>
1010
<iconUrl>https://be.exceptionless.io/img/exceptionless-32.png</iconUrl>
1111
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<releaseNotes>http://exceptionless.io/category/versions/</releaseNotes>
1414
<tags>Error Report Reporting Exception Logging Log ELMAH</tags>
1515
<dependencies>
16-
<dependency id="Exceptionless" version="[$version$]" />
16+
<dependency id="Exceptionless.Portable" version="[$version$]" />
1717
</dependencies>
1818
</metadata>
1919
</package>

Source/Platforms/Console/NuGet/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ You can get your Exceptionless api key by logging into http://exceptionless.io
1515
and viewing your project configuration page.
1616

1717
-------------------------------------
18-
Console Integration
18+
Integration
1919
-------------------------------------
20-
If your project has an app.config file, the Exceptionless.Console NuGet package
20+
If your project has an app.config file, the Exceptionless NuGet package
2121
will automatically configure your app.config with the required config sections.
2222
All you need to do is open the app.config and add your Exceptionless api key to
2323
the app.config Exceptionless section.

0 commit comments

Comments
 (0)