pjvds / ncqrs

Ncqrs Framework - The CQRS Framework for .NET
Other
539 stars 164 forks source link

Solution in development branch incorrect for "Any CPU" configuration #26

Closed bradtwurst closed 13 years ago

bradtwurst commented 13 years ago

The ncqrs framework solution is incorrect for the "Any CPU" configuration.

Currently, the project Ncqrs.EventBus.IntegrationTest will not be built in this configuration.

Here is the patch for the solution file to correct the issues

480c480,481
<       {DC0FB020-79D9-497E-8869-9508FCFA6537}.Debug|Any CPU.ActiveCfg = Debug|x86

---
>       {DC0FB020-79D9-497E-8869-9508FCFA6537}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
>       {DC0FB020-79D9-497E-8869-9508FCFA6537}.Debug|Any CPU.Build.0 = Debug|Any CPU
485c486,487
<       {DC0FB020-79D9-497E-8869-9508FCFA6537}.Release|Any CPU.ActiveCfg = Release|x86

---
>       {DC0FB020-79D9-497E-8869-9508FCFA6537}.Release|Any CPU.ActiveCfg = Release|Any CPU
>       {DC0FB020-79D9-497E-8869-9508FCFA6537}.Release|Any CPU.Build.0 = Release|Any CPU

here is the patch for the Ncqrs.EventBus.IntegrationTest.csproj project file

36a37,44
>   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
>     <PlatformTarget>AnyCPU</PlatformTarget>
>     <OutputPath>bin\Debug\</OutputPath>
>   </PropertyGroup>
>   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
>     <PlatformTarget>AnyCPU</PlatformTarget>
>     <OutputPath>bin\Release\</OutputPath>
>   </PropertyGroup>
SzymonPobiega commented 13 years ago

Fixed NUnit references and build order in Master solution closed by 99e8f40cf183604d75b24c8b8bce78c391afbf87