root/src/BRAINSFramework/BrAInS.csproj

113
40
    <UseVSHostingProcess>false</UseVSHostingProcess>
40
    <UseVSHostingProcess>false</UseVSHostingProcess>
41
    <PlatformTarget>x86</PlatformTarget>
41
    <PlatformTarget>x86</PlatformTarget>
42
    <XnaCompressContent>false</XnaCompressContent>
42
    <XnaCompressContent>false</XnaCompressContent>
43
    <DocumentationFile>bin\x86\Debug\Brains.Framework.xml</DocumentationFile>
43
  </PropertyGroup>
44
  </PropertyGroup>
44
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
45
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
45
    <DebugType>pdbonly</DebugType>
46
    <DebugType>pdbonly</DebugType>
...
...
87
    <Compile Include="Behaviors\PathFinding\CyclicPathBehavior.cs" />
88
    <Compile Include="Behaviors\PathFinding\CyclicPathBehavior.cs" />
88
    <Compile Include="Behaviors\PathFinding\FindPathBehavior.cs" />
89
    <Compile Include="Behaviors\PathFinding\FindPathBehavior.cs" />
89
    <Compile Include="Behaviors\PathFinding\FollowPathBehavior.cs" />
90
    <Compile Include="Behaviors\PathFinding\FollowPathBehavior.cs" />
90
    <Compile Include="Consts.cs" />
91
    <Compile Include="Utility\AIConsts.cs" />
92
    <Compile Include="Map\Cluster.cs" />
91
    <Compile Include="Designer\BehaviorNode.cs" />
93
    <Compile Include="Designer\BehaviorNode.cs" />
92
    <Compile Include="Behaviors\BehaviorBase.cs" />
94
    <Compile Include="Behaviors\BehaviorBase.cs" />
93
    <Compile Include="Behaviors\BehaviorList.cs" />
95
    <Compile Include="Behaviors\BehaviorList.cs" />
...
...
98
    <Compile Include="Behaviors\IActionBehavior.cs" />
100
    <Compile Include="Behaviors\IActionBehavior.cs" />
99
    <Compile Include="Behaviors\ICompositeBehavior.cs" />
101
    <Compile Include="Behaviors\ICompositeBehavior.cs" />
100
    <Compile Include="Behaviors\SequenceBehavior.cs" />
102
    <Compile Include="Behaviors\SequenceBehavior.cs" />
101
    <Compile Include="Behaviors\BehaviorState.cs" />
102
    <Compile Include="Behaviors\IBehavior.cs" />
103
    <Compile Include="Behaviors\IBehavior.cs" />
103
    <Compile Include="Designer\BehaviorAttribute.cs" />
104
    <Compile Include="Designer\BehaviorAttribute.cs" />
104
    <Compile Include="ExtensionMethods.cs" />
105
    <Compile Include="Utility\Enums.cs" />
106
    <Compile Include="Utility\ExtensionMethods.cs" />
105
    <Compile Include="Feeler.cs" />
107
    <Compile Include="Feeler.cs" />
106
    <Compile Include="Grid.cs" />
108
    <Compile Include="Map\Grid.cs" />
107
    <Compile Include="GridCell.cs" />
109
    <Compile Include="Map\GridCell.cs" />
108
    <Compile Include="Agent.cs" />
110
    <Compile Include="Agent.cs" />
109
    <Compile Include="Label.cs" />
111
    <Compile Include="Label.cs" />
112
    <Compile Include="Utility\License.cs" />
110
    <Compile Include="Locomotion\LocomotionController.cs" />
113
    <Compile Include="Locomotion\LocomotionController.cs" />
111
    <Compile Include="Locomotion\LocomtionSteering.cs" />
114
    <Compile Include="Locomotion\LocomtionSteering.cs" />
112
    <Compile Include="Map.cs" />
115
    <Compile Include="Map\WorldMap.cs" />
113
    <Compile Include="PathFinding\PathFinder.cs" />
116
    <Compile Include="PathFinding\PathFinder.cs" />
114
    <Compile Include="PathFinding\PathFinderNode.cs" />
117
    <Compile Include="PathFinding\PathFinderNode.cs" />
115
    <Compile Include="PathFinding\NodeComparer.cs" />
118
    <Compile Include="PathFinding\NodeComparer.cs" />
116
    <Compile Include="PathFinding\PathFinderState.cs" />
117
    <Compile Include="PriorityQueue.cs" />
119
    <Compile Include="PriorityQueue.cs" />
118
    <Compile Include="Properties\AssemblyInfo.cs" />
120
    <Compile Include="Properties\AssemblyInfo.cs" />
119
    <Compile Include="QuadTree\FRect.cs" />
121
    <Compile Include="QuadTree\RectangleF.cs" />
120
    <Compile Include="QuadTree\QuadTree.cs" />
122
    <Compile Include="QuadTree\QuadTree.cs" />
121
    <Compile Include="QuadTree\QuadTreeNode.cs" />
123
    <Compile Include="QuadTree\QuadTreeNode.cs" />
122
    <Compile Include="QuadTree\QuadTreePositionItem.cs" />
124
    <Compile Include="QuadTree\QuadTreePositionItem.cs" />
123
    <Compile Include="Util.cs" />
125
    <Compile Include="Utility\Util.cs" />
124
    <Compile Include="World.cs" />
126
    <Compile Include="World.cs" />
125
  </ItemGroup>
127
  </ItemGroup>
126
  <ItemGroup>
128
  <ItemGroup>
...
...
175
  <Target Name="AfterBuild">
177
  <Target Name="AfterBuild">
176
  </Target>
178
  </Target>
177
  -->
179
  -->
180
  <PropertyGroup>
181
    <PostBuildEvent>xcopy /Y $(TargetDir)$(TargetName).* $(ProjectDir)..\..\build\Release\</PostBuildEvent>
182
  </PropertyGroup>
178
</Project>
183
</Project>