Skip to content

Commit 070f8a4

Browse files
committed
Added "MassTransit" integration project.
1 parent a2005e2 commit 070f8a4

File tree

4 files changed

+119
-0
lines changed

4 files changed

+119
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace Mammatus.Messaging.MassTransit
8+
{
9+
public class Class1
10+
{
11+
}
12+
}
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>343adf3c-9d1a-4f84-819d-8195567fb9ab</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Mammatus.Messaging.MassTransit</RootNamespace>
11+
<AssemblyName>Mammatus.Messaging.MassTransit</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="System"/>
34+
35+
<Reference Include="System.Core"/>
36+
<Reference Include="System.Xml.Linq"/>
37+
<Reference Include="System.Data.DataSetExtensions"/>
38+
39+
40+
<Reference Include="Microsoft.CSharp"/>
41+
42+
<Reference Include="System.Data"/>
43+
44+
<Reference Include="System.Net.Http"/>
45+
46+
<Reference Include="System.Xml"/>
47+
</ItemGroup>
48+
<ItemGroup>
49+
<Compile Include="Class1.cs" />
50+
<Compile Include="Properties\AssemblyInfo.cs" />
51+
</ItemGroup>
52+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
53+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
54+
Other similar extension points exist, see Microsoft.Common.targets.
55+
<Target Name="BeforeBuild">
56+
</Target>
57+
<Target Name="AfterBuild">
58+
</Target>
59+
-->
60+
61+
</Project>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Mammatus.Messaging.MassTransit")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("Mammatus.Messaging.MassTransit")]
13+
[assembly: AssemblyCopyright("Copyright © 2016")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("343adf3c-9d1a-4f84-819d-8195567fb9ab")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Mammatus.sln

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "Mammatus.Data.MySQL", "Mamm
155155
EndProject
156156
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "Mammatus.Data.SQLServer", "Mammatus.Data.SQLServer\Mammatus.Data.SQLServer.sqlproj", "{4F0AC064-5649-48FB-845A-458A6A9BC1CF}"
157157
EndProject
158+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Messaging", "Messaging", "{569D1D92-AE8F-47BF-A587-62B0C9A68BFA}"
159+
EndProject
160+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mammatus.Messaging.MassTransit", "Mammatus.Messaging.MassTransit\Mammatus.Messaging.MassTransit.csproj", "{343ADF3C-9D1A-4F84-819D-8195567FB9AB}"
161+
EndProject
158162
Global
159163
GlobalSection(SolutionConfigurationPlatforms) = preSolution
160164
Debug|Any CPU = Debug|Any CPU
@@ -353,6 +357,10 @@ Global
353357
{4F0AC064-5649-48FB-845A-458A6A9BC1CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
354358
{4F0AC064-5649-48FB-845A-458A6A9BC1CF}.Release|Any CPU.Build.0 = Release|Any CPU
355359
{4F0AC064-5649-48FB-845A-458A6A9BC1CF}.Release|Any CPU.Deploy.0 = Release|Any CPU
360+
{343ADF3C-9D1A-4F84-819D-8195567FB9AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
361+
{343ADF3C-9D1A-4F84-819D-8195567FB9AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
362+
{343ADF3C-9D1A-4F84-819D-8195567FB9AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
363+
{343ADF3C-9D1A-4F84-819D-8195567FB9AB}.Release|Any CPU.Build.0 = Release|Any CPU
356364
EndGlobalSection
357365
GlobalSection(SolutionProperties) = preSolution
358366
HideSolutionNode = FALSE
@@ -403,5 +411,7 @@ Global
403411
{76A85C53-9409-4622-9CB3-DB9E883EF88B} = {CDA2F206-7165-4214-80A0-39D946A42B7A}
404412
{B2B052FF-EA4B-41F5-9975-B24F2F5DEAF4} = {CDA2F206-7165-4214-80A0-39D946A42B7A}
405413
{4F0AC064-5649-48FB-845A-458A6A9BC1CF} = {CDA2F206-7165-4214-80A0-39D946A42B7A}
414+
{569D1D92-AE8F-47BF-A587-62B0C9A68BFA} = {DF482BD0-DD5D-489A-A7F3-3AA5840C2BE8}
415+
{343ADF3C-9D1A-4F84-819D-8195567FB9AB} = {569D1D92-AE8F-47BF-A587-62B0C9A68BFA}
406416
EndGlobalSection
407417
EndGlobal

0 commit comments

Comments
 (0)