Skip to content

Commit

Permalink
added deps
Browse files Browse the repository at this point in the history
  • Loading branch information
haf committed Feb 17, 2012
1 parent b47961e commit ea8c8b3
Show file tree
Hide file tree
Showing 62 changed files with 1,291 additions and 12 deletions.
53 changes: 53 additions & 0 deletions src/Documently.Messages/Documently.Messages.csproj
@@ -0,0 +1,53 @@
<?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)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{EEE89C0C-F925-4320-9E50-B252633CF941}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Documently.Messages</RootNamespace>
<AssemblyName>Documently.Messages</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="System" />
<Reference Include="System.Core" />
<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="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>
36 changes: 36 additions & 0 deletions src/Documently.Messages/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
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("Documently.Messages")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Documently.Messages")]
[assembly: AssemblyCopyright("Copyright © 2012")]
[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("8e2311fe-78fb-4629-8530-5fe2c72619a0")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// 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("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
32 changes: 31 additions & 1 deletion src/Documently.Sagas.Specs/Documently.Sagas.Specs.csproj
Expand Up @@ -31,6 +31,27 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Automatonymous">
<HintPath>..\packages\Automatonymous.0.3.1.0\lib\net40\Automatonymous.dll</HintPath>
</Reference>
<Reference Include="Automatonymous.MassTransitIntegration">
<HintPath>..\packages\Automatonymous.MassTransit.0.3.1.0\lib\net40\Automatonymous.MassTransitIntegration.dll</HintPath>
</Reference>
<Reference Include="log4net">
<HintPath>..\packages\log4net.1.2.10\lib\2.0\log4net.dll</HintPath>
</Reference>
<Reference Include="Machine.Specifications">
<HintPath>..\packages\Machine.Specifications.0.5.3.0\lib\Machine.Specifications.dll</HintPath>
</Reference>
<Reference Include="Magnum">
<HintPath>..\packages\Magnum.2.0.0.4\lib\NET40\Magnum.dll</HintPath>
</Reference>
<Reference Include="MassTransit">
<HintPath>..\packages\MassTransit.2.0.1.2\lib\net40\MassTransit.dll</HintPath>
</Reference>
<Reference Include="MassTransit.Transports.MSMQ">
<HintPath>..\packages\MassTransit.2.0.1.2\lib\net40\MassTransit.Transports.MSMQ.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
Expand All @@ -40,9 +61,18 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Class1.cs" />
<Compile Include="Indexing_saga_spec.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Documently.Sagas\Documently.Sagas.csproj">
<Project>{7E4AD334-FE9C-459E-8EE5-942EA71665B9}</Project>
<Name>Documently.Sagas</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</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.
Expand Down
33 changes: 33 additions & 0 deletions src/Documently.Sagas.Specs/Indexing_saga_spec.cs
@@ -0,0 +1,33 @@
#pragma warning disable 169
// ReSharper disable InconsistentNaming

namespace Documently.Sagas.Specs
{
using System;
using Machine.Specifications;
using It = Machine.Specifications.It;

// machine specifications howto:
// https://github.com/machine/machine.specifications
// sample: https://github.com/joliver/EventStore/blob/master/src/tests/EventStore.Core.UnitTests/OptimisticEventStreamTests.cs

[Subject(typeof (IndexerOrchestrationSaga))]
public class Indexing_saga_spec_spec
{
private IndexerOrchestrationSaga subject;

private Establish context = () =>
{
};

private Because of = () =>
{
};

// It should_have_5_in_its_name = () => subject. ...() assertions

}
}

// ReSharper enable InconsistentNaming
#pragma warning restore 169
9 changes: 9 additions & 0 deletions src/Documently.Sagas.Specs/packages.config
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Automatonymous" version="0.3.1.0" />
<package id="Automatonymous.MassTransit" version="0.3.1.0" />
<package id="log4net" version="1.2.10" />
<package id="Machine.Specifications" version="0.5.3.0" />
<package id="Magnum" version="2.0.0.4" />
<package id="MassTransit" version="2.0.1.2" />
</packages>
23 changes: 22 additions & 1 deletion src/Documently.Sagas/Documently.Sagas.csproj
Expand Up @@ -31,6 +31,24 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Automatonymous">
<HintPath>..\packages\Automatonymous.0.3.1.0\lib\net40\Automatonymous.dll</HintPath>
</Reference>
<Reference Include="Automatonymous.MassTransitIntegration">
<HintPath>..\packages\Automatonymous.MassTransit.0.3.1.0\lib\net40\Automatonymous.MassTransitIntegration.dll</HintPath>
</Reference>
<Reference Include="log4net">
<HintPath>..\packages\log4net.1.2.10\lib\2.0\log4net.dll</HintPath>
</Reference>
<Reference Include="Magnum">
<HintPath>..\packages\Magnum.2.0.0.4\lib\NET40\Magnum.dll</HintPath>
</Reference>
<Reference Include="MassTransit">
<HintPath>..\packages\MassTransit.2.0.1.2\lib\net40\MassTransit.dll</HintPath>
</Reference>
<Reference Include="MassTransit.Transports.MSMQ">
<HintPath>..\packages\MassTransit.2.0.1.2\lib\net40\MassTransit.Transports.MSMQ.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
Expand All @@ -40,9 +58,12 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Class1.cs" />
<Compile Include="IndexerOrchestrationSaga.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</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.
Expand Down
35 changes: 35 additions & 0 deletions src/Documently.Sagas/IndexerOrchestrationSaga.cs
@@ -0,0 +1,35 @@
// Copyright 2012 Henrik Feldt
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.

using Automatonymous;

namespace Documently.Sagas
{
public class Instance
: StateMachineInstance
{
public State CurrentState { get; set; }
}

public class IndexerOrchestrationSaga
: AutomatonymousStateMachine<Instance>
{
public IndexerOrchestrationSaga()
{
}

public State Running { get; private set; }

//public Event<IndexingStarted> ;
}
}
8 changes: 8 additions & 0 deletions src/Documently.Sagas/packages.config
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Automatonymous" version="0.3.1.0" />
<package id="Automatonymous.MassTransit" version="0.3.1.0" />
<package id="log4net" version="1.2.10" />
<package id="Magnum" version="2.0.0.4" />
<package id="MassTransit" version="2.0.1.2" />
</packages>
58 changes: 48 additions & 10 deletions src/Documently.sln
Expand Up @@ -26,6 +26,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documently.Domain.Service",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documently.SampleEventListener", "Documently.SampleEventListener\Documently.SampleEventListener.csproj", "{4730D2CF-EDCD-49AD-A080-8B0C6B13DF65}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documently.Sagas.Service", "Documently.Sagas.Service\Documently.Sagas.Service.csproj", "{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documently.Sagas", "Documently.Sagas\Documently.Sagas.csproj", "{7E4AD334-FE9C-459E-8EE5-942EA71665B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documently.Sagas.Specs", "Documently.Sagas.Specs\Documently.Sagas.Specs.csproj", "{51A20826-44F9-45F0-93FE-9B811D445069}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documently.Messages", "Documently.Messages\Documently.Messages.csproj", "{EEE89C0C-F925-4320-9E50-B252633CF941}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -112,16 +120,6 @@ Global
{22374340-0C08-4F74-86B7-6C229BE1E550}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{22374340-0C08-4F74-86B7-6C229BE1E550}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{22374340-0C08-4F74-86B7-6C229BE1E550}.Release|x86.ActiveCfg = Release|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Debug|Any CPU.Build.0 = Debug|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Debug|x86.ActiveCfg = Debug|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Release|Any CPU.ActiveCfg = Release|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Release|Any CPU.Build.0 = Release|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{16D63804-64C8-4B36-A10B-E894C320B793}.Release|x86.ActiveCfg = Release|Any CPU
{20C3A690-6C1C-4FE5-8DCF-29E5EFAA1A13}.Debug|Any CPU.ActiveCfg = Debug|x86
{20C3A690-6C1C-4FE5-8DCF-29E5EFAA1A13}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{20C3A690-6C1C-4FE5-8DCF-29E5EFAA1A13}.Debug|Mixed Platforms.Build.0 = Debug|x86
Expand All @@ -142,6 +140,46 @@ Global
{4730D2CF-EDCD-49AD-A080-8B0C6B13DF65}.Release|Mixed Platforms.Build.0 = Release|x86
{4730D2CF-EDCD-49AD-A080-8B0C6B13DF65}.Release|x86.ActiveCfg = Release|x86
{4730D2CF-EDCD-49AD-A080-8B0C6B13DF65}.Release|x86.Build.0 = Release|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Debug|Any CPU.ActiveCfg = Debug|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Debug|Mixed Platforms.Build.0 = Debug|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Debug|x86.ActiveCfg = Debug|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Debug|x86.Build.0 = Debug|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Release|Any CPU.ActiveCfg = Release|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Release|Mixed Platforms.ActiveCfg = Release|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Release|Mixed Platforms.Build.0 = Release|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Release|x86.ActiveCfg = Release|x86
{C1CC1C2D-E018-47C1-AAE1-443E08AFC919}.Release|x86.Build.0 = Release|x86
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Debug|x86.ActiveCfg = Debug|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Release|Any CPU.Build.0 = Release|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{7E4AD334-FE9C-459E-8EE5-942EA71665B9}.Release|x86.ActiveCfg = Release|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Debug|Any CPU.Build.0 = Debug|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Debug|x86.ActiveCfg = Debug|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Release|Any CPU.ActiveCfg = Release|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Release|Any CPU.Build.0 = Release|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{51A20826-44F9-45F0-93FE-9B811D445069}.Release|x86.ActiveCfg = Release|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Debug|x86.ActiveCfg = Debug|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Release|Any CPU.Build.0 = Release|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{EEE89C0C-F925-4320-9E50-B252633CF941}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 2 additions & 0 deletions src/Documently.sln.DotSettings.user
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Highlighting/AnalysisEnabled/@EntryValue">SOLUTION</s:String></wpf:ResourceDictionary>
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit ea8c8b3

Please sign in to comment.