From 0266bf785b502ed95fe62404b102edca3b2fddf1 Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Fri, 4 Dec 2020 23:59:26 +0000 Subject: [PATCH 1/7] fix warnings --- build/vsts-ci.yml | 14 +++++++------- src/Directory.Build.targets | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build/vsts-ci.yml b/build/vsts-ci.yml index 29ea7d5035..dd2b8df16c 100644 --- a/build/vsts-ci.yml +++ b/build/vsts-ci.yml @@ -25,10 +25,10 @@ phases: steps: - script: ./restore.sh displayName: restore all projects - - script: ./build.sh -configuration $(BuildConfig) /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj + - script: ./build.sh -configuration $(BuildConfig) /p:PreparePackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj displayName: build redist # Only build native assets to avoid conflicts. - - script: ./build.sh -configuration $(BuildConfig) -projects $(Build.SourcesDirectory)/src/Native/Native.proj /p:TargetArchitecture=x64 + - script: ./build.sh -configuration $(BuildConfig) -projects $(Build.SourcesDirectory)/src/Native/Native.proj /p:TargetArchitecture=x64 /p:PreparePackageAssets=true displayName: Build - task: PublishBuildArtifacts@1 @@ -60,10 +60,10 @@ phases: displayName: Install build dependencies - script: ./restore.sh displayName: restore all projects - - script: ./build.sh -configuration $(BuildConfig) /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj + - script: ./build.sh -configuration $(BuildConfig) /p:PreparePackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj displayName: build redist # Only build native assets to avoid conflicts. - - script: ./build.sh -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x64 + - script: ./build.sh -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:PreparePackageAssets=true displayName: Build - task: PublishBuildArtifacts@1 @@ -104,10 +104,10 @@ phases: - script: ./restore.cmd displayName: restore all projects - - script: ./build.cmd -configuration $(BuildConfig) /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj + - script: ./build.cmd -configuration $(BuildConfig) /p:PreparePackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj displayName: build redist # Only build native assets to avoid conflicts. - - script: ./build.cmd -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x86 + - script: ./build.cmd -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x86 /p:PreparePackageAssets=true displayName: Build - script: ./sign.cmd -configuration $(BuildConfig) /p:TargetArchitecture=x86 /p:SignBinaries=true @@ -154,7 +154,7 @@ phases: condition: and(succeeded(), in(variables._SignType, 'real', 'test')) # Build both native and managed assets. - - script: ./build.cmd -configuration $(BuildConfig) /p:TargetArchitecture=x64 + - script: ./build.cmd -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:PreparePackageAssets=true displayName: Build - task: ComponentGovernanceComponentDetection@0 diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index 28c54362df..f9cfd0fe53 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets @@ -2,7 +2,7 @@ - From 4269a13598e8cb50c3d1cef41e4adb8b36f7ffa3 Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Sat, 5 Dec 2020 01:01:38 +0000 Subject: [PATCH 2/7] also add conditional copy asset to native.proj --- src/Native/Native.proj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Native/Native.proj b/src/Native/Native.proj index 46d6006eb2..3b2c747c7b 100644 --- a/src/Native/Native.proj +++ b/src/Native/Native.proj @@ -77,7 +77,7 @@ - + From 1cbf81194357307531c34339556d16f3a5facd38 Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Mon, 7 Dec 2020 23:08:12 +0000 Subject: [PATCH 3/7] test fix warnings --- build/ci/job-template.yml | 10 ---------- build/vsts-ci.yml | 14 +++++++------- eng/pkg/Pack.props | 4 ++-- src/Directory.Build.targets | 4 +++- src/Native/Native.proj | 2 +- 5 files changed, 13 insertions(+), 21 deletions(-) diff --git a/build/ci/job-template.yml b/build/ci/job-template.yml index 5a0dd8a4ee..1edda1c3c6 100644 --- a/build/ci/job-template.yml +++ b/build/ci/job-template.yml @@ -148,16 +148,6 @@ jobs: - script: $(dotnetPath) msbuild -restore build/Codecoverage.proj displayName: Upload coverage to codecov.io condition: and(succeeded(), eq(${{ parameters.codeCoverage }}, True)) - - task: PublishTestResults@2 - displayName: Publish Test Results - condition: succeededOrFailed() - inputs: - testRunner: 'vSTest' - searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults' - testResultsFiles: '**/*.trx' - testRunTitle: Machinelearning_Tests_${{ parameters.name }}_$(_configuration)_$(Build.BuildNumber) - configuration: $(_configuration) - mergeTestResults: true - task: CopyFiles@2 displayName: Stage build logs condition: not(succeeded()) diff --git a/build/vsts-ci.yml b/build/vsts-ci.yml index dd2b8df16c..e9161b7d6c 100644 --- a/build/vsts-ci.yml +++ b/build/vsts-ci.yml @@ -25,10 +25,10 @@ phases: steps: - script: ./restore.sh displayName: restore all projects - - script: ./build.sh -configuration $(BuildConfig) /p:PreparePackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj + - script: ./build.sh -configuration $(BuildConfig) /p:CopyPackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj displayName: build redist # Only build native assets to avoid conflicts. - - script: ./build.sh -configuration $(BuildConfig) -projects $(Build.SourcesDirectory)/src/Native/Native.proj /p:TargetArchitecture=x64 /p:PreparePackageAssets=true + - script: ./build.sh -configuration $(BuildConfig) -projects $(Build.SourcesDirectory)/src/Native/Native.proj /p:TargetArchitecture=x64 /p:CopyPackageAssets=true displayName: Build - task: PublishBuildArtifacts@1 @@ -60,10 +60,10 @@ phases: displayName: Install build dependencies - script: ./restore.sh displayName: restore all projects - - script: ./build.sh -configuration $(BuildConfig) /p:PreparePackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj + - script: ./build.sh -configuration $(BuildConfig) /p:CopyPackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj displayName: build redist # Only build native assets to avoid conflicts. - - script: ./build.sh -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:PreparePackageAssets=true + - script: ./build.sh -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:CopyPackageAssets=true displayName: Build - task: PublishBuildArtifacts@1 @@ -104,10 +104,10 @@ phases: - script: ./restore.cmd displayName: restore all projects - - script: ./build.cmd -configuration $(BuildConfig) /p:PreparePackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj + - script: ./build.cmd -configuration $(BuildConfig) /p:CopyPackageAssets=true /p:SkipRIDAgnosticAssets=true -projects $(Build.SourcesDirectory)/src/Redist/Microsoft.ML.DnnImageFeaturizer.ModelRedist/Microsoft.ML.DnnImageFeaturizer.ModelRedist.proj displayName: build redist # Only build native assets to avoid conflicts. - - script: ./build.cmd -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x86 /p:PreparePackageAssets=true + - script: ./build.cmd -projects $(Build.SourcesDirectory)/src/Native/Native.proj -configuration $(BuildConfig) /p:TargetArchitecture=x86 /p:CopyPackageAssets=true displayName: Build - script: ./sign.cmd -configuration $(BuildConfig) /p:TargetArchitecture=x86 /p:SignBinaries=true @@ -154,7 +154,7 @@ phases: condition: and(succeeded(), in(variables._SignType, 'real', 'test')) # Build both native and managed assets. - - script: ./build.cmd -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:PreparePackageAssets=true + - script: ./build.cmd -configuration $(BuildConfig) /p:TargetArchitecture=x64 /p:CopyPackageAssets=true displayName: Build - task: ComponentGovernanceComponentDetection@0 diff --git a/eng/pkg/Pack.props b/eng/pkg/Pack.props index 496cb2d50e..20bc9f654c 100644 --- a/eng/pkg/Pack.props +++ b/eng/pkg/Pack.props @@ -16,7 +16,7 @@ Microsoft LICENSE https://dot.net/ml - mlnetlogo.png + https://aka.ms/mlnetreleasenotes ML.NET ML Machine Learning @@ -34,7 +34,7 @@ - + diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index f9cfd0fe53..41e86c12ab 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets @@ -2,9 +2,11 @@ - + + diff --git a/src/Native/Native.proj b/src/Native/Native.proj index 3b2c747c7b..46d6006eb2 100644 --- a/src/Native/Native.proj +++ b/src/Native/Native.proj @@ -77,7 +77,7 @@ - + From 0de7ed5683e5c6fc187529268a13863d312bcea0 Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Tue, 8 Dec 2020 01:14:16 +0000 Subject: [PATCH 4/7] supress nuget warning 5118 --- eng/pkg/Pack.props | 4 ++-- src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj | 1 + src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj | 1 + .../Microsoft.ML.CodeGenerator.csproj | 1 + src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj | 1 + src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj | 1 + .../Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj | 1 + .../Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj | 1 + .../Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj | 1 + .../Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj | 1 + src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj | 1 + src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj | 1 + .../Microsoft.ML.Experimental.csproj | 1 + src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj | 1 + src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj | 1 + .../Microsoft.ML.ImageAnalytics.csproj | 1 + src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj | 1 + .../Microsoft.ML.Mkl.Components.csproj | 1 + src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj | 1 + .../Microsoft.ML.OnnxConverter.csproj | 1 + .../Microsoft.ML.OnnxTransformer.csproj | 1 + src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj | 1 + src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj | 1 + .../Microsoft.ML.SamplesUtils.csproj | 1 + src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj | 1 + src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj | 1 + src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj | 1 + src/Microsoft.ML/Microsoft.ML.csproj | 1 + 28 files changed, 29 insertions(+), 2 deletions(-) diff --git a/eng/pkg/Pack.props b/eng/pkg/Pack.props index 20bc9f654c..496cb2d50e 100644 --- a/eng/pkg/Pack.props +++ b/eng/pkg/Pack.props @@ -16,7 +16,7 @@ Microsoft LICENSE https://dot.net/ml - + mlnetlogo.png https://aka.ms/mlnetreleasenotes ML.NET ML Machine Learning @@ -34,7 +34,7 @@ - + diff --git a/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj b/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj index 3fefadbeb4..c159025901 100644 --- a/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj +++ b/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.Extensions.ML + $(NoWarn);NU5118 An integration package for ML.NET models on scalable web apps and services. diff --git a/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj b/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj index 83d749800c..7ac6da9d06 100644 --- a/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj +++ b/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.AutoML + $(NoWarn);NU5118 ML.NET AutoML: Optimizes an ML pipelineĀ for your dataset, by automatically locating the best feature engineering, model, and hyperparameters diff --git a/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj b/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj index 955914a780..26c90bc6e4 100644 --- a/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj +++ b/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.CodeGenerator + $(NoWarn);NU5118 ML.NET Code Generator diff --git a/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj b/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj index 7e39f41e47..91cbe0ddd4 100644 --- a/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj +++ b/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj @@ -4,6 +4,7 @@ netstandard2.0;netcoreapp3.1 Microsoft.ML.CpuMath + $(NoWarn);NU5118 Microsoft.ML.CpuMath contains optimized math routines for ML.NET. true $(DefineConstants);CPUMATH_INFRASTRUCTURE diff --git a/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj b/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj index a81ffdaf17..e5368ba7f1 100644 --- a/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj +++ b/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.DataView + $(NoWarn);NU5118 Contains the IDataView system which is a set of interfaces and components that provide efficient, compositional processing of schematized data for machine learning and advanced analytics applications. diff --git a/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj b/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj index ec75b23693..b7e0759ef6 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.AlexNet + $(NoWarn);NU5118 ML.NET component for pretrained AlexNet image featurization diff --git a/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj b/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj index 70dfa08966..a0019a38c1 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.ResNet101 + $(NoWarn);NU5118 ML.NET component for pretrained ResNet101 image featurization diff --git a/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj b/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj index db02568be9..a7eb96d46c 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.ResNet18 + $(NoWarn);NU5118 ML.NET component for pretrained ResNet18 image featurization diff --git a/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj b/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj index 5c6e91aefd..ff0038c86f 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.ResNet50 + $(NoWarn);NU5118 ML.NET component for pretrained ResNet50 image featurization diff --git a/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj b/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj index 766107cd6b..e466e46b47 100644 --- a/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj +++ b/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.Ensemble + $(NoWarn);NU5118 ML.NET component for Ensembles CORECLR diff --git a/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj b/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj index a2b946550c..9651136622 100644 --- a/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj +++ b/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.EntryPoints + $(NoWarn);NU5118 Microsoft.ML.EntryPoints contains the ML.NET entry point API catalog. diff --git a/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj b/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj index 1996182a09..8ba7936780 100644 --- a/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj +++ b/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.Experimental + $(NoWarn);NU5118 Microsoft.ML.Experimental contains experimental work such extension methods to access internal methods. diff --git a/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj b/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj index 8b8ca3bcb6..600df2a499 100644 --- a/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj +++ b/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.FastTree + $(NoWarn);NU5118 ML.NET component for FastTree $(DefineConstants);USE_FASTTREENATIVE;NO_STORE;CORECLR true diff --git a/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj b/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj index c6069a3b51..0beabc9bb6 100644 --- a/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj +++ b/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj @@ -4,6 +4,7 @@ netstandard2.0;netcoreapp2.1 Microsoft.ML.Featurizers + $(NoWarn);NU5118 true ML.NET featurizers with native code implementation diff --git a/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj b/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj index 95acd84d01..0379f26641 100644 --- a/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj +++ b/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.ImageAnalytics + $(NoWarn);NU5118 ML.NET component for Image support diff --git a/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj b/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj index eea6944b85..ccf8412be6 100644 --- a/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj +++ b/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.LightGbm + $(NoWarn);NU5118 true ML.NET component for LightGBM diff --git a/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj b/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj index 1f931abe55..991ac82a19 100644 --- a/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj +++ b/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.Mkl.Components + $(NoWarn);NU5118 true ML.NET additional learners making use of Intel Mkl. diff --git a/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj b/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj index e281e66258..56d8e2ea51 100644 --- a/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj +++ b/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj @@ -7,6 +7,7 @@ false netstandard2.0 LICENSE.txt + $(NoWarn);NU5118 $(MSBuildProjectName) contains the MKL library redistributed as a NuGet package. $(PackageTags) MLNET MKL diff --git a/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj b/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj index 58c0ead6d5..b5724dced9 100644 --- a/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj +++ b/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.OnnxConverter + $(NoWarn);NU5118 Microsoft.ML.Model.Onnx ML.NET component for exporting ONNX Models diff --git a/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj b/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj index 8e344ac021..02d96584ee 100644 --- a/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj +++ b/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.OnnxTransformer + $(NoWarn);NU5118 true ML.NET component for Microsoft.ML.Scoring library diff --git a/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj b/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj index 505e798783..59b46ab392 100644 --- a/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj +++ b/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.Parquet + $(NoWarn);NU5118 ML.NET components for Apache Parquet support. diff --git a/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj b/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj index 0ad068fc7e..a33ad96c77 100644 --- a/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj +++ b/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.Recommender + $(NoWarn);NU5118 true LIBMF, the core computation library for matrix factorization in ML.NET diff --git a/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj b/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj index 2e6ed18567..1933ea8568 100644 --- a/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj +++ b/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.SampleUtils + $(NoWarn);NU5118 Sample utils for Microsoft.ML.Samples diff --git a/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj b/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj index 13175f7042..9aef382755 100644 --- a/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj +++ b/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.TensorFlow + $(NoWarn);NU5118 CORECLR true Microsoft.ML.TensorFlow contains ML.NET integration of TensorFlow. diff --git a/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj b/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj index b5aa12d56a..05c07189b7 100644 --- a/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj +++ b/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.TimeSeries + $(NoWarn);NU5118 Microsoft.ML.TimeSeries contains ML.NET Time Series prediction algorithms. Uses Intel Mkl. diff --git a/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj b/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj index 08a74bc8d1..b60426fa66 100644 --- a/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj +++ b/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj @@ -4,6 +4,7 @@ netstandard2.0 Microsoft.ML.Vision + $(NoWarn);NU5118 CORECLR true Microsoft.ML.Vision contains high level APIs for vision tasks like image classification. diff --git a/src/Microsoft.ML/Microsoft.ML.csproj b/src/Microsoft.ML/Microsoft.ML.csproj index 7d67abd7d3..87d06fcdbd 100644 --- a/src/Microsoft.ML/Microsoft.ML.csproj +++ b/src/Microsoft.ML/Microsoft.ML.csproj @@ -4,6 +4,7 @@ netstandard2.0 false + $(NoWarn);NU5118 ML.NET is a cross-platform open-source machine learning framework which makes machine learning accessible to .NET developers. From c95b0d2e752ad4d03311bc41b53bc02e96582c0e Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Tue, 8 Dec 2020 01:39:38 +0000 Subject: [PATCH 5/7] supress other warning --- src/Microsoft.ML/Microsoft.ML.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ML/Microsoft.ML.csproj b/src/Microsoft.ML/Microsoft.ML.csproj index 87d06fcdbd..5451038897 100644 --- a/src/Microsoft.ML/Microsoft.ML.csproj +++ b/src/Microsoft.ML/Microsoft.ML.csproj @@ -4,7 +4,7 @@ netstandard2.0 false - $(NoWarn);NU5118 + $(NoWarn);NU5118;NU5127;NU5128 ML.NET is a cross-platform open-source machine learning framework which makes machine learning accessible to .NET developers. From f41bc3ff58f5d6862904c2a2604375634f53aba4 Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Tue, 8 Dec 2020 03:43:44 +0000 Subject: [PATCH 6/7] remove unnecessary change --- src/Directory.Build.targets | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index 41e86c12ab..90294e332c 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets @@ -5,8 +5,6 @@ - - From 2ad40413d35eb59884be3bc2353fd609404a95e4 Mon Sep 17 00:00:00 2001 From: Frank Dong Date: Tue, 8 Dec 2020 07:28:08 +0000 Subject: [PATCH 7/7] put skip warning at Directory.Buil.props --- src/Directory.Build.props | 2 +- src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj | 1 - src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj | 1 - .../Microsoft.ML.CodeGenerator.csproj | 1 - src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj | 1 - src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj | 1 - .../Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj | 1 - .../Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj | 1 - .../Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj | 1 - .../Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj | 1 - src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj | 1 - src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj | 1 - src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj | 1 - src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj | 1 - src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj | 1 - .../Microsoft.ML.ImageAnalytics.csproj | 1 - src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj | 1 - .../Microsoft.ML.Mkl.Components.csproj | 1 - src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj | 1 - .../Microsoft.ML.OnnxConverter.csproj | 1 - .../Microsoft.ML.OnnxTransformer.csproj | 1 - src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj | 1 - src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj | 1 - src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj | 1 - src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj | 1 - src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj | 1 - src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj | 1 - src/Microsoft.ML/Microsoft.ML.csproj | 2 +- 28 files changed, 2 insertions(+), 28 deletions(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 93be5b7b88..71c462977b 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -8,7 +8,7 @@ When you are ready to tackle adding them, remove below, and when you get clean, also remove --> - $(NoWarn);1591 + $(NoWarn);1591;NU5118 $(WarningsNotAsErrors);1591 $(MSBuildThisFileDirectory)\Source.ruleset diff --git a/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj b/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj index c159025901..3fefadbeb4 100644 --- a/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj +++ b/src/Microsoft.Extensions.ML/Microsoft.Extensions.ML.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.Extensions.ML - $(NoWarn);NU5118 An integration package for ML.NET models on scalable web apps and services. diff --git a/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj b/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj index 7ac6da9d06..83d749800c 100644 --- a/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj +++ b/src/Microsoft.ML.AutoML/Microsoft.ML.AutoML.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.AutoML - $(NoWarn);NU5118 ML.NET AutoML: Optimizes an ML pipelineĀ for your dataset, by automatically locating the best feature engineering, model, and hyperparameters diff --git a/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj b/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj index 26c90bc6e4..955914a780 100644 --- a/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj +++ b/src/Microsoft.ML.CodeGenerator/Microsoft.ML.CodeGenerator.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.CodeGenerator - $(NoWarn);NU5118 ML.NET Code Generator diff --git a/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj b/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj index 91cbe0ddd4..7e39f41e47 100644 --- a/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj +++ b/src/Microsoft.ML.CpuMath/Microsoft.ML.CpuMath.csproj @@ -4,7 +4,6 @@ netstandard2.0;netcoreapp3.1 Microsoft.ML.CpuMath - $(NoWarn);NU5118 Microsoft.ML.CpuMath contains optimized math routines for ML.NET. true $(DefineConstants);CPUMATH_INFRASTRUCTURE diff --git a/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj b/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj index e5368ba7f1..a81ffdaf17 100644 --- a/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj +++ b/src/Microsoft.ML.DataView/Microsoft.ML.DataView.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.DataView - $(NoWarn);NU5118 Contains the IDataView system which is a set of interfaces and components that provide efficient, compositional processing of schematized data for machine learning and advanced analytics applications. diff --git a/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj b/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj index b7e0759ef6..ec75b23693 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.AlexNet/Microsoft.ML.DnnImageFeaturizer.AlexNet.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.AlexNet - $(NoWarn);NU5118 ML.NET component for pretrained AlexNet image featurization diff --git a/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj b/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj index a0019a38c1..70dfa08966 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.ResNet101/Microsoft.ML.DnnImageFeaturizer.ResNet101.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.ResNet101 - $(NoWarn);NU5118 ML.NET component for pretrained ResNet101 image featurization diff --git a/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj b/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj index a7eb96d46c..db02568be9 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.ResNet18/Microsoft.ML.DnnImageFeaturizer.ResNet18.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.ResNet18 - $(NoWarn);NU5118 ML.NET component for pretrained ResNet18 image featurization diff --git a/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj b/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj index ff0038c86f..5c6e91aefd 100644 --- a/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj +++ b/src/Microsoft.ML.DnnImageFeaturizer.ResNet50/Microsoft.ML.DnnImageFeaturizer.ResNet50.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.DnnImageFeaturizer.ResNet50 - $(NoWarn);NU5118 ML.NET component for pretrained ResNet50 image featurization diff --git a/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj b/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj index e466e46b47..766107cd6b 100644 --- a/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj +++ b/src/Microsoft.ML.Ensemble/Microsoft.ML.Ensemble.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.Ensemble - $(NoWarn);NU5118 ML.NET component for Ensembles CORECLR diff --git a/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj b/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj index 9651136622..a2b946550c 100644 --- a/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj +++ b/src/Microsoft.ML.EntryPoints/Microsoft.ML.EntryPoints.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.EntryPoints - $(NoWarn);NU5118 Microsoft.ML.EntryPoints contains the ML.NET entry point API catalog. diff --git a/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj b/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj index 8ba7936780..1996182a09 100644 --- a/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj +++ b/src/Microsoft.ML.Experimental/Microsoft.ML.Experimental.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.Experimental - $(NoWarn);NU5118 Microsoft.ML.Experimental contains experimental work such extension methods to access internal methods. diff --git a/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj b/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj index 600df2a499..8b8ca3bcb6 100644 --- a/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj +++ b/src/Microsoft.ML.FastTree/Microsoft.ML.FastTree.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.FastTree - $(NoWarn);NU5118 ML.NET component for FastTree $(DefineConstants);USE_FASTTREENATIVE;NO_STORE;CORECLR true diff --git a/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj b/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj index 0beabc9bb6..c6069a3b51 100644 --- a/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj +++ b/src/Microsoft.ML.Featurizers/Microsoft.ML.Featurizers.csproj @@ -4,7 +4,6 @@ netstandard2.0;netcoreapp2.1 Microsoft.ML.Featurizers - $(NoWarn);NU5118 true ML.NET featurizers with native code implementation diff --git a/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj b/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj index 0379f26641..95acd84d01 100644 --- a/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj +++ b/src/Microsoft.ML.ImageAnalytics/Microsoft.ML.ImageAnalytics.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.ImageAnalytics - $(NoWarn);NU5118 ML.NET component for Image support diff --git a/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj b/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj index ccf8412be6..eea6944b85 100644 --- a/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj +++ b/src/Microsoft.ML.LightGbm/Microsoft.ML.LightGbm.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.LightGbm - $(NoWarn);NU5118 true ML.NET component for LightGBM diff --git a/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj b/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj index 991ac82a19..1f931abe55 100644 --- a/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj +++ b/src/Microsoft.ML.Mkl.Components/Microsoft.ML.Mkl.Components.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.Mkl.Components - $(NoWarn);NU5118 true ML.NET additional learners making use of Intel Mkl. diff --git a/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj b/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj index 56d8e2ea51..e281e66258 100644 --- a/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj +++ b/src/Microsoft.ML.Mkl.Redist/Microsoft.ML.Mkl.Redist.csproj @@ -7,7 +7,6 @@ false netstandard2.0 LICENSE.txt - $(NoWarn);NU5118 $(MSBuildProjectName) contains the MKL library redistributed as a NuGet package. $(PackageTags) MLNET MKL diff --git a/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj b/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj index b5724dced9..58c0ead6d5 100644 --- a/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj +++ b/src/Microsoft.ML.OnnxConverter/Microsoft.ML.OnnxConverter.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.OnnxConverter - $(NoWarn);NU5118 Microsoft.ML.Model.Onnx ML.NET component for exporting ONNX Models diff --git a/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj b/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj index 02d96584ee..8e344ac021 100644 --- a/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj +++ b/src/Microsoft.ML.OnnxTransformer/Microsoft.ML.OnnxTransformer.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.OnnxTransformer - $(NoWarn);NU5118 true ML.NET component for Microsoft.ML.Scoring library diff --git a/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj b/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj index 59b46ab392..505e798783 100644 --- a/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj +++ b/src/Microsoft.ML.Parquet/Microsoft.ML.Parquet.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.Parquet - $(NoWarn);NU5118 ML.NET components for Apache Parquet support. diff --git a/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj b/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj index a33ad96c77..0ad068fc7e 100644 --- a/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj +++ b/src/Microsoft.ML.Recommender/Microsoft.ML.Recommender.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.Recommender - $(NoWarn);NU5118 true LIBMF, the core computation library for matrix factorization in ML.NET diff --git a/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj b/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj index 1933ea8568..2e6ed18567 100644 --- a/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj +++ b/src/Microsoft.ML.SamplesUtils/Microsoft.ML.SamplesUtils.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.SampleUtils - $(NoWarn);NU5118 Sample utils for Microsoft.ML.Samples diff --git a/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj b/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj index 9aef382755..13175f7042 100644 --- a/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj +++ b/src/Microsoft.ML.TensorFlow/Microsoft.ML.TensorFlow.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.TensorFlow - $(NoWarn);NU5118 CORECLR true Microsoft.ML.TensorFlow contains ML.NET integration of TensorFlow. diff --git a/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj b/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj index 05c07189b7..b5aa12d56a 100644 --- a/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj +++ b/src/Microsoft.ML.TimeSeries/Microsoft.ML.TimeSeries.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.TimeSeries - $(NoWarn);NU5118 Microsoft.ML.TimeSeries contains ML.NET Time Series prediction algorithms. Uses Intel Mkl. diff --git a/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj b/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj index b60426fa66..08a74bc8d1 100644 --- a/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj +++ b/src/Microsoft.ML.Vision/Microsoft.ML.Vision.csproj @@ -4,7 +4,6 @@ netstandard2.0 Microsoft.ML.Vision - $(NoWarn);NU5118 CORECLR true Microsoft.ML.Vision contains high level APIs for vision tasks like image classification. diff --git a/src/Microsoft.ML/Microsoft.ML.csproj b/src/Microsoft.ML/Microsoft.ML.csproj index 5451038897..890578d317 100644 --- a/src/Microsoft.ML/Microsoft.ML.csproj +++ b/src/Microsoft.ML/Microsoft.ML.csproj @@ -4,7 +4,7 @@ netstandard2.0 false - $(NoWarn);NU5118;NU5127;NU5128 + $(NoWarn);NU5127;NU5128 ML.NET is a cross-platform open-source machine learning framework which makes machine learning accessible to .NET developers.