Skip to content

Commit 55d6fee

Browse files
committed
Move "analyzers" folder to "tools-local"
1 parent 0eb4e8c commit 55d6fee

22 files changed

+7
-7
lines changed

Microsoft.ML.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.LightGBM", "sr
8282
EndProject
8383
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.Ensemble", "src\Microsoft.ML.Ensemble\Microsoft.ML.Ensemble.csproj", "{DCF46B79-1FDB-4DBA-A263-D3D64E3AAA27}"
8484
EndProject
85-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "analyzer", "analyzer", "{7F13E156-3EBA-4021-84A5-CD56BA72F99E}"
85+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools-local", "tools-local", "{7F13E156-3EBA-4021-84A5-CD56BA72F99E}"
8686
EndProject
87-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.CodeAnalyzer", "analyzer\Microsoft.ML.CodeAnalyzer\Microsoft.ML.CodeAnalyzer.csproj", "{B4E55B2D-2A92-46E7-B72F-E76D6FD83440}"
87+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.CodeAnalyzer", "tools-local\Microsoft.ML.CodeAnalyzer\Microsoft.ML.CodeAnalyzer.csproj", "{B4E55B2D-2A92-46E7-B72F-E76D6FD83440}"
8888
EndProject
8989
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.ML.CodeAnalyzer.Tests", "test\Microsoft.ML.CodeAnalyzer.Tests\Microsoft.ML.CodeAnalyzer.Tests.csproj", "{3E4ABF07-7970-4BE6-B45B-A13D3C397545}"
9090
EndProject

src/Microsoft.ML.Core/Data/ColumnType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ public static NumberType Float
496496
get { return R4; }
497497
}
498498

499-
public new static NumberType FromKind(DataKind kind)
499+
new public static NumberType FromKind(DataKind kind)
500500
{
501501
switch (kind)
502502
{
@@ -908,7 +908,7 @@ public int GetDim(int idim)
908908
return _dims[idim];
909909
}
910910

911-
public new PrimitiveType ItemType { get { return _itemType; } }
911+
new public PrimitiveType ItemType { get { return _itemType; } }
912912

913913
internal override ColumnType ItemTypeCore { get { return _itemType; } }
914914

src/Microsoft.ML.Core/Environment/HostEnvironmentBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public void StopExecution()
151151
}
152152
}
153153

154-
public new IHost Register(string name, int? seed = null, bool? verbose = null, int? conc = null)
154+
new public IHost Register(string name, int? seed = null, bool? verbose = null, int? conc = null)
155155
{
156156
Contracts.CheckNonEmpty(name, nameof(name));
157157
IHost host;

src/Microsoft.ML.Core/Microsoft.ML.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<ItemGroup>
1515
<!-- Once we validate this, we ought to move this to one of the higher level directory files. -->
16-
<ProjectReference Include="..\..\analyzer\Microsoft.ML.CodeAnalyzer\Microsoft.ML.CodeAnalyzer.csproj">
16+
<ProjectReference Include="..\..\tools-local\Microsoft.ML.CodeAnalyzer\Microsoft.ML.CodeAnalyzer.csproj">
1717
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
1818
<OutputItemType>Analyzer</OutputItemType>
1919
</ProjectReference>

test/Microsoft.ML.CodeAnalyzer.Tests/Microsoft.ML.CodeAnalyzer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\..\analyzer\Microsoft.ML.CodeAnalyzer\Microsoft.ML.CodeAnalyzer.csproj" />
15+
<ProjectReference Include="..\..\tools-local\Microsoft.ML.CodeAnalyzer\Microsoft.ML.CodeAnalyzer.csproj" />
1616
<ProjectReference Include="..\..\src\Microsoft.ML.Core\Microsoft.ML.Core.csproj" />
1717
<ProjectReference Include="..\..\src\Microsoft.ML.Data\Microsoft.ML.Data.csproj" />
1818
<ProjectReference Include="..\Microsoft.ML.TestFramework\Microsoft.ML.TestFramework.csproj" />

0 commit comments

Comments
 (0)