Changeset 11577 for branches/OptimizationNetworks/HeuristicLab.Core
- Timestamp:
- 11/25/14 05:15:09 (10 years ago)
- Location:
- branches/OptimizationNetworks/HeuristicLab.Core/3.3
- Files:
-
- 1 added
- 1 edited
- 25 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Core/3.3/HeuristicLab.Core-3.3.csproj
r11576 r11577 19 19 </UpgradeBackupLocation> 20 20 <IsWebBootstrapper>true</IsWebBootstrapper> 21 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>21 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 22 22 <TargetFrameworkProfile> 23 23 </TargetFrameworkProfile> … … 48 48 </DocumentationFile> 49 49 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 50 <Prefer32Bit>false</Prefer32Bit> 50 51 </PropertyGroup> 51 52 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 60 61 <TreatWarningsAsErrors>false</TreatWarningsAsErrors> 61 62 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 63 <Prefer32Bit>false</Prefer32Bit> 62 64 </PropertyGroup> 63 65 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 69 71 <ErrorReport>prompt</ErrorReport> 70 72 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 73 <Prefer32Bit>false</Prefer32Bit> 71 74 </PropertyGroup> 72 75 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 80 83 <ErrorReport>prompt</ErrorReport> 81 84 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 85 <Prefer32Bit>false</Prefer32Bit> 82 86 </PropertyGroup> 83 87 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 89 93 <ErrorReport>prompt</ErrorReport> 90 94 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 95 <Prefer32Bit>false</Prefer32Bit> 91 96 </PropertyGroup> 92 97 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 100 105 <ErrorReport>prompt</ErrorReport> 101 106 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 107 <Prefer32Bit>false</Prefer32Bit> 102 108 </PropertyGroup> 103 109 <ItemGroup> … … 161 167 <Compile Include="Interfaces\IOperatorGraphOperator.cs" /> 162 168 <Compile Include="Interfaces\IStatefulItem.cs" /> 169 <Compile Include="Networks\IConnectablePort.cs" /> 170 <Compile Include="Networks\IMessage.cs" /> 171 <Compile Include="Networks\IMessagePort.cs" /> 172 <Compile Include="Networks\IMessageValue.cs" /> 173 <Compile Include="Networks\INetwork.cs" /> 174 <Compile Include="Networks\INetworkItem.cs" /> 175 <Compile Include="Networks\INode.cs" /> 176 <Compile Include="Networks\IParameterizedPort.cs" /> 177 <Compile Include="Networks\IPort.cs" /> 178 <Compile Include="Networks\IPortParameter.cs" /> 179 <Compile Include="Networks\Message.cs" /> 180 <Compile Include="Networks\MessageCollection.cs" /> 181 <Compile Include="Networks\MessagePort.cs" /> 182 <Compile Include="Networks\MessageValue.cs" /> 183 <Compile Include="Networks\MessageValueCollection.cs" /> 184 <Compile Include="Networks\Network.cs" /> 185 <Compile Include="Networks\NetworkItem.cs" /> 186 <Compile Include="Networks\Node.cs" /> 187 <Compile Include="Networks\NodeCollection.cs" /> 188 <Compile Include="Networks\ParameterizedPort.cs" /> 189 <Compile Include="Networks\Port.cs" /> 190 <Compile Include="Networks\PortCollection.cs" /> 191 <Compile Include="Networks\PortParameter.cs" /> 192 <Compile Include="Networks\PortParameterCollection.cs" /> 193 <Compile Include="Networks\PortParameterType.cs" /> 163 194 <Compile Include="OperatorExecutionException.cs" /> 164 195 <Compile Include="Interfaces\IScopeTreeLookupParameter.cs" />
Note: See TracChangeset
for help on using the changeset viewer.