-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into renovate/packageurl-dotnet-1.x
- Loading branch information
Showing
218 changed files
with
4,348 additions
and
4,018 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,32 @@ | ||
<Project> | ||
|
||
<PropertyGroup Label="Build"> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<LangVersion>latest</LangVersion> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<TreatWarningsAsErrors Condition="'$(OFFICIAL_BUILD)' == 'True'">true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
<PropertyGroup Label="Build"> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<LangVersion>latest</LangVersion> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>AllEnabledByDefault</AnalysisMode> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Package"> | ||
<Authors>Microsoft</Authors> | ||
<Company>Microsoft</Company> | ||
<Copyright>Copyright © Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/microsoft/component-detection</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/microsoft/component-detection.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageReleaseNotes>https://github.com/microsoft/component-detection/releases</PackageReleaseNotes> | ||
</PropertyGroup> | ||
<PropertyGroup Label="Package"> | ||
<Authors>Microsoft</Authors> | ||
<Company>Microsoft</Company> | ||
<Copyright>Copyright © Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/microsoft/component-detection</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/microsoft/component-detection.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageReleaseNotes>https://github.com/microsoft/component-detection/releases</PackageReleaseNotes> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Package References"> | ||
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" PrivateAssets="all"/> | ||
<PackageReference Include="MinVer" PrivateAssets="all"/> | ||
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="all"/> | ||
</ItemGroup> | ||
<ItemGroup Label="Package References"> | ||
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" PrivateAssets="all"/> | ||
<PackageReference Include="MinVer" PrivateAssets="all"/> | ||
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="all"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)analyzers.ruleset</CodeAnalysisRuleSet> | ||
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch> | ||
<NoWarn>NU1608,NU5119</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(OFFICIAL_BUILD)'=='True'"> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Package References"> | ||
<PackageReference Include="MinVer" PrivateAssets="all"/> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.