Changeset 10450
- Timestamp:
- 02/07/14 13:54:22 (11 years ago)
- Location:
- branches/SimulationCore
- Files:
-
- 23 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SimulationCore/HeuristicLab.SimulationCore.Samples/3.3/HeuristicLab.SimulationCore.Samples-3.3.csproj
r7204 r10450 157 157 <Reference Include="System" /> 158 158 <Reference Include="System.Core" /> 159 <Reference Include="System.Drawing" /> 159 160 <Reference Include="System.Xml.Linq" /> 160 161 <Reference Include="System.Data.DataSetExtensions" /> … … 164 165 <ItemGroup> 165 166 <Compile Include="GameOfLifeAgent.cs" /> 167 <Compile Include="GameOfLifeDiscreteEventSimulation.cs" /> 166 168 <Compile Include="GameOfLifeScenario.cs" /> 167 169 <Compile Include="GameOfLifeSimulation.cs" /> -
branches/SimulationCore/HeuristicLab.SimulationCore.sln
r7204 r10450 1 1 2 Microsoft Visual Studio Solution File, Format Version 1 1.003 # Visual Studio 201 02 Microsoft Visual Studio Solution File, Format Version 12.00 3 # Visual Studio 2012 4 4 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{EA53A5B2-BFCF-4D7E-AFAA-4A2916D2A548}" 5 5 ProjectSection(SolutionItems) = preProject … … 13 13 EndProject 14 14 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SimulationCore.Samples-3.3", "HeuristicLab.SimulationCore.Samples\3.3\HeuristicLab.SimulationCore.Samples-3.3.csproj", "{71537847-8B2D-4016-B6BF-DF0931024AC8}" 15 EndProject 16 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SimulationCore.Tests", "HeuristicLab.SimulationCore.Tests\HeuristicLab.SimulationCore.Tests.csproj", "{173B1CAE-271F-47BA-9448-8A85BA9CAEAC}" 15 17 EndProject 16 18 Global … … 60 62 {71537847-8B2D-4016-B6BF-DF0931024AC8}.Release|x86.ActiveCfg = Release|x86 61 63 {71537847-8B2D-4016-B6BF-DF0931024AC8}.Release|x86.Build.0 = Release|x86 64 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 65 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|Any CPU.Build.0 = Debug|Any CPU 66 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|x64.ActiveCfg = Debug|Any CPU 67 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|x86.ActiveCfg = Debug|Any CPU 68 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|Any CPU.ActiveCfg = Release|Any CPU 69 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|Any CPU.Build.0 = Release|Any CPU 70 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|x64.ActiveCfg = Release|Any CPU 71 {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|x86.ActiveCfg = Release|Any CPU 62 72 EndGlobalSection 63 73 GlobalSection(SolutionProperties) = preSolution 64 74 HideSolutionNode = FALSE 65 75 EndGlobalSection 76 GlobalSection(Performance) = preSolution 77 HasPerformanceSessions = true 78 EndGlobalSection 66 79 EndGlobal -
branches/SimulationCore/HeuristicLab.SimulationCore/3.3
- Property svn:ignore
-
old new 4 4 obj 5 5 Plugin.cs 6 *.DotSettings
-
- Property svn:ignore
-
branches/SimulationCore/HeuristicLab.SimulationCore/3.3/HeuristicLab.SimulationCore-3.3.csproj
r7204 r10450 120 120 <Private>False</Private> 121 121 </Reference> 122 <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 123 <SpecificVersion>False</SpecificVersion> 124 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath> 125 <Private>False</Private> 126 </Reference> 122 127 <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 123 128 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 129 <Private>False</Private> 130 </Reference> 131 <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 132 <SpecificVersion>False</SpecificVersion> 133 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath> 124 134 <Private>False</Private> 125 135 </Reference> … … 143 153 <Compile Include="AgentBased\AgentBasedSimulation.cs" /> 144 154 <Compile Include="AgentBased\IAgent.cs" /> 155 <Compile Include="DiscreteEvent\Action.cs" /> 156 <Compile Include="DiscreteEvent\Activity.cs" /> 157 <Compile Include="DiscreteEvent\CompositeEventQueue.cs" /> 158 <Compile Include="DiscreteEvent\DiscreteEventSimulation.cs" /> 159 <Compile Include="DiscreteEvent\Event.cs" /> 160 <Compile Include="DiscreteEvent\Interfaces\IReporter.cs" /> 161 <Compile Include="DiscreteEvent\ModelTimeUpdateAction.cs" /> 162 <Compile Include="DiscreteEvent\Reporter.cs" /> 163 <Compile Include="DiscreteEvent\SortedListEventQueue.cs" /> 164 <Compile Include="DiscreteEvent\Interfaces\IActivity.cs" /> 165 <Compile Include="DiscreteEvent\Interfaces\IDiscreteEventSimulation.cs" /> 166 <Compile Include="DiscreteEvent\Interfaces\IAction.cs" /> 167 <Compile Include="DiscreteEvent\Interfaces\IEvent.cs" /> 168 <Compile Include="DiscreteEvent\Interfaces\IEventQueue.cs" /> 169 <Compile Include="DiscreteEvent\Interfaces\IModel.cs" /> 145 170 <Compile Include="IScenario.cs" /> 146 171 <Compile Include="ISimulation.cs" />
Note: See TracChangeset
for help on using the changeset viewer.