-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbootstrapper.sample.csproj
More file actions
129 lines (129 loc) · 6.35 KB
/
bootstrapper.sample.csproj
File metadata and controls
129 lines (129 loc) · 6.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?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>{627ACBDC-4548-4124-AD37-AABD6128C1A5}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>bootstrapper.sample</RootNamespace>
<AssemblyName>bootstrapper.sample</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<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|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="bbv.Common, Version=7.1.0.0, Culture=neutral, PublicKeyToken=917bca444d1f2b4c, processorArchitecture=MSIL">
<HintPath>packages\bbv.Common.7.1.11331.1827\lib\Net40\bbv.Common.dll</HintPath>
</Reference>
<Reference Include="bbv.Common.AsyncModule, Version=7.2.0.0, Culture=neutral, PublicKeyToken=917bca444d1f2b4c, processorArchitecture=MSIL">
<HintPath>packages\bbv.Common.AsyncModule.7.2.11331.1827\lib\Net40\bbv.Common.AsyncModule.dll</HintPath>
</Reference>
<Reference Include="bbv.Common.Bootstrapper, Version=7.1.0.0, Culture=neutral, PublicKeyToken=917bca444d1f2b4c, processorArchitecture=MSIL">
<HintPath>packages\bbv.Common.Bootstrapper.7.1.11331.1827\lib\Net40\bbv.Common.Bootstrapper.dll</HintPath>
</Reference>
<Reference Include="FluentAssertions">
<HintPath>packages\FluentAssertions.1.6.0\Lib\net40\FluentAssertions.dll</HintPath>
</Reference>
<Reference Include="Machine.Specifications">
<HintPath>packages\Machine.Specifications-Signed.0.5.0.0\lib\Machine.Specifications.dll</HintPath>
</Reference>
<Reference Include="Moq">
<HintPath>packages\Moq.4.0.10827\lib\NET40\Moq.dll</HintPath>
</Reference>
<Reference Include="Ninject">
<HintPath>packages\Ninject.2.2.1.4\lib\net40-Client\Ninject.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Reactive">
<HintPath>packages\Rx-Main.1.0.10621\lib\Net4\System.Reactive.dll</HintPath>
</Reference>
<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="BlackHoleSensor.cs" />
<Compile Include="DoorSensor.cs" />
<Compile Include="Heartbeat\HeartbeatModule.cs" />
<Compile Include="Heartbeat\IStartHeartbeat.cs" />
<Compile Include="Heartbeat\IStopHeartbeat.cs" />
<Compile Include="Heartbeat\MakeAwareOfHeartbeat.cs" />
<Compile Include="Heartbeat\StartHeartbeat.cs" />
<Compile Include="Heartbeat\StopHeartbeat.cs" />
<Compile Include="IBlackHoleSensor.cs" />
<Compile Include="IDoorSensor.cs" />
<Compile Include="ISensor.cs" />
<Compile Include="ISerotoninSensor.cs" />
<Compile Include="NinjectSensorResolver.cs" />
<Compile Include="SensorModule.cs" />
<Compile Include="SerotoninSensor.cs" />
<Compile Include="Sirius\IVhptBlackHoleSubOrbitDetectionEngine.cs" />
<Compile Include="Sirius\IVhptDataBus.cs" />
<Compile Include="Sirius\IVhptHeartbeatGenerator.cs" />
<Compile Include="Sirius\IVphtMessageBus.cs" />
<Compile Include="Sirius\IVhptDoor.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AbstractSensor.cs" />
<Compile Include="SensorLifetimeStrategy.cs" />
<Compile Include="Sirius\IVphtSerotoninProbe.cs" />
<Compile Include="Sirius\SiriusModule.cs" />
<Compile Include="Specs\BlackHoleSpecification.cs" />
<Compile Include="Specs\BootstrapperExtensions.cs" />
<Compile Include="Specs\DataBusSpecification.cs" />
<Compile Include="Specs\Magic\DecoratedBootstrapper.cs" />
<Compile Include="Specs\Magic\DecoratedExtensionPoint.cs" />
<Compile Include="Specs\Magic\DecoratedExtensionResolver.cs" />
<Compile Include="Specs\Fakes\FakeVhptDataBus.cs" />
<Compile Include="Specs\Fakes\FakeVhptMessageBus.cs" />
<Compile Include="Specs\Magic\FieldsWithAttributeCaching.cs" />
<Compile Include="Specs\Magic\INeedKernel.cs" />
<Compile Include="Specs\InitializedBootstrapperSpecification.cs" />
<Compile Include="Specs\Magic\InjectFieldsWithInjectAttribute.cs" />
<Compile Include="Specs\MessageBusSpecification.cs" />
<Compile Include="Specs\Magic\RebindAttribute.cs" />
<Compile Include="Specs\Magic\RebindFieldsWithRebindAttribute.cs" />
<Compile Include="Specs\SpecSensorLifetimeStrategy.cs" />
<Compile Include="Specs\when_black_hole_detected_and_panic_mode_enabled.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="BeforeBuild">
<Message Text="Checking NuGet packages" />
<Exec Condition="Exists('$(ProjectDir)packages.config')" Command="$(SolutionDir)\Tools\NuGet\nuget install $(ProjectDir)packages.config -o $(SolutionDir)Packages" />
</Target>
<!-- 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="AfterBuild">
</Target>
-->
</Project>