-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added explicit .NET 6 TFMs. #28911
Added explicit .NET 6 TFMs. #28911
Changes from all commits
cae2e14
38bc276
0f443ae
3b3930d
ddb773a
b643ce4
c75483e
4f5454d
346125c
2c0ff7a
36d0fec
fd03738
0fdbb8a
88c829d
94c22b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is true, alright I will do it when I can. |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
<PackageReference Include="System.ClientModel" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,12 @@ | |
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
<!-- <PackageReference Include="Azure.Core" /> --> | ||
<ProjectReference Include="..\..\..\core\Azure.Core\src\Azure.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" /> | ||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,10 @@ | |
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,17 @@ | |
Improve usability of GetOutputStoragePath. | ||
</PackageReleaseNotes> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<TargetFrameworks>net461;netstandard2.0;net6.0</TargetFrameworks> | ||
<SignAssembly>true</SignAssembly> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Storage.Blobs" VersionOverride="12.12.0" /> | ||
<PackageReference Include="Microsoft.Azure.Batch" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Encodings.Web" VersionOverride="4.7.2" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,22 @@ | |
</PackageReleaseNotes> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<TargetFrameworks>net461;netstandard2.0;net6.0</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Text.Encodings.Web" VersionOverride="4.7.2" /> | ||
<PackageReference Include="WindowsAzure.Storage" /> | ||
<PackageReference Include="Microsoft.Azure.Batch" /> | ||
<PackageReference Include="Azure.Storage.Blobs" VersionOverride="12.12.0" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Encodings.Web" VersionOverride="4.7.2" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ | |
<PackageReleaseNotes>For detailed release notes, see: https://aka.ms/batch-net-dataplane-changelog </PackageReleaseNotes> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Encodings.Web" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,10 @@ | |
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
<PackageReference Include="Azure.Communication.Common" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,10 @@ | |
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,12 @@ | |
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
<!--<PackageReference Include="Azure.Core" />--> | ||
<ProjectReference Include="..\..\..\core\Azure.Core\src\Azure.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,8 @@ | |
<NoWarn>$(NoWarn);AZC0001</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Memory" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
<PackageReference Include="Microsoft.Azure.Amqp" /> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Description>This is the implementation of the Azure Client Pipeline</Description> | ||
|
@@ -20,14 +20,19 @@ | |
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" /> | ||
<PackageReference Include="System.ClientModel" /> | ||
<PackageReference Include="System.Numerics.Vectors" /> | ||
<PackageReference Include="System.Diagnostics.DiagnosticSource" /> | ||
<PackageReference Include="System.Threading.Tasks.Extensions" /> | ||
<PackageReference Include="System.Text.Json" /> | ||
<PackageReference Include="System.Text.Encodings.Web" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Spatial" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Encodings.Web" /> | ||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,10 +13,14 @@ | |
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Core" /> | ||
<PackageReference Include="System.Text.Json" /> | ||
<PackageReference Include="System.Memory.Data" /> | ||
</ItemGroup> | ||
|
||
<!-- These packages are included as part net6.0; the external references are not needed. --> | ||
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched? |
||
<PackageReference Include="System.Text.Json" /> | ||
</ItemGroup> | ||
|
||
<!-- Shared source from Azure.Core --> | ||
<ItemGroup> | ||
<Compile Include="$(AzureCoreSharedSources)ArrayBufferWriter.cs" LinkBase="Shared" /> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For maintainability should this be inverted so that adding future frameworks doesn't need the conditions to be touched?