Skip to content

Commit

Permalink
project files
Browse files Browse the repository at this point in the history
  • Loading branch information
videlalvaro committed Apr 2, 2011
1 parent 4e492b0 commit 11dff18
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
RabbitMQUtils/bin
RabbitMQUtils/obj
rmq_msmq/bin
rmq_msmq/obj
42 changes: 42 additions & 0 deletions rmq_msmq.sln
@@ -0,0 +1,42 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "rmq_msmq", "rmq_msmq\rmq_msmq.fsproj", "{233E99DD-302F-409B-8687-16D8A533885C}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "RabbitMQ.Bridge", "RabbitMQUtils\RabbitMQ.Bridge.fsproj", "{802F2E56-222B-4FD0-9F41-035C31D83234}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{233E99DD-302F-409B-8687-16D8A533885C}.Debug|Any CPU.ActiveCfg = Debug|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Debug|Mixed Platforms.Build.0 = Debug|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Debug|x86.ActiveCfg = Debug|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Debug|x86.Build.0 = Debug|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Release|Any CPU.ActiveCfg = Release|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Release|Mixed Platforms.ActiveCfg = Release|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Release|Mixed Platforms.Build.0 = Release|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Release|x86.ActiveCfg = Release|x86
{233E99DD-302F-409B-8687-16D8A533885C}.Release|x86.Build.0 = Release|x86
{802F2E56-222B-4FD0-9F41-035C31D83234}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Debug|Any CPU.Build.0 = Debug|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Debug|x86.ActiveCfg = Debug|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Release|Any CPU.ActiveCfg = Release|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Release|Any CPU.Build.0 = Release|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{802F2E56-222B-4FD0-9F41-035C31D83234}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added rmq_msmq.suo
Binary file not shown.
14 changes: 14 additions & 0 deletions rmq_msmq/Program.fs
@@ -0,0 +1,14 @@
module Program

open System.Messaging
open RabbitMQ.Client

open MSMQ.Util
open RabbitMQ.Helper
open RabbitMQ.Bridge

Bridge.msmq2rmq ("guest", "guest", "/", "localhost",
AmqpTcpEndpoint.UseDefaultPort,
Protocols.SafeLookup("AMQP_0_9"))
("", "ms-test", null)
@".\private$\MyTestingQueues"
67 changes: 67 additions & 0 deletions rmq_msmq/rmq_msmq.fsproj
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{233e99dd-302f-409b-8687-16d8a533885c}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>rmq_msmq</RootNamespace>
<AssemblyName>rmq_msmq</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<Name>rmq_msmq</Name>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<Tailcalls>false</Tailcalls>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<DocumentationFile>bin\Debug\rmq_msmq.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<DocumentationFile>bin\Release\rmq_msmq.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core" />
<Reference Include="RabbitMQ.Client">
<HintPath>C:\Program Files\RabbitMQ\DotNetClient\bin\RabbitMQ.Client.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Messaging" />
<Reference Include="System.Numerics" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RabbitMQUtils\RabbitMQ.Bridge.fsproj">
<Name>RabbitMQ.Bridge</Name>
<Project>{802f2e56-222b-4fd0-9f41-035c31d83234}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<!-- 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>

0 comments on commit 11dff18

Please sign in to comment.