2018-10-15 21:29:24 +03:00
|
|
|
<Project>
|
[main] Update dependencies from dotnet/arcade (#10486)
* Update dependencies from https://github.com/dotnet/arcade build 20231214.6
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
From Version 9.0.0-beta.23613.3 -> To Version 9.0.0-beta.23614.6
* Update dependencies from https://github.com/dotnet/arcade build 20231214.6
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
From Version 9.0.0-beta.23613.3 -> To Version 9.0.0-beta.23614.6
* Update dependencies from https://github.com/dotnet/arcade build 20231214.6
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
From Version 9.0.0-beta.23613.3 -> To Version 9.0.0-beta.23614.6
* Update dependencies from https://github.com/dotnet/arcade build 20231215.2
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
From Version 9.0.0-beta.23613.3 -> To Version 9.0.0-beta.23615.2
* React to analyzer warnings
* Remove hardcoded TFMs
* Re-enable package validation
* Fix more analyzer errors
* More of those IDE ones
* Update dependencies from https://github.com/dotnet/arcade build 20231215.2
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
From Version 9.0.0-beta.23613.3 -> To Version 9.0.0-beta.23615.2
* Update dependencies from https://github.com/dotnet/arcade build 20231215.2
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
From Version 9.0.0-beta.23613.3 -> To Version 9.0.0-beta.23615.2
* Fix IDE0008 errors
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
Co-authored-by: Loni Tra <lonitra@microsoft.com>
2023-12-18 22:50:31 +03:00
|
|
|
|
2018-10-15 21:29:24 +03:00
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
2024-11-06 22:22:54 +03:00
|
|
|
<Import Project="$(RepositoryEngineeringDir)Analyzer.props" />
|
2020-01-17 09:31:43 +03:00
|
|
|
<Import Project="$(RepositoryEngineeringDir)FacadeAssemblies.props" />
|
|
|
|
<Import Project="$(RepositoryEngineeringDir)ApiCompatibility\PublicApiAnalyzer.props" />
|
2024-01-03 08:57:54 +03:00
|
|
|
<Import Project="$(RepositoryEngineeringDir)Test.props" Condition="'$(IsTestProject)' == 'true'"/>
|
2019-02-21 23:07:31 +03:00
|
|
|
|
2019-03-29 00:06:43 +03:00
|
|
|
<PropertyGroup>
|
2023-10-13 00:25:40 +03:00
|
|
|
<TargetFramework>$(NetCurrent)</TargetFramework>
|
2019-06-26 08:35:19 +03:00
|
|
|
<Product>Microsoft® .NET</Product>
|
2019-02-21 23:07:31 +03:00
|
|
|
<Copyright>$(CopyrightNetFoundation)</Copyright>
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2019-03-29 00:06:43 +03:00
|
|
|
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
|
2024-09-05 07:21:53 +03:00
|
|
|
<LangVersion Condition="'$(LangVersion)' == ''">preview</LangVersion>
|
2021-08-17 07:23:23 +03:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-11-06 22:27:29 +03:00
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2022-02-15 08:02:08 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Set assembly version to align with major and minor version, as for the patches and revisions should be manually
|
|
|
|
updated per assembly if it is serviced.
|
|
|
|
|
|
|
|
Note, any components that aren't exposed as references in the targeting pack (like analyzers/generators) those should rev
|
|
|
|
so that they can exist SxS, as the compiler relies on different version to change assembly version for caching purposes.
|
|
|
|
-->
|
|
|
|
<PropertyGroup Condition="'$(IsAnalyzerProject)' != 'true'">
|
|
|
|
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-09-23 08:21:46 +03:00
|
|
|
<!-- SDK flipped to 'true' by default https://github.com/dotnet/sdk/pull/12720 -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-06-01 09:14:25 +03:00
|
|
|
<!-- Allow SourceLink to work for strongly types resource files (SR) by embedding generated files into the PDBs -->
|
2019-10-08 23:36:20 +03:00
|
|
|
<PropertyGroup>
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-03-15 23:10:20 +03:00
|
|
|
<!-- For the purposes of generating code coverage as part of the build -->
|
|
|
|
<PropertyGroup Condition="'$(Coverage)' == 'true'">
|
2019-03-29 00:06:43 +03:00
|
|
|
<!-- Coverlet's PDB check cannot handle deterministic source paths https://github.com/tonerdo/coverlet/issues/363 -->
|
|
|
|
<DeterministicSourcePaths>false</DeterministicSourcePaths>
|
2019-03-15 23:10:20 +03:00
|
|
|
|
2019-03-29 00:06:43 +03:00
|
|
|
<!-- Note: CoverletOutput references $(TargetDir) so it is set in Directory.Build.targets -->
|
2019-03-15 23:10:20 +03:00
|
|
|
|
2019-12-06 21:50:24 +03:00
|
|
|
<!-- https://github.com/tonerdo/coverlet/issues/618 -->
|
|
|
|
<IncludeTestAssembly>true</IncludeTestAssembly>
|
|
|
|
|
2019-03-29 00:06:43 +03:00
|
|
|
<CollectCoverage>true</CollectCoverage>
|
2019-12-06 21:50:24 +03:00
|
|
|
<SingleHit>true</SingleHit>
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2019-03-29 00:06:43 +03:00
|
|
|
<CoverletOutputFormat>opencover</CoverletOutputFormat>
|
2024-01-11 20:14:35 +03:00
|
|
|
<Include></Include>
|
|
|
|
<Exclude></Exclude>
|
|
|
|
<!-- Exclude anything tagged with ExcludeFromCodeCoverage !!Avoid using this!! -->
|
|
|
|
<ExcludeByAttribute>ExcludeFromCodeCoverage</ExcludeByAttribute>
|
2019-03-29 00:06:43 +03:00
|
|
|
<ExcludeByFile />
|
2018-11-16 20:05:22 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-03-29 00:02:32 +03:00
|
|
|
<!-- workaround for package downgrade in Microsoft.NetCore.Platforms -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<DisableImplicitNETCorePlatformsReference>true</DisableImplicitNETCorePlatformsReference>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-10-15 21:29:24 +03:00
|
|
|
</Project>
|