Skip to content

Commit

Permalink
force a specific ml.net nuget version, fix typo (#3616)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry-A authored Apr 29, 2019
1 parent ed43327 commit 2c1cdc1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlnet/Telemetry/MlTelemetry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private void CheckFistTimeUse()
Telemetry
---------
The ML.NET CLI tool collect usage data in order to help us improve your experience.
The ML.NET CLI tool collects usage data in order to help us improve your experience.
The data is anonymous and doesn't include personal information or data from your datasets.
You can opt-out of telemetry by setting the MLDOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
Expand Down
10 changes: 10 additions & 0 deletions src/mlnet/mlnet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
<ProjectReference Include="..\Microsoft.ML.AutoML\Microsoft.ML.AutoML.csproj" />
</ItemGroup>

<PropertyGroup>
<MlDotNetPackageVersion>1.0.0-preview-27625-16</MlDotNetPackageVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="$(MlDotNetPackageVersion)" />
<PackageReference Include="Microsoft.ML.LightGBM" Version="$(MlDotNetPackageVersion)" />
<PackageReference Include="Microsoft.ML.Mkl.Components" Version="$(MlDotNetPackageVersion)" />
</ItemGroup>

<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
Expand Down

0 comments on commit 2c1cdc1

Please sign in to comment.