Skip to content

Commit 0e356bf

Browse files
committed
Added Msmq Implementation
1 parent 0737a82 commit 0e356bf

38 files changed

+3225
-1
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" 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>{D2F8573F-B334-43E6-99CF-CA1E04801827}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Grumpy.MessageQueue.Msmq.IntegrationTests</RootNamespace>
11+
<AssemblyName>Grumpy.MessageQueue.Msmq.IntegrationTests</AssemblyName>
12+
<TargetFrameworkVersion>v4.5.1</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+
<Reference Include="System.Core" />
35+
<Reference Include="System.Messaging" />
36+
</ItemGroup>
37+
<ItemGroup>
38+
<Compile Include="Helper\MyDto.cs" />
39+
<Compile Include="LocaleQueueTests.cs" />
40+
<Compile Include="MessageQueueFactoryTests.cs" />
41+
<Compile Include="MessageQueueManagerPublicTests.cs" />
42+
<Compile Include="MessageQueueManagerTests.cs" />
43+
<Compile Include="Properties\AssemblyInfo.cs" />
44+
<Compile Include="RemoteQueueTests.cs" />
45+
</ItemGroup>
46+
<ItemGroup>
47+
<PackageReference Include="Grumpy.TestTools">
48+
<Version>1.1.0</Version>
49+
</PackageReference>
50+
</ItemGroup>
51+
<ItemGroup>
52+
<ProjectReference Include="..\Grumpy.MessageQueue.Msmq\Grumpy.MessageQueue.Msmq.csproj">
53+
<Project>{df8e5544-3235-4307-8ff5-ec2cac7a9414}</Project>
54+
<Name>Grumpy.MessageQueue.Msmq</Name>
55+
</ProjectReference>
56+
</ItemGroup>
57+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
58+
</Project>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace Grumpy.MessageQueue.Msmq.IntegrationTests.Helper
2+
{
3+
public class MyDto
4+
{
5+
public string S { get; set; }
6+
public int I { get; set; }
7+
}
8+
}

0 commit comments

Comments
 (0)