File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,18 @@ and are generated based on the last package release.
73
73
<LatestPackageReference Include =" System.Runtime.InteropServices.RuntimeInformation" />
74
74
<LatestPackageReference Include =" System.Security.Cryptography.Pkcs" />
75
75
<LatestPackageReference Include =" System.Security.Cryptography.Xml" />
76
- <LatestPackageReference Include =" System.Security.Permissions" />
77
76
<LatestPackageReference Include =" System.Security.Principal.Windows" />
78
77
<LatestPackageReference Include =" System.Text.Encodings.Web" />
79
78
<LatestPackageReference Include =" System.Text.Json" />
80
79
<LatestPackageReference Include =" System.Threading.Channels" />
81
80
<LatestPackageReference Include =" System.ValueTuple" />
82
81
82
+ <!-- Runtime packages referenced only for exclusions -->
83
+ <LatestPackageReference Include =" Microsoft.Win32.SystemEvents" />
84
+ <LatestPackageReference Include =" System.Drawing.Common" />
85
+ <LatestPackageReference Include =" System.Security.Permissions" />
86
+ <LatestPackageReference Include =" System.Windows.Extensions" />
87
+
83
88
<!-- Runtime packages required for crossgen -->
84
89
<LatestPackageReference Include =" Microsoft.NETCore.App.Runtime.win-x64" />
85
90
<LatestPackageReference Include =" Microsoft.NETCore.App.Runtime.win-x86" />
Original file line number Diff line number Diff line change 106
106
<MicrosoftExtensionsOptionsDataAnnotationsVersion >6.0.0-preview.7.21317.1</MicrosoftExtensionsOptionsDataAnnotationsVersion >
107
107
<MicrosoftExtensionsOptionsVersion >6.0.0-preview.7.21317.1</MicrosoftExtensionsOptionsVersion >
108
108
<MicrosoftExtensionsPrimitivesVersion >6.0.0-preview.7.21317.1</MicrosoftExtensionsPrimitivesVersion >
109
+ <MicrosoftWin32SystemEventsVersion >6.0.0-preview.7.21317.1</MicrosoftWin32SystemEventsVersion >
109
110
<MicrosoftAspNetCoreInternalTransportVersion >6.0.0-preview.7.21317.1</MicrosoftAspNetCoreInternalTransportVersion >
110
111
<SystemDiagnosticsDiagnosticSourceVersion >6.0.0-preview.7.21317.1</SystemDiagnosticsDiagnosticSourceVersion >
111
112
<SystemDiagnosticsEventLogVersion >6.0.0-preview.7.21317.1</SystemDiagnosticsEventLogVersion >
112
113
<SystemDirectoryServicesProtocolsVersion >6.0.0-preview.7.21317.1</SystemDirectoryServicesProtocolsVersion >
114
+ <SystemDrawingCommonVersion >6.0.0-preview.7.21317.1</SystemDrawingCommonVersion >
113
115
<SystemIOPipelinesVersion >6.0.0-preview.7.21317.1</SystemIOPipelinesVersion >
114
116
<SystemNetHttpJsonVersion >6.0.0-preview.7.21317.1</SystemNetHttpJsonVersion >
115
117
<SystemNetHttpWinHttpHandlerVersion >6.0.0-preview.7.21317.1</SystemNetHttpWinHttpHandlerVersion >
123
125
<SystemTextEncodingsWebVersion >6.0.0-preview.7.21317.1</SystemTextEncodingsWebVersion >
124
126
<SystemTextJsonVersion >6.0.0-preview.7.21317.1</SystemTextJsonVersion >
125
127
<SystemThreadingChannelsVersion >6.0.0-preview.7.21317.1</SystemThreadingChannelsVersion >
128
+ <SystemWindowsExtensionsVersion >6.0.0-preview.7.21317.1</SystemWindowsExtensionsVersion >
126
129
<!-- Only listed explicitly to workaround https://github.com/dotnet/cli/issues/10528 -->
127
130
<MicrosoftNETCorePlatformsVersion >6.0.0-preview.7.21317.1</MicrosoftNETCorePlatformsVersion >
128
131
<!-- Packages from dotnet/efcore -->
Original file line number Diff line number Diff line change @@ -64,10 +64,13 @@ This package is an internal implementation of the .NET Core SDK and is not meant
64
64
<!-- Note: do not add _TransitiveExternalAspNetCoreAppReference to this list. This is intentionally not listed as a direct package reference. -->
65
65
<Reference Include =" @(AspNetCoreAppReference);@(AspNetCoreAppReferenceAndPackage);@(ExternalAspNetCoreAppReference)" />
66
66
67
- <!-- Omit System.Security.Permissions. https://github.com/dotnet/runtime/issues/54341
67
+ <!-- Omit System.Security.Permissions closure . https://github.com/dotnet/runtime/issues/54341
68
68
It is brought in by System.Security.Cryptography.Xml for netstandard2.0 compatibility
69
69
but not required in net6.0 since the types required exist in System.Security.AccessControl. -->
70
+ <Reference Include =" Microsoft.Win32.SystemEvents" ExcludeAssets =" All" />
71
+ <Reference Include =" System.Drawing.Common" ExcludeAssets =" All" />
70
72
<Reference Include =" System.Security.Permissions" ExcludeAssets =" All" />
73
+ <Reference Include =" System.Windows.Extensions" ExcludeAssets =" All" />
71
74
72
75
<!-- Enforce build order. Targeting pack needs to bundle information about the runtime. -->
73
76
<ProjectReference Include =" ..\..\App.Runtime\src\Microsoft.AspNetCore.App.Runtime.csproj" >
Original file line number Diff line number Diff line change @@ -120,10 +120,13 @@ This package is an internal implementation of the .NET Core SDK and is not meant
120
120
<IncludeAssets >Runtime;Native</IncludeAssets >
121
121
</Reference >
122
122
123
- <!-- Omit System.Security.Permissions. https://github.com/dotnet/runtime/issues/54341
123
+ <!-- Omit System.Security.Permissions closure . https://github.com/dotnet/runtime/issues/54341
124
124
It is brought in by System.Security.Cryptography.Xml for netstandard2.0 compatibility
125
125
but not required in net6.0 since the types required exist in System.Security.AccessControl. -->
126
+ <Reference Include =" Microsoft.Win32.SystemEvents" ExcludeAssets =" All" />
127
+ <Reference Include =" System.Drawing.Common" ExcludeAssets =" All" />
126
128
<Reference Include =" System.Security.Permissions" ExcludeAssets =" All" />
129
+ <Reference Include =" System.Windows.Extensions" ExcludeAssets =" All" />
127
130
128
131
<Reference Include =" Microsoft.NETCore.App.Runtime.$(RuntimeIdentifier)"
129
132
ExcludeAssets =" All"
You can’t perform that action at this time.
0 commit comments