Skip to content

Commit

Permalink
force a specific ml.net nuget version, fix typo (dotnet#3616)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry-A committed Aug 22, 2019
1 parent 8e69d11 commit 56e4da8
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 56e4da8

Please sign in to comment.