PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/Bifrost.Fakes/Bifrost.Fakes.csproj

#
MSBuild | 115 lines | 115 code | 0 blank | 0 comment | 0 complexity | fb3df274e961ec82aba7a1516fcabb70 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{47835DE6-FA79-4888-83B6-F6891891CBB0}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Bifrost.Fakes</RootNamespace>
  12. <AssemblyName>Bifrost.Fakes</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\Solutions\</SolutionDir>
  16. <RestorePackages>true</RestorePackages>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'CoreDev|AnyCPU'">
  36. <DebugSymbols>true</DebugSymbols>
  37. <OutputPath>bin\CoreDev\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <DebugType>full</DebugType>
  40. <PlatformTarget>AnyCPU</PlatformTarget>
  41. <CodeAnalysisLogFile>bin\Debug\Bifrost.Fakes.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
  42. <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
  43. <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
  47. <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="FluentValidation">
  51. <HintPath>..\Solutions\packages\FluentValidation.3.2.0.0\lib\Net40\FluentValidation.dll</HintPath>
  52. </Reference>
  53. <Reference Include="System" />
  54. <Reference Include="System.ComponentModel.DataAnnotations" />
  55. <Reference Include="System.Core" />
  56. <Reference Include="System.Xml.Linq" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="..\Common\AssemblyInfo.cs">
  62. <Link>AssemblyInfo.cs</Link>
  63. </Compile>
  64. <Compile Include="Commands\AnotherSimpleCommand.cs" />
  65. <Compile Include="Commands\AnotherSimpleCommandBusinessValidator.cs" />
  66. <Compile Include="Commands\AnotherSimpleCommandInputValidator.cs" />
  67. <Compile Include="Commands\SimpleCommand.cs" />
  68. <Compile Include="Commands\SimpleCommandBusinessValidator.cs" />
  69. <Compile Include="Commands\SimpleCommandInputValidator.cs" />
  70. <Compile Include="Domain\StatelessAggregatedRootWithOneMethod.cs" />
  71. <Compile Include="Domain\StatelessAggregatedRoot.cs" />
  72. <Compile Include="Domain\AnotherStatefulAggregatedRoot.cs" />
  73. <Compile Include="Domain\StatefulAggregatedRoot.cs" />
  74. <Compile Include="Entities\EntityContext.cs" />
  75. <Compile Include="Events\AnotherSimpleEvent.cs" />
  76. <Compile Include="Events\SimpleEvent.cs" />
  77. <Compile Include="Events\SimpleEventV1ToV2Migrator.cs" />
  78. <Compile Include="Events\SimpleEventV2ToV3Migrator.cs" />
  79. <Compile Include="Events\SimpleEventWithDefaultConstructor.cs" />
  80. <Compile Include="Events\SimpleEventWithOneProperty.cs" />
  81. <Compile Include="Events\v2\SimpleEvent.cs" />
  82. <Compile Include="Events\v3\SimpleEvent.cs" />
  83. <Compile Include="Sagas\AnotherTransitionalChapter.cs" />
  84. <Compile Include="Sagas\SagaWithOneChapterProperty.cs" />
  85. <Compile Include="Sagas\NonTransitionalChapter.cs" />
  86. <Compile Include="Sagas\SagaWithTwoChapterProperties.cs" />
  87. <Compile Include="Sagas\SimpleChapter.cs" />
  88. <Compile Include="Sagas\SimpleChapterValidator.cs" />
  89. <Compile Include="Sagas\SimpleSaga.cs" />
  90. <Compile Include="Sagas\SimpleSagaWithConflictingPropertyNames.cs" />
  91. <Compile Include="Sagas\TransitionalChapter.cs" />
  92. <Compile Include="Sagas\NonTransitionalChapterValidator.cs" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <ProjectReference Include="..\Bifrost\Bifrost.csproj">
  96. <Project>{FB310720-CD89-44B6-BD54-7861F65D8466}</Project>
  97. <Name>Bifrost</Name>
  98. </ProjectReference>
  99. </ItemGroup>
  100. <ItemGroup>
  101. <Folder Include="Properties\" />
  102. </ItemGroup>
  103. <ItemGroup>
  104. <None Include="packages.config" />
  105. </ItemGroup>
  106. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  107. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" />
  108. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  109. Other similar extension points exist, see Microsoft.Common.targets.
  110. <Target Name="BeforeBuild">
  111. </Target>
  112. <Target Name="AfterBuild">
  113. </Target>
  114. -->
  115. </Project>