Skip to content

Commit

Permalink
Upgraded sln to VS2010 for CQRS-ES and ModelLayers
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonPobiega committed Sep 14, 2011
1 parent 78c8b65 commit 57247f1
Show file tree
Hide file tree
Showing 38 changed files with 1,727 additions and 2,187 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<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>
Expand All @@ -12,10 +12,33 @@
<AssemblyName>DDDSample.CommandHandlers</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -25,6 +48,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -33,6 +57,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="NServiceBus, Version=2.1.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
Expand Down Expand Up @@ -69,6 +94,23 @@
<Name>Domain %28Domain\Domain%29</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</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
52 changes: 47 additions & 5 deletions DDDSample-CQRS-EventSourcing/Commands/Commands.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<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>
Expand All @@ -12,10 +12,33 @@
<AssemblyName>DDDSample.Commands</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -25,6 +48,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -33,6 +57,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="NServiceBus, Version=2.1.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
Expand Down Expand Up @@ -69,6 +94,23 @@
<Name>Domain %28Domain\Domain%29</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</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
102 changes: 22 additions & 80 deletions DDDSample-CQRS-EventSourcing/DDDSample.sln
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain.Persistence.NHibernate", "Domain.Persistence.NHibernate\Domain.Persistence.NHibernate.csproj", "{9648B89B-C748-447C-86A1-D125F7053967}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain", "Domain\Domain.csproj", "{FCF5B41B-70F3-42FB-8352-C37584105289}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.Domain", "Tests.Domain\Tests.Domain.csproj", "{94C4D2EB-16A6-40E8-8589-9DEFDEC3DB01}"
EndProject
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C9377EB9-1321-4E3C-9974-71242D75072D}"
ProjectSection(SolutionItems) = preProject
DDDSample.proj = DDDSample.proj
Expand All @@ -16,8 +10,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{34B41F94-5227-4533-B102-75A87FF61AE3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UI.BookingAndTracking", "UI.BookingAndTracking\UI.BookingAndTracking.csproj", "{7F3F2E90-62A8-4592-BCF3-9C46E19F2FA9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Libs", "Libs", "{5592DB69-FE64-492B-8C5D-0C0CE7263495}"
ProjectSection(SolutionItems) = preProject
Libs\log4net.dll = Libs\log4net.dll
Expand Down Expand Up @@ -49,6 +41,20 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NServiceBus", "NServiceBus"
Libs\NServiceBus\NServiceBus.ObjectBuilder.Unity.dll = Libs\NServiceBus\NServiceBus.ObjectBuilder.Unity.dll
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Domain", "Domain", "{5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Reporting", "Reporting", "{E7091029-5BE4-4361-97C1-EB1DD4A7F394}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Infrastructure", "Infrastructure", "{BEC03AB3-0C4D-4FC9-A640-D23C5C3E7E00}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain.Persistence.NHibernate", "Domain.Persistence.NHibernate\Domain.Persistence.NHibernate.csproj", "{9648B89B-C748-447C-86A1-D125F7053967}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain", "Domain\Domain.csproj", "{FCF5B41B-70F3-42FB-8352-C37584105289}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.Domain", "Tests.Domain\Tests.Domain.csproj", "{94C4D2EB-16A6-40E8-8589-9DEFDEC3DB01}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UI.BookingAndTracking", "UI.BookingAndTracking\UI.BookingAndTracking.csproj", "{7F3F2E90-62A8-4592-BCF3-9C46E19F2FA9}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{55AD7CF0-FC44-418A-AA8F-C1F8855366BE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pathfinder", "Pathfinder\Pathfinder.csproj", "{02B53338-D16B-4051-BA94-503488406CD1}"
Expand All @@ -65,75 +71,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain.EventHandlers", "Dom
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Reporting.MessageHandlers", "Reporting.MessageHandlers\Reporting.MessageHandlers.csproj", "{905DD567-8314-4E57-A6BC-91CAD38CD7F9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Domain", "Domain", "{5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Reporting", "Reporting", "{E7091029-5BE4-4361-97C1-EB1DD4A7F394}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Infrastructure", "Infrastructure", "{BEC03AB3-0C4D-4FC9-A640-D23C5C3E7E00}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands", "Commands\Commands.csproj", "{61CC7A31-38A6-4890-A98A-67CBFF243254}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandHandlers", "CommandHandlers\CommandHandlers.csproj", "{5F9AEE86-62BB-45D5-B452-90ECADB8BA4B}"
EndProject
Global
GlobalSection(TeamFoundationVersionControl) = preSolution
SccNumberOfProjects = 15
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
SccTeamFoundationServer = https://tfs07.codeplex.com/
SccLocalPath0 = .
SccProjectUniqueName1 = Domain.Persistence.NHibernate\\Domain.Persistence.NHibernate.csproj
SccProjectTopLevelParentUniqueName1 = DDDSample.sln
SccProjectName1 = Domain.Persistence.NHibernate
SccLocalPath1 = Domain.Persistence.NHibernate
SccProjectUniqueName2 = Domain\\Domain.csproj
SccProjectTopLevelParentUniqueName2 = DDDSample.sln
SccProjectName2 = Domain
SccLocalPath2 = Domain
SccProjectUniqueName3 = Tests.Domain\\Tests.Domain.csproj
SccProjectTopLevelParentUniqueName3 = DDDSample.sln
SccProjectName3 = Tests.Domain
SccLocalPath3 = Tests.Domain
SccProjectUniqueName4 = UI.BookingAndTracking\\UI.BookingAndTracking.csproj
SccProjectName4 = UI.BookingAndTracking
SccLocalPath4 = UI.BookingAndTracking
SccProjectUniqueName5 = Setup\\Setup.vdproj
SccProjectName5 = Setup
SccLocalPath5 = Setup
SccProjectUniqueName6 = Pathfinder\\Pathfinder.csproj
SccProjectTopLevelParentUniqueName6 = DDDSample.sln
SccProjectName6 = Pathfinder
SccLocalPath6 = Pathfinder
SccProjectUniqueName7 = Tests.Integration\\Tests.Integration.csproj
SccProjectTopLevelParentUniqueName7 = DDDSample.sln
SccProjectName7 = Tests.Integration
SccLocalPath7 = Tests.Integration
SccProjectUniqueName8 = Domain.Reporting.Persistence.NHibernate\\Reporting.Persistence.NHibernate.csproj
SccProjectTopLevelParentUniqueName8 = DDDSample.sln
SccProjectName8 = Domain.Reporting.Persistence.NHibernate
SccLocalPath8 = Domain.Reporting.Persistence.NHibernate
SccProjectUniqueName9 = Reporting.MessageHandlers\\Reporting.MessageHandlers.csproj
SccProjectTopLevelParentUniqueName9 = DDDSample.sln
SccProjectName9 = Reporting.MessageHandlers
SccLocalPath9 = Reporting.MessageHandlers
SccProjectUniqueName10 = Domain.Reporting\\Reporting.csproj
SccProjectTopLevelParentUniqueName10 = DDDSample.sln
SccProjectName10 = Domain.Reporting
SccLocalPath10 = Domain.Reporting
SccProjectUniqueName11 = Messages\\Messages.csproj
SccProjectTopLevelParentUniqueName11 = DDDSample.sln
SccProjectName11 = Messages
SccLocalPath11 = Messages
SccProjectUniqueName12 = Domain.EventHandlers\\Domain.EventHandlers.csproj
SccProjectTopLevelParentUniqueName12 = DDDSample.sln
SccProjectName12 = Domain.EventHandlers
SccLocalPath12 = Domain.EventHandlers
SccProjectUniqueName13 = Commands\\Commands.csproj
SccProjectName13 = Commands
SccLocalPath13 = Commands
SccProjectUniqueName14 = CommandHandlers\\CommandHandlers.csproj
SccProjectName14 = CommandHandlers
SccLocalPath14 = CommandHandlers
EndGlobalSection
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = DDDSample.vsmdi
EndGlobalSection
Expand Down Expand Up @@ -201,17 +143,17 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{FCF5B41B-70F3-42FB-8352-C37584105289} = {5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}
{96933641-7218-4216-93D2-FC11708FF0A2} = {5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}
{9648B89B-C748-447C-86A1-D125F7053967} = {5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}
{94C4D2EB-16A6-40E8-8589-9DEFDEC3DB01} = {34B41F94-5227-4533-B102-75A87FF61AE3}
{EB1EA7DE-711C-4477-89E6-296B6D760D3E} = {34B41F94-5227-4533-B102-75A87FF61AE3}
{E73BA32A-A565-4D2C-BB59-F8D7DEB80584} = {5592DB69-FE64-492B-8C5D-0C0CE7263495}
{797E78FB-2CA6-427B-9EAC-9392B67CACCC} = {5592DB69-FE64-492B-8C5D-0C0CE7263495}
{4E647270-93DB-49CF-BA64-1ED67A1AC0AC} = {BEC03AB3-0C4D-4FC9-A640-D23C5C3E7E00}
{02B53338-D16B-4051-BA94-503488406CD1} = {BEC03AB3-0C4D-4FC9-A640-D23C5C3E7E00}
{9648B89B-C748-447C-86A1-D125F7053967} = {5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}
{FCF5B41B-70F3-42FB-8352-C37584105289} = {5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}
{96933641-7218-4216-93D2-FC11708FF0A2} = {5C27C145-AA81-4BB4-A0E9-4047C5BAAD92}
{05CCDBD3-F4FA-451C-9DDA-27E31AD409E8} = {E7091029-5BE4-4361-97C1-EB1DD4A7F394}
{5C437BB6-C153-4EE1-9030-F0B52CD926DC} = {E7091029-5BE4-4361-97C1-EB1DD4A7F394}
{905DD567-8314-4E57-A6BC-91CAD38CD7F9} = {E7091029-5BE4-4361-97C1-EB1DD4A7F394}
{05CCDBD3-F4FA-451C-9DDA-27E31AD409E8} = {E7091029-5BE4-4361-97C1-EB1DD4A7F394}
{02B53338-D16B-4051-BA94-503488406CD1} = {BEC03AB3-0C4D-4FC9-A640-D23C5C3E7E00}
{4E647270-93DB-49CF-BA64-1ED67A1AC0AC} = {BEC03AB3-0C4D-4FC9-A640-D23C5C3E7E00}
EndGlobalSection
EndGlobal
4 changes: 2 additions & 2 deletions DDDSample-CQRS-EventSourcing/DDDSample.vsmdi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<TestLists xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2006">
<?xml version="1.0" encoding="utf-8"?>
<TestLists xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<TestList name="Lists of Tests" id="8c43106b-9dc1-4907-a29f-aa66a61bf5b6">
<RunConfiguration id="d1a5b1b9-df50-49a6-adc1-d898d45b2c61" name="Local Test Run" storage="localtestrun.testrunconfig" type="Microsoft.VisualStudio.TestTools.Common.TestRunConfiguration, Microsoft.VisualStudio.QualityTools.Common, PublicKeyToken=b03f5f7f11d50a3a" />
</TestList>
Expand Down
Loading

0 comments on commit 57247f1

Please sign in to comment.