Skip to content

Commit bc31bb5

Browse files
committed
Nuget package updates:
- Removed ResultProcessor and Maml from Microsoft.ML nuget. These are currently not in a nuget package - Moved Sweeper from Microsoft.ML to Microsoft.ML.Sweep. - Updated nuget references as there were some other non-related errors for ONNX Transformer. This fixes #689
1 parent 412e1f9 commit bc31bb5

File tree

9 files changed

+23
-8
lines changed

9 files changed

+23
-8
lines changed

pkg/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.nupkgproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\Microsoft.ML.OnnxTransform\Microsoft.ML.OnnxTransform.nupkgproj" />
9+
<ProjectReference Include="..\Microsoft.ML.OnnxTransformer\Microsoft.ML.OnnxTransformer.nupkgproj" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

pkg/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.nupkgproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\Microsoft.ML.OnnxTransform\Microsoft.ML.OnnxTransform.nupkgproj" />
9+
<ProjectReference Include="..\Microsoft.ML.OnnxTransformer\Microsoft.ML.OnnxTransformer.nupkgproj" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

pkg/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.nupkgproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\Microsoft.ML.OnnxTransform\Microsoft.ML.OnnxTransform.nupkgproj" />
9+
<ProjectReference Include="..\Microsoft.ML.OnnxTransformer\Microsoft.ML.OnnxTransformer.nupkgproj" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

pkg/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.nupkgproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\Microsoft.ML.OnnxTransform\Microsoft.ML.OnnxTransform.nupkgproj" />
9+
<ProjectReference Include="..\Microsoft.ML.OnnxTransformer\Microsoft.ML.OnnxTransformer.nupkgproj" />
1010
</ItemGroup>
1111

1212
<ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="Pack">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<PackageDescription>ML.NET components for sweeping support.</PackageDescription>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<ProjectReference Include="../Microsoft.ML/Microsoft.ML.nupkgproj" />
10+
</ItemGroup>
11+
12+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project DefaultTargets="Pack">
2+
3+
<Import Project="Microsoft.ML.Sweep.nupkgproj" />
4+
5+
</Project>

src/Microsoft.ML.Maml/Microsoft.ML.Maml.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
<PropertyGroup>
44
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
55
<DefineConstants>CORECLR</DefineConstants>
6-
<IncludeInPackage>Microsoft.ML</IncludeInPackage>
76
<TargetFramework>netstandard2.0</TargetFramework>
87
</PropertyGroup>
98

109
<ItemGroup>
1110
<ProjectReference Include="..\Microsoft.ML.Core\Microsoft.ML.Core.csproj" />
1211
</ItemGroup>
1312

14-
</Project>
13+
</Project>

src/Microsoft.ML.ResultProcessor/Microsoft.ML.ResultProcessor.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<IncludeInPackage>Microsoft.ML</IncludeInPackage>
65
<DefineConstants>CORECLR</DefineConstants>
76
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
87
</PropertyGroup>

src/Microsoft.ML.Sweeper/Microsoft.ML.Sweeper.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<IncludeInPackage>Microsoft.ML</IncludeInPackage>
5+
<IncludeInPackage>Microsoft.ML.Sweep</IncludeInPackage>
66
<DefineConstants>CORECLR</DefineConstants>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
88
</PropertyGroup>

0 commit comments

Comments
 (0)