Skip to content

Commit

Permalink
Merge pull request #186 from MindscapeHQ/package-separation
Browse files Browse the repository at this point in the history
Package separation
  • Loading branch information
QuantumNightmare committed Oct 27, 2014
2 parents bf18e53 + 8270016 commit d2f4f4c
Show file tree
Hide file tree
Showing 194 changed files with 3,277 additions and 3,618 deletions.
4 changes: 2 additions & 2 deletions AssemblyVersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.3.3.0")]
[assembly: AssemblyFileVersion("3.3.3.0")]
[assembly: AssemblyVersion("4.0.0.0")]
[assembly: AssemblyFileVersion("4.0.0.0")]
19 changes: 19 additions & 0 deletions Mindscape.Raygun4Net.Core.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="2.5">
<id>Mindscape.Raygun4Net.Core</id>
<version>4.0.0</version>
<title />
<authors>Mindscape</authors>
<owners />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Core library for MVC and WebApi Raygun providers</description>
<iconUrl>https://app.raygun.io/Content/Images/nuget-icon.png</iconUrl>
<projectUrl>https://github.com/MindscapeHQ/raygun4net</projectUrl>
<licenseUrl>https://raw.github.com/MindscapeHQ/raygun4net/master/LICENSE</licenseUrl>
</metadata>
<files>
<file src="build\Mvc\Mindscape.Raygun4Net.dll" target="lib\net40\Mindscape.Raygun4Net.dll" />
<file src="build\Mvc\Mindscape.Raygun4Net.pdb" target="lib\net40\Mindscape.Raygun4Net.pdb" />
</files>
</package>
114 changes: 114 additions & 0 deletions Mindscape.Raygun4Net.Core/Mindscape.Raygun4Net.Core.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{6435C84C-1DAC-41FE-AA51-FAA8E9A7F090}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Mindscape.Raygun4Net</RootNamespace>
<AssemblyName>Mindscape.Raygun4Net</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\AssemblyVersionInfo.cs">
<Link>Properties\AssemblyVersionInfo.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net4\Messages\RaygunErrorMessage.cs">
<Link>Messages\RaygunErrorMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Builders\RaygunEnvironmentMessageBuilder.cs">
<Link>Builders\RaygunEnvironmentMessageBuilder.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Builders\RaygunErrorMessageBuilder.cs">
<Link>Builders\RaygunErrorMessageBuilder.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Builders\RaygunErrorMessageBuilderBase.cs">
<Link>Builders\RaygunErrorMessageBuilderBase.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\IRaygunMessageBuilder.cs">
<Link>IRaygunMessageBuilder.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunClientMessage.cs">
<Link>Messages\RaygunClientMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunEnvironmentMessage.cs">
<Link>Messages\RaygunEnvironmentMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunErrorStackTraceLineMessage.cs">
<Link>Messages\RaygunErrorStackTraceLineMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunIdentifierMessage.cs">
<Link>Messages\RaygunIdentifierMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunMessage.cs">
<Link>Messages\RaygunMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunMessageDetails.cs">
<Link>Messages\RaygunMessageDetails.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunRequestMessage.cs">
<Link>Messages\RaygunRequestMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\Messages\RaygunResponseMessage.cs">
<Link>Messages\RaygunResponseMessage.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\RaygunClientBase.cs">
<Link>RaygunClientBase.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\RaygunRequestMessageOptions.cs">
<Link>RaygunRequestMessageOptions.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\RaygunSendingMessageEventArgs.cs">
<Link>RaygunSendingMessageEventArgs.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\RaygunSettings.cs">
<Link>RaygunSettings.cs</Link>
</Compile>
<Compile Include="..\Mindscape.Raygun4Net\SimpleJson.cs">
<Link>SimpleJson.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
23 changes: 23 additions & 0 deletions Mindscape.Raygun4Net.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Mindscape.Raygun4Net.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Mindscape Raygun4Net")]
[assembly: AssemblyCopyright("Copyright © Mindscape 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("43c33dca-1397-4d4c-9539-8eff69bfd798")]
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,6 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Sign|AnyCPU'">
<OutputPath>bin\Sign\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Private>True</Private>
Expand Down Expand Up @@ -93,7 +84,11 @@
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Mindscape.Raygun4Net4\Mindscape.Raygun4Net4.csproj">
<ProjectReference Include="..\Mindscape.Raygun4Net.Core\Mindscape.Raygun4Net.Core.csproj">
<Project>{6435c84c-1dac-41fe-aa51-faa8e9a7f090}</Project>
<Name>Mindscape.Raygun4Net.Core</Name>
</ProjectReference>
<ProjectReference Include="..\Mindscape.Raygun4Net.Mvc\Mindscape.Raygun4Net.Mvc.csproj">
<Project>{2cf1fe1f-ad2d-40bd-9f99-57ff00445a9d}</Project>
<Name>Mindscape.Raygun4Net4</Name>
</ProjectReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Web.Mvc;

namespace Mindscape.Raygun4Net4.Tests
namespace Mindscape.Raygun4Net.Mvc.Tests
{
public class FakeFilterAttribute : FilterAttribute, IExceptionFilter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Web;
using Mindscape.Raygun4Net;

namespace Mindscape.Raygun4Net4.Tests
namespace Mindscape.Raygun4Net.Mvc.Tests
{
public class FakeHttpApplication : HttpApplication, IRaygunApplication
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Web;
using Mindscape.Raygun4Net;

namespace Mindscape.Raygun4Net4.Tests
namespace Mindscape.Raygun4Net.Mvc.Tests
{
public class FakeRaygunHttpModule : RaygunHttpModule
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Mindscape.Raygun4Net4.Tests")]
[assembly: AssemblyTitle("Mindscape.Raygun4Net.Mvc.Tests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Mindscape.Raygun4Net4.Tests")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyProduct("Mindscape.Raygun4Net.Mvc.Tests")]
[assembly: AssemblyCopyright("Copyright © Mindscape 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Mindscape.Raygun4Net;
using NUnit.Framework;

namespace Mindscape.Raygun4Net4.Tests
namespace Mindscape.Raygun4Net.Mvc.Tests
{
[TestFixture]
public class RaygunHttpModuleTests
Expand Down
File renamed without changes.
23 changes: 23 additions & 0 deletions Mindscape.Raygun4Net.Mvc.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="2.5">
<id>Mindscape.Raygun4Net.Mvc</id>
<version>4.0.0</version>
<title />
<authors>Mindscape</authors>
<owners />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Raygun.io Provider for ASP.NET MVC projects</description>
<iconUrl>https://app.raygun.io/Content/Images/nuget-icon.png</iconUrl>
<projectUrl>https://github.com/MindscapeHQ/raygun4net</projectUrl>
<licenseUrl>https://raw.github.com/MindscapeHQ/raygun4net/master/LICENSE</licenseUrl>
<dependencies>
<dependency id="Mindscape.Raygun4Net.Core" version="4.0.0" />
</dependencies>
</metadata>
<files>
<file src="build\Mvc\Mindscape.Raygun4Net.Mvc.dll" target="lib\net40\Mindscape.Raygun4Net.Mvc.dll" />
<file src="build\Mvc\Mindscape.Raygun4Net.Mvc.pdb" target="lib\net40\Mindscape.Raygun4Net.Mvc.pdb" />
<file src="Mindscape.Raygun4Net.Mvc\readme.txt" />
</files>
</package>
32 changes: 32 additions & 0 deletions Mindscape.Raygun4Net.Mvc.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mindscape.Raygun4Net.Mvc", "Mindscape.Raygun4Net.Mvc\Mindscape.Raygun4Net.Mvc.csproj", "{2CF1FE1F-AD2D-40BD-9F99-57FF00445A9D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mindscape.Raygun4Net.Mvc.Tests", "Mindscape.Raygun4Net.Mvc.Tests\Mindscape.Raygun4Net.Mvc.Tests.csproj", "{69BFF5D8-7B18-4685-B828-8DF2AADEA20D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mindscape.Raygun4Net.Core", "Mindscape.Raygun4Net.Core\Mindscape.Raygun4Net.Core.csproj", "{6435C84C-1DAC-41FE-AA51-FAA8E9A7F090}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2CF1FE1F-AD2D-40BD-9F99-57FF00445A9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2CF1FE1F-AD2D-40BD-9F99-57FF00445A9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2CF1FE1F-AD2D-40BD-9F99-57FF00445A9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2CF1FE1F-AD2D-40BD-9F99-57FF00445A9D}.Release|Any CPU.Build.0 = Release|Any CPU
{69BFF5D8-7B18-4685-B828-8DF2AADEA20D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{69BFF5D8-7B18-4685-B828-8DF2AADEA20D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{69BFF5D8-7B18-4685-B828-8DF2AADEA20D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{69BFF5D8-7B18-4685-B828-8DF2AADEA20D}.Release|Any CPU.Build.0 = Release|Any CPU
{6435C84C-1DAC-41FE-AA51-FAA8E9A7F090}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6435C84C-1DAC-41FE-AA51-FAA8E9A7F090}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6435C84C-1DAC-41FE-AA51-FAA8E9A7F090}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6435C84C-1DAC-41FE-AA51-FAA8E9A7F090}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Loading

0 comments on commit d2f4f4c

Please sign in to comment.