Changeset 12830 for branches/HeuristicLab.Problems.GrammaticalOptimization
- Timestamp:
- 08/02/15 15:22:46 (9 years ago)
- Location:
- branches/HeuristicLab.Problems.GrammaticalOptimization
- Files:
-
- 1 added
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/DynamicDataDisplay.csproj
r12503 r12830 81 81 <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression> 82 82 <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile> 83 <ErrorReport>prompt</ErrorReport> 84 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 85 </PropertyGroup> 86 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 87 <DebugSymbols>true</DebugSymbols> 88 <OutputPath>bin\x64\Debug\</OutputPath> 89 <DefineConstants>TRACE;DEBUG;CODE_ANALYSIS</DefineConstants> 90 <DebugType>full</DebugType> 91 <PlatformTarget>x64</PlatformTarget> 92 <ErrorReport>prompt</ErrorReport> 93 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 94 </PropertyGroup> 95 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 96 <DebugSymbols>true</DebugSymbols> 97 <OutputPath>bin\x64\Release\</OutputPath> 98 <DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants> 99 <DocumentationFile>bin\Release\DynamicDataDisplay.XML</DocumentationFile> 100 <Optimize>true</Optimize> 101 <DebugType>pdbonly</DebugType> 102 <PlatformTarget>x64</PlatformTarget> 103 <ErrorReport>prompt</ErrorReport> 104 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 105 </PropertyGroup> 106 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseXBAP|x64'"> 107 <DebugSymbols>true</DebugSymbols> 108 <OutputPath>bin\x64\ReleaseXBAP\</OutputPath> 109 <DefineConstants>TRACE;CODE_ANALYSIS, RELEASEXBAP</DefineConstants> 110 <DocumentationFile>bin\Release\DynamicDataDisplay.XML</DocumentationFile> 111 <Optimize>true</Optimize> 112 <DebugType>pdbonly</DebugType> 113 <PlatformTarget>x64</PlatformTarget> 83 114 <ErrorReport>prompt</ErrorReport> 84 115 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> -
branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/Evaluation.csproj
r12815 r12830 14 14 <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> 15 15 <WarningLevel>4</WarningLevel> 16 <PublishUrl>publish\</PublishUrl> 17 <Install>true</Install> 18 <InstallFrom>Disk</InstallFrom> 19 <UpdateEnabled>false</UpdateEnabled> 20 <UpdateMode>Foreground</UpdateMode> 21 <UpdateInterval>7</UpdateInterval> 22 <UpdateIntervalUnits>Days</UpdateIntervalUnits> 23 <UpdatePeriodically>false</UpdatePeriodically> 24 <UpdateRequired>false</UpdateRequired> 25 <MapFileExtensions>true</MapFileExtensions> 26 <ApplicationRevision>0</ApplicationRevision> 27 <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 28 <IsWebBootstrapper>false</IsWebBootstrapper> 29 <UseApplicationTrust>false</UseApplicationTrust> 30 <BootstrapperEnabled>true</BootstrapperEnabled> 16 31 </PropertyGroup> 17 32 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 33 48 <ErrorReport>prompt</ErrorReport> 34 49 <WarningLevel>4</WarningLevel> 50 </PropertyGroup> 51 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 52 <DebugSymbols>true</DebugSymbols> 53 <OutputPath>bin\x64\Debug\</OutputPath> 54 <DefineConstants>DEBUG;TRACE</DefineConstants> 55 <DebugType>full</DebugType> 56 <PlatformTarget>x64</PlatformTarget> 57 <ErrorReport>prompt</ErrorReport> 58 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 59 <Prefer32Bit>true</Prefer32Bit> 60 </PropertyGroup> 61 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 62 <OutputPath>bin\x64\Release\</OutputPath> 63 <DefineConstants>TRACE</DefineConstants> 64 <Optimize>true</Optimize> 65 <DebugType>pdbonly</DebugType> 66 <PlatformTarget>x64</PlatformTarget> 67 <ErrorReport>prompt</ErrorReport> 68 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 69 <Prefer32Bit>true</Prefer32Bit> 35 70 </PropertyGroup> 36 71 <ItemGroup> … … 144 179 </ProjectReference> 145 180 </ItemGroup> 181 <ItemGroup> 182 <BootstrapperPackage Include=".NETFramework,Version=v4.5"> 183 <Visible>False</Visible> 184 <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName> 185 <Install>true</Install> 186 </BootstrapperPackage> 187 <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> 188 <Visible>False</Visible> 189 <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName> 190 <Install>false</Install> 191 </BootstrapperPackage> 192 <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> 193 <Visible>False</Visible> 194 <ProductName>.NET Framework 3.5 SP1</ProductName> 195 <Install>false</Install> 196 </BootstrapperPackage> 197 </ItemGroup> 146 198 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 147 199 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/MainWindow.xaml.cs
r12829 r12830 42 42 CenterWindowOnScreen(); 43 43 this.DataContext = vm = new EvaluationViewModel(); 44 vm.MaxLen = 100;44 vm.MaxLen = 23; 45 45 vm.MaxIterations = 500000; 46 46 vm.NrRuns = 20; 47 48 47 } 49 48 … … 164 163 ISymbolicExpressionTreeProblem problem = vm.SelectedProblem; 165 164 166 167 168 165 Type policy = vm.SelectedPolicy; 169 166 IBanditPolicy policyInstance = null; … … 189 186 { 190 187 ISolver solver = null; 188 191 189 Random random = new Random(Guid.NewGuid().GetHashCode()); 192 190 … … 400 398 tableExport.Append( 401 399 "Run\tMaxIterations\tEvaluations\tBestKnownQuality\tQuality\tQuality %\tFoundAt\tTotalTime\tSolutionTime\tEvaluationsPerSecond\tSolution"); 402 if (ListViewRuns.Items.Count > 0 && ((Run) 400 if (ListViewRuns.Items.Count > 0 && ((Run)ListViewRuns.Items[0]).TreeInfos != null) 403 401 { 404 402 tableExport.Append("\tTotalNodes\tUnexpandedNodes\tExpandedNodes\tLeaveNodes\tDeepestLevel"); -
branches/HeuristicLab.Problems.GrammaticalOptimization/GrammaticalOptimization.sln
r12762 r12830 95 95 GlobalSection(SolutionConfigurationPlatforms) = preSolution 96 96 Debug|Any CPU = Debug|Any CPU 97 Debug|x64 = Debug|x64 97 98 Documentation|Any CPU = Documentation|Any CPU 99 Documentation|x64 = Documentation|x64 98 100 Release|Any CPU = Release|Any CPU 101 Release|x64 = Release|x64 99 102 ReleaseXBAP|Any CPU = ReleaseXBAP|Any CPU 103 ReleaseXBAP|x64 = ReleaseXBAP|x64 100 104 EndGlobalSection 101 105 GlobalSection(ProjectConfigurationPlatforms) = postSolution 102 106 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 103 107 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Debug|Any CPU.Build.0 = Debug|Any CPU 108 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Debug|x64.ActiveCfg = Debug|x64 109 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Debug|x64.Build.0 = Debug|x64 104 110 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 105 111 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Documentation|Any CPU.Build.0 = Debug|Any CPU 112 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Documentation|x64.ActiveCfg = Debug|Any CPU 106 113 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Release|Any CPU.ActiveCfg = Release|Any CPU 107 114 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Release|Any CPU.Build.0 = Release|Any CPU 115 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Release|x64.ActiveCfg = Release|x64 116 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.Release|x64.Build.0 = Release|x64 108 117 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 109 118 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 119 {CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 110 120 {EEA07488-1A51-412A-A52C-53B754A628B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 111 121 {EEA07488-1A51-412A-A52C-53B754A628B3}.Debug|Any CPU.Build.0 = Debug|Any CPU 122 {EEA07488-1A51-412A-A52C-53B754A628B3}.Debug|x64.ActiveCfg = Debug|x64 123 {EEA07488-1A51-412A-A52C-53B754A628B3}.Debug|x64.Build.0 = Debug|x64 112 124 {EEA07488-1A51-412A-A52C-53B754A628B3}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 113 125 {EEA07488-1A51-412A-A52C-53B754A628B3}.Documentation|Any CPU.Build.0 = Debug|Any CPU 126 {EEA07488-1A51-412A-A52C-53B754A628B3}.Documentation|x64.ActiveCfg = Debug|Any CPU 114 127 {EEA07488-1A51-412A-A52C-53B754A628B3}.Release|Any CPU.ActiveCfg = Release|Any CPU 115 128 {EEA07488-1A51-412A-A52C-53B754A628B3}.Release|Any CPU.Build.0 = Release|Any CPU 129 {EEA07488-1A51-412A-A52C-53B754A628B3}.Release|x64.ActiveCfg = Release|x64 130 {EEA07488-1A51-412A-A52C-53B754A628B3}.Release|x64.Build.0 = Release|x64 116 131 {EEA07488-1A51-412A-A52C-53B754A628B3}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 117 132 {EEA07488-1A51-412A-A52C-53B754A628B3}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 133 {EEA07488-1A51-412A-A52C-53B754A628B3}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 118 134 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 119 135 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Debug|Any CPU.Build.0 = Debug|Any CPU 136 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Debug|x64.ActiveCfg = Debug|x64 137 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Debug|x64.Build.0 = Debug|x64 120 138 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 121 139 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Documentation|Any CPU.Build.0 = Debug|Any CPU 140 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Documentation|x64.ActiveCfg = Debug|Any CPU 122 141 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Release|Any CPU.ActiveCfg = Release|Any CPU 123 142 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Release|Any CPU.Build.0 = Release|Any CPU 143 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Release|x64.ActiveCfg = Release|x64 144 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.Release|x64.Build.0 = Release|x64 124 145 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 125 146 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 147 {524CBD70-6F99-46AF-AD00-A0BC9FD1175B}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 126 148 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 127 149 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Debug|Any CPU.Build.0 = Debug|Any CPU 150 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Debug|x64.ActiveCfg = Debug|x64 151 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Debug|x64.Build.0 = Debug|x64 128 152 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 129 153 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Documentation|Any CPU.Build.0 = Debug|Any CPU 154 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Documentation|x64.ActiveCfg = Debug|Any CPU 130 155 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Release|Any CPU.ActiveCfg = Release|Any CPU 131 156 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Release|Any CPU.Build.0 = Release|Any CPU 157 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Release|x64.ActiveCfg = Release|x64 158 {24408F7D-EE0F-4886-A08B-EC324D662E47}.Release|x64.Build.0 = Release|x64 132 159 {24408F7D-EE0F-4886-A08B-EC324D662E47}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 133 160 {24408F7D-EE0F-4886-A08B-EC324D662E47}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 161 {24408F7D-EE0F-4886-A08B-EC324D662E47}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 134 162 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 135 163 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Debug|Any CPU.Build.0 = Debug|Any CPU 164 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Debug|x64.ActiveCfg = Debug|x64 165 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Debug|x64.Build.0 = Debug|x64 136 166 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 137 167 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Documentation|Any CPU.Build.0 = Debug|Any CPU 168 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Documentation|x64.ActiveCfg = Debug|Any CPU 138 169 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Release|Any CPU.ActiveCfg = Release|Any CPU 139 170 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Release|Any CPU.Build.0 = Release|Any CPU 171 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Release|x64.ActiveCfg = Release|x64 172 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.Release|x64.Build.0 = Release|x64 140 173 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 141 174 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 175 {3A2FBBCB-F9DF-4970-87F3-F13337D941AD}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 142 176 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 143 177 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Debug|Any CPU.Build.0 = Debug|Any CPU 178 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Debug|x64.ActiveCfg = Debug|x64 179 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Debug|x64.Build.0 = Debug|x64 144 180 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 145 181 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Documentation|Any CPU.Build.0 = Debug|Any CPU 182 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Documentation|x64.ActiveCfg = Debug|Any CPU 146 183 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Release|Any CPU.ActiveCfg = Release|Any CPU 147 184 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Release|Any CPU.Build.0 = Release|Any CPU 185 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Release|x64.ActiveCfg = Release|x64 186 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.Release|x64.Build.0 = Release|x64 148 187 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 149 188 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 189 {17A7A380-86CE-482D-8D22-CBD70CC97F0D}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 150 190 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 151 191 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Debug|Any CPU.Build.0 = Debug|Any CPU 192 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Debug|x64.ActiveCfg = Debug|x64 193 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Debug|x64.Build.0 = Debug|x64 152 194 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 153 195 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Documentation|Any CPU.Build.0 = Debug|Any CPU 196 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Documentation|x64.ActiveCfg = Debug|Any CPU 154 197 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Release|Any CPU.ActiveCfg = Release|Any CPU 155 198 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Release|Any CPU.Build.0 = Release|Any CPU 199 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Release|x64.ActiveCfg = Release|x64 200 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.Release|x64.Build.0 = Release|x64 156 201 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 157 202 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 203 {14BEC23F-63FD-4954-B8AE-E2F4962E9B57}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 158 204 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 159 205 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Debug|Any CPU.Build.0 = Debug|Any CPU 206 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Debug|x64.ActiveCfg = Debug|x64 207 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Debug|x64.Build.0 = Debug|x64 160 208 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 161 209 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Documentation|Any CPU.Build.0 = Debug|Any CPU 210 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Documentation|x64.ActiveCfg = Debug|Any CPU 162 211 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Release|Any CPU.ActiveCfg = Release|Any CPU 163 212 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Release|Any CPU.Build.0 = Release|Any CPU 213 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Release|x64.ActiveCfg = Release|x64 214 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.Release|x64.Build.0 = Release|x64 164 215 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 165 216 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 217 {31171165-E16F-4A1A-A8AB-25C6AB3A71B9}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 166 218 {E8138227-0C64-4E85-B676-21D3B97F254F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 167 219 {E8138227-0C64-4E85-B676-21D3B97F254F}.Debug|Any CPU.Build.0 = Debug|Any CPU 220 {E8138227-0C64-4E85-B676-21D3B97F254F}.Debug|x64.ActiveCfg = Debug|x64 221 {E8138227-0C64-4E85-B676-21D3B97F254F}.Debug|x64.Build.0 = Debug|x64 168 222 {E8138227-0C64-4E85-B676-21D3B97F254F}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 169 223 {E8138227-0C64-4E85-B676-21D3B97F254F}.Documentation|Any CPU.Build.0 = Debug|Any CPU 224 {E8138227-0C64-4E85-B676-21D3B97F254F}.Documentation|x64.ActiveCfg = Debug|Any CPU 170 225 {E8138227-0C64-4E85-B676-21D3B97F254F}.Release|Any CPU.ActiveCfg = Release|Any CPU 171 226 {E8138227-0C64-4E85-B676-21D3B97F254F}.Release|Any CPU.Build.0 = Release|Any CPU 227 {E8138227-0C64-4E85-B676-21D3B97F254F}.Release|x64.ActiveCfg = Release|x64 228 {E8138227-0C64-4E85-B676-21D3B97F254F}.Release|x64.Build.0 = Release|x64 172 229 {E8138227-0C64-4E85-B676-21D3B97F254F}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 173 230 {E8138227-0C64-4E85-B676-21D3B97F254F}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 231 {E8138227-0C64-4E85-B676-21D3B97F254F}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 174 232 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 175 233 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Debug|Any CPU.Build.0 = Debug|Any CPU 234 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Debug|x64.ActiveCfg = Debug|x64 235 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Debug|x64.Build.0 = Debug|x64 176 236 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 177 237 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Documentation|Any CPU.Build.0 = Debug|Any CPU 238 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Documentation|x64.ActiveCfg = Debug|Any CPU 178 239 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Release|Any CPU.ActiveCfg = Release|Any CPU 179 240 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Release|Any CPU.Build.0 = Release|Any CPU 241 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Release|x64.ActiveCfg = Release|x64 242 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.Release|x64.Build.0 = Release|x64 180 243 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 181 244 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 245 {8B4C199E-C08B-479E-9B82-6AE5B113459E}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 182 246 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 183 247 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Debug|Any CPU.Build.0 = Debug|Any CPU 248 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Debug|x64.ActiveCfg = Debug|x64 249 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Debug|x64.Build.0 = Debug|x64 184 250 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 185 251 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Documentation|Any CPU.Build.0 = Debug|Any CPU 252 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Documentation|x64.ActiveCfg = Debug|Any CPU 186 253 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Release|Any CPU.ActiveCfg = Release|Any CPU 187 254 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Release|Any CPU.Build.0 = Release|Any CPU 255 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Release|x64.ActiveCfg = Release|x64 256 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.Release|x64.Build.0 = Release|x64 188 257 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 189 258 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 259 {2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 190 260 {D043325A-097F-4512-A8FC-CF706577FA46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 191 261 {D043325A-097F-4512-A8FC-CF706577FA46}.Debug|Any CPU.Build.0 = Debug|Any CPU 262 {D043325A-097F-4512-A8FC-CF706577FA46}.Debug|x64.ActiveCfg = Debug|x64 263 {D043325A-097F-4512-A8FC-CF706577FA46}.Debug|x64.Build.0 = Debug|x64 192 264 {D043325A-097F-4512-A8FC-CF706577FA46}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 193 265 {D043325A-097F-4512-A8FC-CF706577FA46}.Documentation|Any CPU.Build.0 = Debug|Any CPU 266 {D043325A-097F-4512-A8FC-CF706577FA46}.Documentation|x64.ActiveCfg = Debug|Any CPU 194 267 {D043325A-097F-4512-A8FC-CF706577FA46}.Release|Any CPU.ActiveCfg = Release|Any CPU 195 268 {D043325A-097F-4512-A8FC-CF706577FA46}.Release|Any CPU.Build.0 = Release|Any CPU 269 {D043325A-097F-4512-A8FC-CF706577FA46}.Release|x64.ActiveCfg = Release|x64 270 {D043325A-097F-4512-A8FC-CF706577FA46}.Release|x64.Build.0 = Release|x64 196 271 {D043325A-097F-4512-A8FC-CF706577FA46}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 197 272 {D043325A-097F-4512-A8FC-CF706577FA46}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 273 {D043325A-097F-4512-A8FC-CF706577FA46}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 198 274 {ECD37682-DF7E-409F-912D-0965634556B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 199 275 {ECD37682-DF7E-409F-912D-0965634556B5}.Debug|Any CPU.Build.0 = Debug|Any CPU 276 {ECD37682-DF7E-409F-912D-0965634556B5}.Debug|x64.ActiveCfg = Debug|x64 277 {ECD37682-DF7E-409F-912D-0965634556B5}.Debug|x64.Build.0 = Debug|x64 200 278 {ECD37682-DF7E-409F-912D-0965634556B5}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 201 279 {ECD37682-DF7E-409F-912D-0965634556B5}.Documentation|Any CPU.Build.0 = Debug|Any CPU 280 {ECD37682-DF7E-409F-912D-0965634556B5}.Documentation|x64.ActiveCfg = Debug|x64 281 {ECD37682-DF7E-409F-912D-0965634556B5}.Documentation|x64.Build.0 = Debug|x64 202 282 {ECD37682-DF7E-409F-912D-0965634556B5}.Release|Any CPU.ActiveCfg = Release|Any CPU 203 283 {ECD37682-DF7E-409F-912D-0965634556B5}.Release|Any CPU.Build.0 = Release|Any CPU 284 {ECD37682-DF7E-409F-912D-0965634556B5}.Release|x64.ActiveCfg = Release|x64 285 {ECD37682-DF7E-409F-912D-0965634556B5}.Release|x64.Build.0 = Release|x64 204 286 {ECD37682-DF7E-409F-912D-0965634556B5}.ReleaseXBAP|Any CPU.ActiveCfg = ReleaseXBAP|Any CPU 205 287 {ECD37682-DF7E-409F-912D-0965634556B5}.ReleaseXBAP|Any CPU.Build.0 = ReleaseXBAP|Any CPU 288 {ECD37682-DF7E-409F-912D-0965634556B5}.ReleaseXBAP|x64.ActiveCfg = ReleaseXBAP|x64 289 {ECD37682-DF7E-409F-912D-0965634556B5}.ReleaseXBAP|x64.Build.0 = ReleaseXBAP|x64 206 290 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 207 291 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Debug|Any CPU.Build.0 = Debug|Any CPU 292 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Debug|x64.ActiveCfg = Debug|x64 293 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Debug|x64.Build.0 = Debug|x64 208 294 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 209 295 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Documentation|Any CPU.Build.0 = Debug|Any CPU 296 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Documentation|x64.ActiveCfg = Debug|Any CPU 210 297 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Release|Any CPU.ActiveCfg = Release|Any CPU 211 298 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Release|Any CPU.Build.0 = Release|Any CPU 299 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Release|x64.ActiveCfg = Release|x64 300 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.Release|x64.Build.0 = Release|x64 212 301 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 213 302 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 303 {CFEC60DC-14E0-47E4-A60E-8919FB5FEF5D}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 214 304 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 215 305 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Debug|Any CPU.Build.0 = Debug|Any CPU 306 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Debug|x64.ActiveCfg = Debug|x64 307 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Debug|x64.Build.0 = Debug|x64 216 308 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 217 309 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Documentation|Any CPU.Build.0 = Debug|Any CPU 310 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Documentation|x64.ActiveCfg = Debug|Any CPU 218 311 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Release|Any CPU.ActiveCfg = Release|Any CPU 219 312 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Release|Any CPU.Build.0 = Release|Any CPU 313 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Release|x64.ActiveCfg = Release|x64 314 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.Release|x64.Build.0 = Release|x64 220 315 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 221 316 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 317 {E8056611-E49C-4BC3-A682-A629D5CEC11C}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 222 318 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 223 319 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Debug|Any CPU.Build.0 = Debug|Any CPU 320 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Debug|x64.ActiveCfg = Debug|x64 321 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Debug|x64.Build.0 = Debug|x64 224 322 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Documentation|Any CPU.ActiveCfg = Documentation|Any CPU 225 323 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Documentation|Any CPU.Build.0 = Documentation|Any CPU 324 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Documentation|x64.ActiveCfg = Documentation|Any CPU 226 325 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Release|Any CPU.ActiveCfg = Release|Any CPU 227 326 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Release|Any CPU.Build.0 = Release|Any CPU 327 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Release|x64.ActiveCfg = Release|x64 328 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.Release|x64.Build.0 = Release|x64 228 329 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 229 330 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 331 {D6BB65FC-240E-4241-B2ED-A7FB3F13E978}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 230 332 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 231 333 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Debug|Any CPU.Build.0 = Debug|Any CPU 334 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Debug|x64.ActiveCfg = Debug|x64 335 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Debug|x64.Build.0 = Debug|x64 232 336 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Documentation|Any CPU.ActiveCfg = Documentation|Any CPU 233 337 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Documentation|Any CPU.Build.0 = Documentation|Any CPU 338 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Documentation|x64.ActiveCfg = Documentation|Any CPU 234 339 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Release|Any CPU.ActiveCfg = Release|Any CPU 235 340 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Release|Any CPU.Build.0 = Release|Any CPU 341 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Release|x64.ActiveCfg = Release|x64 342 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.Release|x64.Build.0 = Release|x64 236 343 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 237 344 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 345 {351B0A6E-2F6B-497A-844B-DCB5A502FB0D}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 238 346 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 239 347 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Debug|Any CPU.Build.0 = Debug|Any CPU 348 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Debug|x64.ActiveCfg = Debug|x64 349 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Debug|x64.Build.0 = Debug|x64 240 350 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Documentation|Any CPU.ActiveCfg = Documentation|Any CPU 241 351 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Documentation|Any CPU.Build.0 = Documentation|Any CPU 352 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Documentation|x64.ActiveCfg = Documentation|Any CPU 242 353 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Release|Any CPU.ActiveCfg = Release|Any CPU 243 354 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Release|Any CPU.Build.0 = Release|Any CPU 355 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Release|x64.ActiveCfg = Release|x64 356 {FE34CBC0-D23C-4A95-BA64-83A031814010}.Release|x64.Build.0 = Release|x64 244 357 {FE34CBC0-D23C-4A95-BA64-83A031814010}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 245 358 {FE34CBC0-D23C-4A95-BA64-83A031814010}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 359 {FE34CBC0-D23C-4A95-BA64-83A031814010}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 246 360 {5D336F48-3FB9-4382-B4B9-06974C764007}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 247 361 {5D336F48-3FB9-4382-B4B9-06974C764007}.Debug|Any CPU.Build.0 = Debug|Any CPU 362 {5D336F48-3FB9-4382-B4B9-06974C764007}.Debug|x64.ActiveCfg = Debug|x64 363 {5D336F48-3FB9-4382-B4B9-06974C764007}.Debug|x64.Build.0 = Debug|x64 248 364 {5D336F48-3FB9-4382-B4B9-06974C764007}.Documentation|Any CPU.ActiveCfg = Documentation|Any CPU 249 365 {5D336F48-3FB9-4382-B4B9-06974C764007}.Documentation|Any CPU.Build.0 = Documentation|Any CPU 366 {5D336F48-3FB9-4382-B4B9-06974C764007}.Documentation|x64.ActiveCfg = Documentation|Any CPU 250 367 {5D336F48-3FB9-4382-B4B9-06974C764007}.Release|Any CPU.ActiveCfg = Release|Any CPU 251 368 {5D336F48-3FB9-4382-B4B9-06974C764007}.Release|Any CPU.Build.0 = Release|Any CPU 369 {5D336F48-3FB9-4382-B4B9-06974C764007}.Release|x64.ActiveCfg = Release|x64 370 {5D336F48-3FB9-4382-B4B9-06974C764007}.Release|x64.Build.0 = Release|x64 252 371 {5D336F48-3FB9-4382-B4B9-06974C764007}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 253 372 {5D336F48-3FB9-4382-B4B9-06974C764007}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 373 {5D336F48-3FB9-4382-B4B9-06974C764007}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 254 374 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 255 375 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Debug|Any CPU.Build.0 = Debug|Any CPU 376 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Debug|x64.ActiveCfg = Debug|x64 377 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Debug|x64.Build.0 = Debug|x64 256 378 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Documentation|Any CPU.ActiveCfg = Documentation|Any CPU 257 379 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Documentation|Any CPU.Build.0 = Documentation|Any CPU 380 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Documentation|x64.ActiveCfg = Documentation|Any CPU 258 381 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Release|Any CPU.ActiveCfg = Release|Any CPU 259 382 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Release|Any CPU.Build.0 = Release|Any CPU 383 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Release|x64.ActiveCfg = Release|x64 384 {0AD99D97-24ED-484D-9430-9905811F8A4F}.Release|x64.Build.0 = Release|x64 260 385 {0AD99D97-24ED-484D-9430-9905811F8A4F}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 261 386 {0AD99D97-24ED-484D-9430-9905811F8A4F}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 387 {0AD99D97-24ED-484D-9430-9905811F8A4F}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 262 388 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 263 389 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Debug|Any CPU.Build.0 = Debug|Any CPU 390 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Debug|x64.ActiveCfg = Debug|x64 391 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Debug|x64.Build.0 = Debug|x64 264 392 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Documentation|Any CPU.ActiveCfg = Documentation|Any CPU 265 393 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Documentation|Any CPU.Build.0 = Documentation|Any CPU 394 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Documentation|x64.ActiveCfg = Documentation|Any CPU 266 395 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Release|Any CPU.ActiveCfg = Release|Any CPU 267 396 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Release|Any CPU.Build.0 = Release|Any CPU 397 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Release|x64.ActiveCfg = Release|x64 398 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.Release|x64.Build.0 = Release|x64 268 399 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 269 400 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 401 {A2576CE0-E492-490F-97E9-C0E7ABAFAF27}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 270 402 {2CD52982-A1C2-4A14-9D69-D64719357216}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 271 403 {2CD52982-A1C2-4A14-9D69-D64719357216}.Debug|Any CPU.Build.0 = Debug|Any CPU 404 {2CD52982-A1C2-4A14-9D69-D64719357216}.Debug|x64.ActiveCfg = Debug|x64 405 {2CD52982-A1C2-4A14-9D69-D64719357216}.Debug|x64.Build.0 = Debug|x64 272 406 {2CD52982-A1C2-4A14-9D69-D64719357216}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 273 407 {2CD52982-A1C2-4A14-9D69-D64719357216}.Documentation|Any CPU.Build.0 = Debug|Any CPU 408 {2CD52982-A1C2-4A14-9D69-D64719357216}.Documentation|x64.ActiveCfg = Debug|Any CPU 274 409 {2CD52982-A1C2-4A14-9D69-D64719357216}.Release|Any CPU.ActiveCfg = Release|Any CPU 275 410 {2CD52982-A1C2-4A14-9D69-D64719357216}.Release|Any CPU.Build.0 = Release|Any CPU 411 {2CD52982-A1C2-4A14-9D69-D64719357216}.Release|x64.ActiveCfg = Release|x64 412 {2CD52982-A1C2-4A14-9D69-D64719357216}.Release|x64.Build.0 = Release|x64 276 413 {2CD52982-A1C2-4A14-9D69-D64719357216}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 277 414 {2CD52982-A1C2-4A14-9D69-D64719357216}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 415 {2CD52982-A1C2-4A14-9D69-D64719357216}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 278 416 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 279 417 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Debug|Any CPU.Build.0 = Debug|Any CPU 418 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Debug|x64.ActiveCfg = Debug|x64 419 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Debug|x64.Build.0 = Debug|x64 280 420 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Documentation|Any CPU.ActiveCfg = Debug|Any CPU 281 421 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Documentation|Any CPU.Build.0 = Debug|Any CPU 422 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Documentation|x64.ActiveCfg = Debug|Any CPU 282 423 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Release|Any CPU.ActiveCfg = Release|Any CPU 283 424 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Release|Any CPU.Build.0 = Release|Any CPU 425 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Release|x64.ActiveCfg = Release|x64 426 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.Release|x64.Build.0 = Release|x64 284 427 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.ReleaseXBAP|Any CPU.ActiveCfg = Release|Any CPU 285 428 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.ReleaseXBAP|Any CPU.Build.0 = Release|Any CPU 429 {514A1E9D-0900-46A5-8073-F3C9CB2AAEE3}.ReleaseXBAP|x64.ActiveCfg = Release|Any CPU 286 430 EndGlobalSection 287 431 GlobalSection(SolutionProperties) = preSolution -
branches/HeuristicLab.Problems.GrammaticalOptimization/GraphVizWrapper/GraphVizWrapper.csproj
r12762 r12830 30 30 <ErrorReport>prompt</ErrorReport> 31 31 <WarningLevel>4</WarningLevel> 32 </PropertyGroup> 33 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 34 <DebugSymbols>true</DebugSymbols> 35 <OutputPath>bin\x64\Debug\</OutputPath> 36 <DefineConstants>DEBUG;TRACE</DefineConstants> 37 <DebugType>full</DebugType> 38 <PlatformTarget>x64</PlatformTarget> 39 <ErrorReport>prompt</ErrorReport> 40 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 41 </PropertyGroup> 42 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 49 <OutputPath>bin\x64\Release\</OutputPath> 32 50 </PropertyGroup> 33 51 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/HeuristicLab.Algorithms.Bandits.csproj
r11851 r12830 29 29 <ErrorReport>prompt</ErrorReport> 30 30 <WarningLevel>4</WarningLevel> 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 31 49 </PropertyGroup> 32 50 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GeneticProgramming/HeuristicLab.Algorithms.GeneticProgramming.csproj
r11981 r12830 29 29 <ErrorReport>prompt</ErrorReport> 30 30 <WarningLevel>4</WarningLevel> 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 31 49 </PropertyGroup> 32 50 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GrammaticalOptimization/HeuristicLab.Algorithms.GrammaticalOptimization.csproj
r11981 r12830 32 32 <WarningLevel>4</WarningLevel> 33 33 <Prefer32Bit>false</Prefer32Bit> 34 </PropertyGroup> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 36 <DebugSymbols>true</DebugSymbols> 37 <OutputPath>bin\x64\Debug\</OutputPath> 38 <DefineConstants>DEBUG;TRACE</DefineConstants> 39 <DebugType>full</DebugType> 40 <PlatformTarget>x64</PlatformTarget> 41 <ErrorReport>prompt</ErrorReport> 42 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 43 </PropertyGroup> 44 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 45 <OutputPath>bin\x64\Release\</OutputPath> 46 <DefineConstants>TRACE</DefineConstants> 47 <Optimize>true</Optimize> 48 <DebugType>pdbonly</DebugType> 49 <PlatformTarget>x64</PlatformTarget> 50 <ErrorReport>prompt</ErrorReport> 51 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 34 52 </PropertyGroup> 35 53 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/HeuristicLab.Algorithms.MonteCarloTreeSearch.csproj
r12781 r12830 29 29 <ErrorReport>prompt</ErrorReport> 30 30 <WarningLevel>4</WarningLevel> 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 31 49 </PropertyGroup> 32 50 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Common/HeuristicLab.Common.csproj
r11902 r12830 30 30 <WarningLevel>4</WarningLevel> 31 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 49 </PropertyGroup> 32 50 <ItemGroup> 33 51 <Reference Include="System" /> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Distributions/HeuristicLab.Distributions.csproj
r11981 r12830 29 29 <ErrorReport>prompt</ErrorReport> 30 30 <WarningLevel>4</WarningLevel> 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 31 49 </PropertyGroup> 32 50 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.Bandits/HeuristicLab.Problems.Bandits.csproj
r11981 r12830 29 29 <ErrorReport>prompt</ErrorReport> 30 30 <WarningLevel>4</WarningLevel> 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 31 49 </PropertyGroup> 32 50 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization.SymbReg/HeuristicLab.Problems.GrammaticalOptimization.SymbReg.csproj
r11981 r12830 29 29 <ErrorReport>prompt</ErrorReport> 30 30 <WarningLevel>4</WarningLevel> 31 </PropertyGroup> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 33 <DebugSymbols>true</DebugSymbols> 34 <OutputPath>bin\x64\Debug\</OutputPath> 35 <DefineConstants>DEBUG;TRACE</DefineConstants> 36 <DebugType>full</DebugType> 37 <PlatformTarget>x64</PlatformTarget> 38 <ErrorReport>prompt</ErrorReport> 39 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 40 </PropertyGroup> 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 42 <OutputPath>bin\x64\Release\</OutputPath> 43 <DefineConstants>TRACE</DefineConstants> 44 <Optimize>true</Optimize> 45 <DebugType>pdbonly</DebugType> 46 <PlatformTarget>x64</PlatformTarget> 47 <ErrorReport>prompt</ErrorReport> 48 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 31 49 </PropertyGroup> 32 50 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization.csproj
r11981 r12830 32 32 <WarningLevel>4</WarningLevel> 33 33 <Prefer32Bit>false</Prefer32Bit> 34 </PropertyGroup> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 36 <DebugSymbols>true</DebugSymbols> 37 <OutputPath>bin\x64\Debug\</OutputPath> 38 <DefineConstants>DEBUG;TRACE</DefineConstants> 39 <DebugType>full</DebugType> 40 <PlatformTarget>x64</PlatformTarget> 41 <ErrorReport>prompt</ErrorReport> 42 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 43 </PropertyGroup> 44 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 45 <OutputPath>bin\x64\Release\</OutputPath> 46 <DefineConstants>TRACE</DefineConstants> 47 <Optimize>true</Optimize> 48 <DebugType>pdbonly</DebugType> 49 <PlatformTarget>x64</PlatformTarget> 50 <ErrorReport>prompt</ErrorReport> 51 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 34 52 </PropertyGroup> 35 53 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/Main/Main.csproj
r12098 r12830 34 34 <WarningLevel>4</WarningLevel> 35 35 <Prefer32Bit>false</Prefer32Bit> 36 </PropertyGroup> 37 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 38 <DebugSymbols>true</DebugSymbols> 39 <OutputPath>bin\x64\Debug\</OutputPath> 40 <DefineConstants>DEBUG;TRACE</DefineConstants> 41 <DebugType>full</DebugType> 42 <PlatformTarget>x64</PlatformTarget> 43 <ErrorReport>prompt</ErrorReport> 44 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 45 </PropertyGroup> 46 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 47 <OutputPath>bin\x64\Release\</OutputPath> 48 <DefineConstants>TRACE</DefineConstants> 49 <Optimize>true</Optimize> 50 <DebugType>pdbonly</DebugType> 51 <PlatformTarget>x64</PlatformTarget> 52 <ErrorReport>prompt</ErrorReport> 53 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 36 54 </PropertyGroup> 37 55 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorConverters/SharpVectors.Converters.csproj
r12762 r12830 43 43 <ErrorReport>prompt</ErrorReport> 44 44 <WarningLevel>4</WarningLevel> 45 </PropertyGroup> 46 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 47 <DebugSymbols>true</DebugSymbols> 48 <OutputPath>bin\x64\Debug\</OutputPath> 49 <DefineConstants>DEBUG;TRACE</DefineConstants> 50 <DebugType>full</DebugType> 51 <PlatformTarget>x64</PlatformTarget> 52 <ErrorReport>prompt</ErrorReport> 53 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 54 </PropertyGroup> 55 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 56 <OutputPath>bin\x64\Release\</OutputPath> 57 <DefineConstants>TRACE</DefineConstants> 58 <Optimize>true</Optimize> 59 <DebugType>pdbonly</DebugType> 60 <PlatformTarget>x64</PlatformTarget> 61 <ErrorReport>prompt</ErrorReport> 62 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 45 63 </PropertyGroup> 46 64 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/SharpVectors.Core.csproj
r12762 r12830 118 118 <ErrorReport>prompt</ErrorReport> 119 119 </PropertyGroup> 120 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 121 <DebugSymbols>true</DebugSymbols> 122 <OutputPath>bin\x64\Debug\</OutputPath> 123 <DefineConstants>TRACE;DEBUG</DefineConstants> 124 <BaseAddress>285212672</BaseAddress> 125 <FileAlignment>4096</FileAlignment> 126 <DebugType>full</DebugType> 127 <PlatformTarget>x64</PlatformTarget> 128 <ErrorReport>prompt</ErrorReport> 129 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 130 </PropertyGroup> 131 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 132 <OutputPath>bin\x64\Release\</OutputPath> 133 <DefineConstants>TRACE</DefineConstants> 134 <BaseAddress>285212672</BaseAddress> 135 <Optimize>true</Optimize> 136 <FileAlignment>4096</FileAlignment> 137 <PlatformTarget>x64</PlatformTarget> 138 <ErrorReport>prompt</ErrorReport> 139 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 140 </PropertyGroup> 141 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|x64'"> 142 <DebugSymbols>true</DebugSymbols> 143 <OutputPath>bin\x64\Documentation\</OutputPath> 144 <DefineConstants>TRACE</DefineConstants> 145 <BaseAddress>285212672</BaseAddress> 146 <DocumentationFile>..\..\Output\SharpVectors.Core.xml</DocumentationFile> 147 <WarningLevel>1</WarningLevel> 148 <FileAlignment>4096</FileAlignment> 149 <DebugType>full</DebugType> 150 <PlatformTarget>x64</PlatformTarget> 151 <ErrorReport>prompt</ErrorReport> 152 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 153 </PropertyGroup> 120 154 <ItemGroup> 121 155 <Reference Include="System"> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCss/SharpVectors.Css.csproj
r12762 r12830 118 118 <ErrorReport>prompt</ErrorReport> 119 119 </PropertyGroup> 120 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 121 <DebugSymbols>true</DebugSymbols> 122 <OutputPath>bin\x64\Debug\</OutputPath> 123 <DefineConstants>TRACE;DEBUG</DefineConstants> 124 <BaseAddress>285212672</BaseAddress> 125 <FileAlignment>4096</FileAlignment> 126 <DebugType>full</DebugType> 127 <PlatformTarget>x64</PlatformTarget> 128 <ErrorReport>prompt</ErrorReport> 129 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 130 </PropertyGroup> 131 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 132 <OutputPath>bin\x64\Release\</OutputPath> 133 <DefineConstants>TRACE</DefineConstants> 134 <BaseAddress>285212672</BaseAddress> 135 <Optimize>true</Optimize> 136 <FileAlignment>4096</FileAlignment> 137 <PlatformTarget>x64</PlatformTarget> 138 <ErrorReport>prompt</ErrorReport> 139 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 140 </PropertyGroup> 141 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|x64'"> 142 <OutputPath>bin\x64\Documentation\</OutputPath> 143 <DefineConstants>TRACE</DefineConstants> 144 <BaseAddress>285212672</BaseAddress> 145 <DocumentationFile>..\..\Output\SharpVectors.Css.xml</DocumentationFile> 146 <Optimize>true</Optimize> 147 <FileAlignment>4096</FileAlignment> 148 <PlatformTarget>x64</PlatformTarget> 149 <ErrorReport>prompt</ErrorReport> 150 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 151 </PropertyGroup> 120 152 <ItemGroup> 121 153 <Reference Include="System"> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorDom/SharpVectors.Dom.csproj
r12762 r12830 118 118 <ErrorReport>prompt</ErrorReport> 119 119 </PropertyGroup> 120 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 121 <DebugSymbols>true</DebugSymbols> 122 <OutputPath>bin\x64\Debug\</OutputPath> 123 <DefineConstants>TRACE;DEBUG</DefineConstants> 124 <BaseAddress>285212672</BaseAddress> 125 <FileAlignment>4096</FileAlignment> 126 <DebugType>full</DebugType> 127 <PlatformTarget>x64</PlatformTarget> 128 <ErrorReport>prompt</ErrorReport> 129 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 130 </PropertyGroup> 131 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 132 <OutputPath>bin\x64\Release\</OutputPath> 133 <DefineConstants>TRACE</DefineConstants> 134 <BaseAddress>285212672</BaseAddress> 135 <Optimize>true</Optimize> 136 <FileAlignment>4096</FileAlignment> 137 <PlatformTarget>x64</PlatformTarget> 138 <ErrorReport>prompt</ErrorReport> 139 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 140 </PropertyGroup> 141 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|x64'"> 142 <OutputPath>bin\x64\Documentation\</OutputPath> 143 <DefineConstants>TRACE</DefineConstants> 144 <BaseAddress>285212672</BaseAddress> 145 <DocumentationFile>..\..\Output\SharpVectors.Dom.xml</DocumentationFile> 146 <Optimize>true</Optimize> 147 <FileAlignment>4096</FileAlignment> 148 <PlatformTarget>x64</PlatformTarget> 149 <ErrorReport>prompt</ErrorReport> 150 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 151 </PropertyGroup> 120 152 <ItemGroup> 121 153 <Reference Include="System"> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/SharpVectors.Model.csproj
r12762 r12830 118 118 <ErrorReport>prompt</ErrorReport> 119 119 </PropertyGroup> 120 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 121 <DebugSymbols>true</DebugSymbols> 122 <OutputPath>bin\x64\Debug\</OutputPath> 123 <DefineConstants>TRACE;DEBUG</DefineConstants> 124 <BaseAddress>285212672</BaseAddress> 125 <FileAlignment>4096</FileAlignment> 126 <DebugType>full</DebugType> 127 <PlatformTarget>x64</PlatformTarget> 128 <ErrorReport>prompt</ErrorReport> 129 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 130 </PropertyGroup> 131 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 132 <OutputPath>bin\x64\Release\</OutputPath> 133 <DefineConstants>TRACE;TEST</DefineConstants> 134 <BaseAddress>285212672</BaseAddress> 135 <Optimize>true</Optimize> 136 <FileAlignment>4096</FileAlignment> 137 <PlatformTarget>x64</PlatformTarget> 138 <ErrorReport>prompt</ErrorReport> 139 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 140 </PropertyGroup> 141 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|x64'"> 142 <OutputPath>bin\x64\Documentation\</OutputPath> 143 <DefineConstants>TRACE</DefineConstants> 144 <BaseAddress>285212672</BaseAddress> 145 <DocumentationFile>..\..\Output\SharpVectors.Model.xml</DocumentationFile> 146 <Optimize>true</Optimize> 147 <FileAlignment>4096</FileAlignment> 148 <PlatformTarget>x64</PlatformTarget> 149 <ErrorReport>prompt</ErrorReport> 150 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 151 </PropertyGroup> 120 152 <ItemGroup> 121 153 <Reference Include="System"> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRenderingGdi/SharpVectors.Rendering.Gdi.csproj
r12762 r12830 118 118 <ErrorReport>prompt</ErrorReport> 119 119 </PropertyGroup> 120 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 121 <DebugSymbols>true</DebugSymbols> 122 <OutputPath>bin\x64\Debug\</OutputPath> 123 <DefineConstants>TRACE;DEBUG</DefineConstants> 124 <BaseAddress>285212672</BaseAddress> 125 <FileAlignment>4096</FileAlignment> 126 <DebugType>full</DebugType> 127 <PlatformTarget>x64</PlatformTarget> 128 <ErrorReport>prompt</ErrorReport> 129 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 130 </PropertyGroup> 131 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 132 <OutputPath>bin\x64\Release\</OutputPath> 133 <DefineConstants>TRACE</DefineConstants> 134 <BaseAddress>285212672</BaseAddress> 135 <Optimize>true</Optimize> 136 <FileAlignment>4096</FileAlignment> 137 <PlatformTarget>x64</PlatformTarget> 138 <ErrorReport>prompt</ErrorReport> 139 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 140 </PropertyGroup> 141 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|x64'"> 142 <OutputPath>bin\x64\Documentation\</OutputPath> 143 <DefineConstants>TRACE</DefineConstants> 144 <BaseAddress>285212672</BaseAddress> 145 <DocumentationFile>..\..\Output\SharpVectors.Rendering.Gdi.xml</DocumentationFile> 146 <Optimize>true</Optimize> 147 <FileAlignment>4096</FileAlignment> 148 <PlatformTarget>x64</PlatformTarget> 149 <ErrorReport>prompt</ErrorReport> 150 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 151 </PropertyGroup> 120 152 <ItemGroup> 121 153 <Reference Include="System"> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRenderingWpf/SharpVectors.Rendering.Wpf.csproj
r12762 r12830 54 54 <ErrorReport>prompt</ErrorReport> 55 55 <DocumentationFile>..\..\Output\SharpVectors.Rendering.Wpf.xml</DocumentationFile> 56 </PropertyGroup> 57 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 58 <DebugSymbols>true</DebugSymbols> 59 <OutputPath>bin\x64\Debug\</OutputPath> 60 <DefineConstants>DEBUG;TRACE</DefineConstants> 61 <DebugType>full</DebugType> 62 <PlatformTarget>x64</PlatformTarget> 63 <ErrorReport>prompt</ErrorReport> 64 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 65 </PropertyGroup> 66 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 67 <OutputPath>bin\x64\Release\</OutputPath> 68 <DefineConstants>TRACE</DefineConstants> 69 <Optimize>true</Optimize> 70 <DebugType>pdbonly</DebugType> 71 <PlatformTarget>x64</PlatformTarget> 72 <ErrorReport>prompt</ErrorReport> 73 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 74 </PropertyGroup> 75 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Documentation|x64'"> 76 <OutputPath>bin\x64\Documentation\</OutputPath> 77 <DefineConstants>TRACE</DefineConstants> 78 <DocumentationFile>..\..\Output\SharpVectors.Rendering.Wpf.xml</DocumentationFile> 79 <Optimize>true</Optimize> 80 <DebugType>pdbonly</DebugType> 81 <PlatformTarget>x64</PlatformTarget> 82 <ErrorReport>prompt</ErrorReport> 83 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 56 84 </PropertyGroup> 57 85 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRuntime/SharpVectors.Runtime.csproj
r12762 r12830 43 43 <ErrorReport>prompt</ErrorReport> 44 44 <WarningLevel>4</WarningLevel> 45 </PropertyGroup> 46 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 47 <DebugSymbols>true</DebugSymbols> 48 <OutputPath>bin\x64\Debug\</OutputPath> 49 <DefineConstants>DEBUG;TRACE</DefineConstants> 50 <DebugType>full</DebugType> 51 <PlatformTarget>x64</PlatformTarget> 52 <ErrorReport>prompt</ErrorReport> 53 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 54 </PropertyGroup> 55 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 56 <OutputPath>bin\x64\Release\</OutputPath> 57 <DefineConstants>TRACE</DefineConstants> 58 <Optimize>true</Optimize> 59 <DebugType>pdbonly</DebugType> 60 <PlatformTarget>x64</PlatformTarget> 61 <ErrorReport>prompt</ErrorReport> 62 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 45 63 </PropertyGroup> 46 64 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/Test/Test.csproj
r12289 r12830 37 37 <WarningLevel>4</WarningLevel> 38 38 <Prefer32Bit>false</Prefer32Bit> 39 </PropertyGroup> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 41 <DebugSymbols>true</DebugSymbols> 42 <OutputPath>bin\x64\Debug\</OutputPath> 43 <DefineConstants>DEBUG;TRACE</DefineConstants> 44 <DebugType>full</DebugType> 45 <PlatformTarget>x64</PlatformTarget> 46 <ErrorReport>prompt</ErrorReport> 47 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 48 </PropertyGroup> 49 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 50 <OutputPath>bin\x64\Release\</OutputPath> 51 <DefineConstants>TRACE</DefineConstants> 52 <Optimize>true</Optimize> 53 <DebugType>pdbonly</DebugType> 54 <PlatformTarget>x64</PlatformTarget> 55 <ErrorReport>prompt</ErrorReport> 56 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 39 57 </PropertyGroup> 40 58 <ItemGroup> -
branches/HeuristicLab.Problems.GrammaticalOptimization/WpfTestSvgSample/WpfTestSvgSample.csproj
r12762 r12830 45 45 <WarningLevel>4</WarningLevel> 46 46 </PropertyGroup> 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 48 <DebugSymbols>true</DebugSymbols> 49 <OutputPath>bin\x64\Debug\</OutputPath> 50 <DefineConstants>DEBUG;TRACE</DefineConstants> 51 <DebugType>full</DebugType> 52 <PlatformTarget>x64</PlatformTarget> 53 <ErrorReport>prompt</ErrorReport> 54 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 55 </PropertyGroup> 56 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 57 <OutputPath>bin\x64\Release\</OutputPath> 58 <DefineConstants>TRACE</DefineConstants> 59 <Optimize>true</Optimize> 60 <DebugType>pdbonly</DebugType> 61 <PlatformTarget>x64</PlatformTarget> 62 <ErrorReport>prompt</ErrorReport> 63 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 64 </PropertyGroup> 47 65 <ItemGroup> 48 66 <Reference Include="Accessibility" />
Note: See TracChangeset
for help on using the changeset viewer.