diff --git a/eng/pipelines/common/templates/steps/update-nuget-config-local-feed-step.yml b/eng/pipelines/common/templates/steps/update-nuget-config-local-feed-step.yml index 6f5a528345..4eac341108 100644 --- a/eng/pipelines/common/templates/steps/update-nuget-config-local-feed-step.yml +++ b/eng/pipelines/common/templates/steps/update-nuget-config-local-feed-step.yml @@ -67,18 +67,12 @@ steps: $parent_xpath = '/Project/ItemGroup/PackageReference[@Include="Microsoft.Data.SqlClient"]' $node = $Doc.SelectSingleNode($parent_xpath) - if($node -ne $null){ - $node.Version="${{parameters.nugetPackageVersion }}" - } - else{ + if($node -eq $null){ $packagerefnode = $doc.createelement("packagereference") $value = $doc.selectsinglenode('/project/itemgroup/projectreference') $attrinclude = $doc.createattribute("include") $attrinclude.value = "microsoft.data.sqlclient" - $attrversion = $doc.createattribute("version") - $attrversion.value = "${{parameters.nugetPackageVersion }}" $packagerefnode.attributes.append($attrinclude) - $packagerefnode.attributes.append($attrversion) $parentNode.AppendChild($packageRefNode) } diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 0ff2beb10e..73570b80df 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -26,8 +26,8 @@ $([System.IO.Path]::Combine('$(IntermediateOutputPath)','$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)')) - - + + $(DefineConstants);DEBUG @@ -69,7 +69,7 @@ $(DefineConstants);ENCLAVE_SIMULATOR - + - - + diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props new file mode 100644 index 0000000000..4fff27edae --- /dev/null +++ b/src/Directory.Packages.props @@ -0,0 +1,68 @@ + + + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Microsoft.Data.SqlClient/add-ons/AzureKeyVaultProvider/Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider.csproj b/src/Microsoft.Data.SqlClient/add-ons/AzureKeyVaultProvider/Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider.csproj index 294a5c02b2..d1e076cde9 100644 --- a/src/Microsoft.Data.SqlClient/add-ons/AzureKeyVaultProvider/Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider.csproj +++ b/src/Microsoft.Data.SqlClient/add-ons/AzureKeyVaultProvider/Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider.csproj @@ -16,7 +16,7 @@ MIT true - + true $(SigningKeyPath) @@ -30,16 +30,16 @@ - + - + - - - - + + + + diff --git a/src/Microsoft.Data.SqlClient/add-ons/Directory.Packages.props b/src/Microsoft.Data.SqlClient/add-ons/Directory.Packages.props new file mode 100644 index 0000000000..4a24bb25ae --- /dev/null +++ b/src/Microsoft.Data.SqlClient/add-ons/Directory.Packages.props @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.csproj b/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.csproj index fe15de2276..8da5503146 100644 --- a/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.csproj +++ b/src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.csproj @@ -22,7 +22,7 @@ $(SigningKeyPath) - + @@ -32,17 +32,17 @@ - - - - - - - - - + + + + + + + + + - + diff --git a/src/Microsoft.Data.SqlClient/netcore/src/Microsoft.Data.SqlClient.csproj b/src/Microsoft.Data.SqlClient/netcore/src/Microsoft.Data.SqlClient.csproj index 96b600e194..a50f42b422 100644 --- a/src/Microsoft.Data.SqlClient/netcore/src/Microsoft.Data.SqlClient.csproj +++ b/src/Microsoft.Data.SqlClient/netcore/src/Microsoft.Data.SqlClient.csproj @@ -17,7 +17,7 @@ true Core $(BaseProduct) true - $(NoWarn);IL2026;IL2057;IL2072;IL2075 + $(NoWarn);IL2026;IL2057;IL2072;IL2075 false @@ -39,7 +39,7 @@ - + @@ -185,7 +185,7 @@ Microsoft\Data\SqlClient\AlwaysEncryptedKeyConverter.cs - + Microsoft\Data\SqlClient\ApplicationIntent.cs @@ -605,7 +605,7 @@ Microsoft\Data\SqlClient\SqlDbColumn.cs - + Microsoft\Data\SqlClient\SqlDelegatedTransaction.cs @@ -815,7 +815,6 @@ - @@ -962,11 +961,9 @@ Microsoft\Data\SqlTypes\SqlFileStream.Windows.cs - - @@ -1005,10 +1002,8 @@ Microsoft\Data\SqlTypes\SqlFileStream.netcore.Unix.cs - - @@ -1036,20 +1031,19 @@ Resources\Microsoft.Data.SqlClient.SqlMetaData.xml - - - + + - - - - - - - + + + + + + + diff --git a/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.csproj b/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.csproj index 77c7d66903..8a52093f11 100644 --- a/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.csproj +++ b/src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.csproj @@ -2,13 +2,13 @@ false net462 - $(ObjFolder)$(Configuration)\$(AssemblyName)\ref\ + $(ObjFolder)$(Configuration)\$(AssemblyName)\ref\ $(BinFolder)$(Configuration)\$(AssemblyName)\ref\ $(OutputPath)\Microsoft.Data.SqlClient.xml Framework $(BaseProduct) - Debug;Release; + Debug;Release - + true $(SigningKeyPath) @@ -32,22 +32,20 @@ - - + + - $(MicrosoftDataSqlClientSniVersion) All runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - + + + + + + + + - diff --git a/src/Microsoft.Data.SqlClient/netfx/src/Microsoft.Data.SqlClient.csproj b/src/Microsoft.Data.SqlClient/netfx/src/Microsoft.Data.SqlClient.csproj index 1e736ee960..a232191c55 100644 --- a/src/Microsoft.Data.SqlClient/netfx/src/Microsoft.Data.SqlClient.csproj +++ b/src/Microsoft.Data.SqlClient/netfx/src/Microsoft.Data.SqlClient.csproj @@ -381,7 +381,7 @@ Microsoft\Data\Sql\SqlDataSourceEnumerator.cs - + Microsoft\Data\SqlClient\AAsyncCallContext.cs @@ -758,7 +758,7 @@ Microsoft\Data\SqlClient\SqlDbColumn.cs - + Microsoft\Data\SqlClient\SqlDelegatedTransaction.cs @@ -1008,20 +1008,19 @@ - - + + - $(MicrosoftDataSqlClientSniVersion) All runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - + + + + + + + diff --git a/src/Microsoft.Data.SqlClient/src/Microsoft.Data.SqlClient.csproj b/src/Microsoft.Data.SqlClient/src/Microsoft.Data.SqlClient.csproj index f42fe42b2c..24f1bb0a4e 100644 --- a/src/Microsoft.Data.SqlClient/src/Microsoft.Data.SqlClient.csproj +++ b/src/Microsoft.Data.SqlClient/src/Microsoft.Data.SqlClient.csproj @@ -1,20 +1,20 @@  - - net462;net8.0;net9.0 - true - - - + + net462;net8.0;net9.0 + true + + + - - - - - - + + + + + + diff --git a/src/Microsoft.Data.SqlClient/tests/Common/Common.csproj b/src/Microsoft.Data.SqlClient/tests/Common/Common.csproj index 0850798f5c..d60c9440a9 100644 --- a/src/Microsoft.Data.SqlClient/tests/Common/Common.csproj +++ b/src/Microsoft.Data.SqlClient/tests/Common/Common.csproj @@ -14,26 +14,26 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + - + - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + + PreserveNewest xunit.runner.json @@ -44,7 +44,7 @@ - + PreserveNewest %(Filename)%(Extension) diff --git a/src/Microsoft.Data.SqlClient/tests/CustomConfigurableRetryLogic/CustomRetryLogicProvider.csproj b/src/Microsoft.Data.SqlClient/tests/CustomConfigurableRetryLogic/CustomRetryLogicProvider.csproj index 8a076d1e52..1b35e8f80d 100644 --- a/src/Microsoft.Data.SqlClient/tests/CustomConfigurableRetryLogic/CustomRetryLogicProvider.csproj +++ b/src/Microsoft.Data.SqlClient/tests/CustomConfigurableRetryLogic/CustomRetryLogicProvider.csproj @@ -13,6 +13,6 @@ - + diff --git a/src/Microsoft.Data.SqlClient/tests/Directory.Build.props b/src/Microsoft.Data.SqlClient/tests/Directory.Build.props index e0916258e1..4f982d4ed9 100644 --- a/src/Microsoft.Data.SqlClient/tests/Directory.Build.props +++ b/src/Microsoft.Data.SqlClient/tests/Directory.Build.props @@ -1,5 +1,5 @@ - @@ -13,7 +13,7 @@ AnyCPU;x86;x64 Project - + false diff --git a/src/Microsoft.Data.SqlClient/tests/Directory.Packages.props b/src/Microsoft.Data.SqlClient/tests/Directory.Packages.props new file mode 100644 index 0000000000..e470bb6dee --- /dev/null +++ b/src/Microsoft.Data.SqlClient/tests/Directory.Packages.props @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/Microsoft.Data.SqlClient/tests/Docker/DockerLinuxTest/Microsoft.Data.SqlClient.DockerLinuxTest.csproj b/src/Microsoft.Data.SqlClient/tests/Docker/DockerLinuxTest/Microsoft.Data.SqlClient.DockerLinuxTest.csproj index bd320959f7..9232bf78af 100644 --- a/src/Microsoft.Data.SqlClient/tests/Docker/DockerLinuxTest/Microsoft.Data.SqlClient.DockerLinuxTest.csproj +++ b/src/Microsoft.Data.SqlClient/tests/Docker/DockerLinuxTest/Microsoft.Data.SqlClient.DockerLinuxTest.csproj @@ -7,7 +7,7 @@ Unix - + diff --git a/src/Microsoft.Data.SqlClient/tests/FunctionalTests/Microsoft.Data.SqlClient.FunctionalTests.csproj b/src/Microsoft.Data.SqlClient/tests/FunctionalTests/Microsoft.Data.SqlClient.FunctionalTests.csproj index 865f02c729..56265208b4 100644 --- a/src/Microsoft.Data.SqlClient/tests/FunctionalTests/Microsoft.Data.SqlClient.FunctionalTests.csproj +++ b/src/Microsoft.Data.SqlClient/tests/FunctionalTests/Microsoft.Data.SqlClient.FunctionalTests.csproj @@ -76,35 +76,37 @@ - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - - - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - - - - - - - - - + + + + + + + - + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + @@ -130,7 +132,7 @@ - + @@ -138,9 +140,6 @@ %(Filename)%(Extension) - - - PreserveNewest diff --git a/src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTesting.Tests.csproj b/src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTesting.Tests.csproj index 11505f480a..c724d5dbea 100644 --- a/src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTesting.Tests.csproj +++ b/src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTesting.Tests.csproj @@ -324,48 +324,48 @@ - - - - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - + - + - - - - - - - - + + + + + + + - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + PreserveNewest %(Filename)%(Extension) + + + PreserveNewest diff --git a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Address/Address.csproj b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Address/Address.csproj index 941b08588c..d1487d9012 100644 --- a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Address/Address.csproj +++ b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Address/Address.csproj @@ -12,6 +12,6 @@ - + diff --git a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Circle/Circle.csproj b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Circle/Circle.csproj index 93137d1883..8e1719e8d3 100644 --- a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Circle/Circle.csproj +++ b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Circle/Circle.csproj @@ -3,7 +3,7 @@ Circle Circle {6C88F00F-9597-43AD-9E5F-9B344DA3B16F} - netfx + netfx netcoreapp $(ObjFolder)$(Configuration).$(Platform)\$(AssemblyName) $(BinFolder)$(Configuration).$(Platform)\$(AssemblyName) @@ -12,6 +12,6 @@ - + diff --git a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Shapes/Shapes.csproj b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Shapes/Shapes.csproj index 596f7ffe74..ccd0d626d9 100644 --- a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Shapes/Shapes.csproj +++ b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Shapes/Shapes.csproj @@ -5,13 +5,13 @@ {B73A7063-37C3-415D-AD53-BB3DA20ABD6E} netfx netcoreapp - $(ObjFolder)$(Configuration).$(Platform)\$(AssemblyName) + $(ObjFolder)$(Configuration).$(Platform)\$(AssemblyName) $(BinFolder)$(Configuration).$(Platform)\$(AssemblyName) - + diff --git a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Utf8String/Utf8String.csproj b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Utf8String/Utf8String.csproj index ec1229e0e7..1a7717e844 100644 --- a/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Utf8String/Utf8String.csproj +++ b/src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/UDTs/Utf8String/Utf8String.csproj @@ -5,13 +5,13 @@ {E0A6BB21-574B-43D9-890D-6E1144F2EE9E} netfx netcoreapp - $(ObjFolder)$(Configuration).$(Platform)\$(AssemblyName) + $(ObjFolder)$(Configuration).$(Platform)\$(AssemblyName) $(BinFolder)$(Configuration).$(Platform)\$(AssemblyName) - + diff --git a/src/Microsoft.Data.SqlClient/tests/PerformanceTests/Microsoft.Data.SqlClient.PerformanceTests.csproj b/src/Microsoft.Data.SqlClient/tests/PerformanceTests/Microsoft.Data.SqlClient.PerformanceTests.csproj index cc06945c54..24bcaab242 100644 --- a/src/Microsoft.Data.SqlClient/tests/PerformanceTests/Microsoft.Data.SqlClient.PerformanceTests.csproj +++ b/src/Microsoft.Data.SqlClient/tests/PerformanceTests/Microsoft.Data.SqlClient.PerformanceTests.csproj @@ -8,24 +8,19 @@ $(BinFolder)$(Configuration).$(Platform).$(AssemblyName) Microsoft.Data.SqlClient.PerformanceTests.Program - - - - - + - diff --git a/src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj b/src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj index af7c11b6b0..7e9f0b3eb8 100644 --- a/src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj +++ b/src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj @@ -10,30 +10,30 @@ - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + - + - + diff --git a/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.ExtUtilities/Microsoft.Data.SqlClient.ExtUtilities.csproj b/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.ExtUtilities/Microsoft.Data.SqlClient.ExtUtilities.csproj index 710ddef2ef..a49eef85b1 100644 --- a/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.ExtUtilities/Microsoft.Data.SqlClient.ExtUtilities.csproj +++ b/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.ExtUtilities/Microsoft.Data.SqlClient.ExtUtilities.csproj @@ -2,10 +2,10 @@ Exe Microsoft.Data.SqlClient.ExtUtilities.Runner + net9.0 - - + diff --git a/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/Microsoft.Data.SqlClient.TestUtilities.csproj b/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/Microsoft.Data.SqlClient.TestUtilities.csproj index bcd0bdb27b..45ba5c2cf9 100644 --- a/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/Microsoft.Data.SqlClient.TestUtilities.csproj +++ b/src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/Microsoft.Data.SqlClient.TestUtilities.csproj @@ -4,7 +4,6 @@ netcoreapp win win-$(Platform) - $(ObjFolder)$(Configuration).$(Platform)\$(AssemblyName) $(BinFolder)$(Configuration).$(Platform)\$(AssemblyName) @@ -15,10 +14,10 @@ PreserveNewest - - - - - + + + + + diff --git a/src/Microsoft.Data.SqlClient/tests/tools/TDS/TDS.EndPoint/TDS.EndPoint.csproj b/src/Microsoft.Data.SqlClient/tests/tools/TDS/TDS.EndPoint/TDS.EndPoint.csproj index d4b5fe3346..cae90f7473 100644 --- a/src/Microsoft.Data.SqlClient/tests/tools/TDS/TDS.EndPoint/TDS.EndPoint.csproj +++ b/src/Microsoft.Data.SqlClient/tests/tools/TDS/TDS.EndPoint/TDS.EndPoint.csproj @@ -53,6 +53,6 @@ - + diff --git a/src/Microsoft.SqlServer.Server/Microsoft.SqlServer.Server.csproj b/src/Microsoft.SqlServer.Server/Microsoft.SqlServer.Server.csproj index 2808094a25..48d163cab6 100644 --- a/src/Microsoft.SqlServer.Server/Microsoft.SqlServer.Server.csproj +++ b/src/Microsoft.SqlServer.Server/Microsoft.SqlServer.Server.csproj @@ -16,11 +16,11 @@ - + - + diff --git a/tools/Directory.Packages.props b/tools/Directory.Packages.props new file mode 100644 index 0000000000..e0f9ef7b88 --- /dev/null +++ b/tools/Directory.Packages.props @@ -0,0 +1,18 @@ + + + true + + + + + + + + + + + + + + + diff --git a/tools/GenAPI/Microsoft.Cci.Extensions/Microsoft.Cci.Extensions.csproj b/tools/GenAPI/Microsoft.Cci.Extensions/Microsoft.Cci.Extensions.csproj index 299e6c19ab..3c8676acac 100644 --- a/tools/GenAPI/Microsoft.Cci.Extensions/Microsoft.Cci.Extensions.csproj +++ b/tools/GenAPI/Microsoft.Cci.Extensions/Microsoft.Cci.Extensions.csproj @@ -16,13 +16,13 @@ - - - - - - - + + + + + + + diff --git a/tools/GenAPI/Microsoft.DotNet.GenAPI/Microsoft.DotNet.GenAPI.csproj b/tools/GenAPI/Microsoft.DotNet.GenAPI/Microsoft.DotNet.GenAPI.csproj index ae6c238182..1ee92e1808 100644 --- a/tools/GenAPI/Microsoft.DotNet.GenAPI/Microsoft.DotNet.GenAPI.csproj +++ b/tools/GenAPI/Microsoft.DotNet.GenAPI/Microsoft.DotNet.GenAPI.csproj @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/tools/props/Versions.props b/tools/props/Versions.props index d4e2619f3b..4031ecde50 100644 --- a/tools/props/Versions.props +++ b/tools/props/Versions.props @@ -1,5 +1,6 @@ - + 6.1.0 0 @@ -21,58 +22,6 @@ 1.0.0-dev $(SqlServerPackageVersion) - - - 6.0.2 - 4.5.1 - 4.5.5 - 8.0.0 - 8.0.5 - 4.3.0 - - - - 1.13.2 - 8.0.0 - 8.0.1 - 7.7.1 - 7.7.1 - 4.3.0 - 8.0.1 - - - - 6.0.2 - 8.0.1 - 1.0.0 - - - - [1.44.1,2.0.0) - [4.7.0,5.0.0) - - - - 0.14.0 - 3.1.6 - 10.0.0-beta.25164.6 - 10.0.0-beta.25164.6 - 8.0.1 - 1.0.3 - 17.11.1 - 172.52.0 - 10.50.1600.1 - 160.1000.6 - 5.0.0 - 13.0.3 - 8.0.1 - 4.3.0 - 5.0.0 - 8.0.1 - 6.0.0 - 2.9.2 - 2.8.2 - $(NugetPackageVersion) $(NugetPackageVersion) diff --git a/tools/props/VersionsNet9OrLater.props b/tools/props/VersionsNet9OrLater.props deleted file mode 100644 index 80fd5d7cff..0000000000 --- a/tools/props/VersionsNet9OrLater.props +++ /dev/null @@ -1,14 +0,0 @@ - - - - - 9.0.4 - 9.0.4 - 9.0.4 - 9.0.4 - - - - 9.0.3 - - diff --git a/tools/targets/TrimDocsForIntelliSense.targets b/tools/targets/TrimDocsForIntelliSense.targets index c178379dba..05feb26739 100644 --- a/tools/targets/TrimDocsForIntelliSense.targets +++ b/tools/targets/TrimDocsForIntelliSense.targets @@ -1,8 +1,9 @@ - - - + + + + - \ No newline at end of file +