Skip to content

Commit 00021b6

Browse files
PielgrinIvanidzo4ka
authored andcommitted
Delete EnableDefaultCompileItems conditions (#1353)
1 parent 69a549e commit 00021b6

File tree

1 file changed

+0
-83
lines changed

1 file changed

+0
-83
lines changed

src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj

-83
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<IncludeInPackage>Microsoft.ML</IncludeInPackage>
66
<DefineConstants>$(DefineConstants);USE_FASTTREENATIVE;NO_STORE;CORECLR</DefineConstants>
7-
<EnableDefaultCompileItems>False</EnableDefaultCompileItems>
87
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
98
</PropertyGroup>
109

@@ -13,87 +12,5 @@
1312
<ProjectReference Include="..\Microsoft.ML.CpuMath\Microsoft.ML.CpuMath.csproj" />
1413
<ProjectReference Include="..\Microsoft.ML.Data\Microsoft.ML.Data.csproj" />
1514
</ItemGroup>
16-
17-
<ItemGroup>
18-
<Compile Include="BoostingFastTree.cs" />
19-
<Compile Include="Dataset\DatasetUtils.cs" />
20-
<Compile Include="Dataset\FeatureFlock.cs" />
21-
<Compile Include="Dataset\NHotFeatureFlock.cs" />
22-
<Compile Include="Dataset\OneHotFeatureFlock.cs" />
23-
<Compile Include="Dataset\SingletonFeatureFlock.cs" />
24-
<Compile Include="FastTreeArguments.cs" />
25-
<Compile Include="FastTreeClassification.cs" />
26-
<Compile Include="FastTreeRanking.cs" />
27-
<Compile Include="FastTreeRegression.cs" />
28-
<Compile Include="FastTree.cs" />
29-
<Compile Include="FastTreeCatalog.cs" />
30-
<Compile Include="FastTreeStatic.cs" />
31-
<Compile Include="FastTreeTweedie.cs" />
32-
<Compile Include="GamClassification.cs" />
33-
<Compile Include="GamRegression.cs" />
34-
<Compile Include="GamTrainer.cs" />
35-
<Compile Include="RandomForest.cs" />
36-
<Compile Include="RandomForestRegression.cs" />
37-
<Compile Include="QuantileStatistics.cs" />
38-
<Compile Include="RandomForestClassification.cs" />
39-
<Compile Include="SumupPerformanceCommand.cs" />
40-
<Compile Include="Training\Parallel\IParallelTraining.cs" />
41-
<Compile Include="Training\Parallel\SingleTrainer.cs" />
42-
<Compile Include="TreeEnsembleFeaturizer.cs" />
43-
<Compile Include="Utils\Algorithms.cs" />
44-
<Compile Include="Utils\BlockingThreadPool.cs" />
45-
<Compile Include="Utils\BufferPoolManager.cs" />
46-
<Compile Include="Utils\CompressUtils.cs" />
47-
<Compile Include="Utils\LinqExtensions.cs" />
48-
<Compile Include="Utils\MappedObjectPool.cs" />
49-
<Compile Include="Utils\MD5Hasher.cs" />
50-
<Compile Include="Utils\PseudorandomFunction.cs" />
51-
<Compile Include="Utils\StreamExtensions.cs" />
52-
<Compile Include="Utils\ThreadTaskManager.cs" />
53-
<Compile Include="Utils\Timer.cs" />
54-
<Compile Include="Utils\ToByteArrayExtensions.cs" />
55-
<Compile Include="Utils\VectorUtils.cs" />
56-
<Compile Include="Application\DominationLossApplication.cs" />
57-
<Compile Include="Application\LogLossApplication.cs" />
58-
<Compile Include="Application\SizeAdjustedLogLossApplication.cs" />
59-
<Compile Include="Application\WinLossSurplusApplication.cs" />
60-
<Compile Include="TreeEnsemble\Ensemble.cs" />
61-
<Compile Include="TreeEnsemble\QuantileRegressionTree.cs" />
62-
<Compile Include="TreeEnsemble\RegressionTree.cs" />
63-
<Compile Include="TreeEnsemble\TreeEnsembleCombiner.cs" />
64-
<Compile Include="Training\Applications\GradientWrappers.cs" />
65-
<Compile Include="Training\Applications\ObjectiveFunction.cs" />
66-
<Compile Include="Training\BaggingProvider.cs" />
67-
<Compile Include="Training\DcgCalculator.cs" />
68-
<Compile Include="Training\DcgPermutationComparer.cs" />
69-
<Compile Include="Training\DocumentPartitioning.cs" />
70-
<Compile Include="Training\EnsembleCompression\IEnsembleCompressor.cs" />
71-
<Compile Include="Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs" />
72-
<Compile Include="Training\EnsembleCompression\LassoFit.cs" />
73-
<Compile Include="Training\OptimizationAlgorithms\AcceleratedGradientDescent.cs" />
74-
<Compile Include="Training\OptimizationAlgorithms\ConjugateGradientDescent.cs" />
75-
<Compile Include="Training\OptimizationAlgorithms\GradientDescent.cs" />
76-
<Compile Include="Training\OptimizationAlgorithms\OptimizationAlgorithm.cs" />
77-
<Compile Include="Training\OptimizationAlgorithms\NoOptimizationAlgorithm.cs" />
78-
<Compile Include="Training\RegressionTreeNodeDocuments.cs" />
79-
<Compile Include="Training\ScoreTracker.cs" />
80-
<Compile Include="Training\StepSearch.cs" />
81-
<Compile Include="Training\Test.cs" />
82-
<Compile Include="Training\TreeLearners\FastForestLeastSquaresTreeLearner.cs" />
83-
<Compile Include="Training\TreeLearners\LeastSquaresRegressionTreeLearner.cs" />
84-
<Compile Include="Training\TreeLearners\TreeLearner.cs" />
85-
<Compile Include="Training\WinLossCalculator.cs" />
86-
<Compile Include="Dataset\Dataset.cs" />
87-
<Compile Include="Dataset\DenseIntArray.cs" />
88-
<Compile Include="Dataset\Feature.cs" />
89-
<Compile Include="Dataset\FeatureHistogram.cs" />
90-
<Compile Include="Dataset\FileObjectStore.cs" />
91-
<Compile Include="Dataset\IntArray.cs" />
92-
<Compile Include="Dataset\RepeatIntArray.cs" />
93-
<Compile Include="Dataset\SegmentIntArray.cs" />
94-
<Compile Include="Dataset\SparseIntArray.cs" />
95-
<Compile Include="BinFile\BinFinder.cs" />
96-
<Compile Include="BinFile\IniFileParserInterface.cs" />
97-
</ItemGroup>
9815

9916
</Project>

0 commit comments

Comments
 (0)