Oryx/Directory.Build.props

45 строки
2.4 KiB
Plaintext
Исходник Обычный вид История

<!--
This build configuration file will be automatically imported by MSBuild in all projects in the solution, because it's placed in the root directory.
See https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- StyleCop/FxCop configuration -->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <!-- Fixes SA0001 warnings -->
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)src\CommonFiles\Oryx.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>612,618</WarningsNotAsErrors> <!-- Allow marking things as Obsolete without breaking the build -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.4.33">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Upgrade Cli to Dotnet 7 (#1816) * Updating csproj files to dotnet 6 * net6 upgrade with pipeline update * Updated packages to be compatible versions with dotnet 6 * Update dockerfile to install dotnet 6 sdk * Skip self containing check * Updated all ms extensions pkg version * Update mcmaster command line utils in autoUpdater * Update oryx cli from mcmaster to system commandline * Nit * Updated for telemetry command * updated to test oryx cli * Update to dotnet 7 * Update pipeline to net 7 * Update serviceProvider and commandbase * Update detector signproj to net7 * update runtime version to 7 * Fixed inaccessible embedded resourcess * Nit fix * Added readme to explain the new structure of cli * Bump werkzeug in /tests/SampleApps/python/microblog (#1854) Bumps [werkzeug](https://github.com/pallets/werkzeug) from 0.15.3 to 0.15.5. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/werkzeug/compare/0.15.3...0.15.5) --- updated-dependencies: - dependency-name: werkzeug dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump django in /tests/SampleApps/python/django-regex-example-app (#1874) Bumps [django](https://github.com/django/django) from 3.2.16 to 3.2.17. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.2.16...3.2.17) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update testConsole * Nit fix * Update autoUpdater * AutoUpdater change naming to suppress error * Nit change * Fix AutoUpdater linting issue * Fixing testConsole errors * Removed custom version output and its related tests * Updated OptionTemplates * Fix exit code error * Remove temp local test settings * Passed console into InvokeAsync * Fix test * Updated test * Test fix * Fix sourceDir, version, and test issues * Removed autoUpdater and modified readme * Nit * Fix platforms command * Nit * Nit fix * Build fix * Address comments * Build fix * Suppress XML warnings * Address comments * Nit * Fixed BuildCommand setting obselete options * Update automation agent os to ubuntu latest * Added pipeline to push img to test env acr * Test Acr yaml name change * Fix test acr yaml template * Fix test acr yaml template * Fix acr yaml stages * fix parameter * Fix build issue on test pipeline * Temporary fix for uploading img * Copy img from nightly to acr * Nit fix * Added nightly tag parameter * Nit * Nit change * Nit change * Fix shell script array * Try changing to bash insteawd of script * Remove variables * Test parameters settings * Change parameter settings * Nit * Nit change parameters * Change script to bash * Change loop in yaml * Nit * Nit change * Loop fix * Fixing all loops in new yaml * Fix copy pipeline * Fix retag * Fix auth * Test ACR login * Test Auth * Fix order of acr login * Fixed mismatch help messages * Update image list * Update new image repo * Fixing typo --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-11 20:13:31 +03:00
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SmartAnalyzers.CSharpExtensions.Annotations" Version="4.2.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="4.6.0" >
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Net.Compilers.Toolset" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<!-- Add the same stylecop.json to all projects -->
<AdditionalFiles Include="$(MSBuildThisFileDirectory)src\CommonFiles\stylecop.json" Link="Properties\stylecop.json" />
</ItemGroup>
</Project>