-
Notifications
You must be signed in to change notification settings - Fork 471
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
Add net6.0
as a target framework
#616
Commits on Apr 8, 2022
-
Add
net6.0
target, and NoWarn for SYSLIB0003Code Access Security (CASE) is only supported on .Net Framework; from net5.0 onwards it is marked obsolete which causes build warnings. For now, easiest to disable the warnings. If/when fully deprecated, it may be necessary to be a bit cleverer.
Configuration menu - View commit details
-
Copy full SHA for 047309f - Browse repository at this point
Copy the full SHA 047309fView commit details -
Use
RuntimeInformation
to avoid CA1416 warning for COM interop hand……ling when not on Windows Marshal.GetIUnknownForObject causes a CA1416 warning unless the code is only running on Windows. It is unclear how well Mono handles COM interoperability, so whether special handling is needed for Mono.
Configuration menu - View commit details
-
Copy full SHA for 1ab2324 - Browse repository at this point
Copy the full SHA 1ab2324View commit details -
Add
EventLog
handling fornet6.0
, add nicer handling for Mono in ……tests for `DiagnostlicsLogger` There are `CAS1416` errors if attempting to use `EventLog` on `net6.0` without handling to ensure the platform is Windows, hence the need to use `SupportedOSPlatform` at the class level for the DiagnosticsLogger-related classes.
Configuration menu - View commit details
-
Copy full SHA for f85ae04 - Browse repository at this point
Copy the full SHA f85ae04View commit details -
Update build pipelines for
net6.0
support, add GitHub Actiosn pipel……ine to solution for ease of access
Configuration menu - View commit details
-
Copy full SHA for fc1a19d - Browse repository at this point
Copy the full SHA fc1a19dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1573e45 - Browse repository at this point
Copy the full SHA 1573e45View commit details -
Add
ref/*-net6.0.cs
files, update test/generator to work only under…… `net6.0` Changed the generation from `net472` to `net6.0` due to errors when trying to load a `net6.0` assembly from `net472`
Configuration menu - View commit details
-
Copy full SHA for 0eb55e5 - Browse repository at this point
Copy the full SHA 0eb55e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a342079 - Browse repository at this point
Copy the full SHA a342079View commit details -
Configuration menu - View commit details
-
Copy full SHA for d147818 - Browse repository at this point
Copy the full SHA d147818View commit details -
Configuration menu - View commit details
-
Copy full SHA for e078044 - Browse repository at this point
Copy the full SHA e078044View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14264bc - Browse repository at this point
Copy the full SHA 14264bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8641c5f - Browse repository at this point
Copy the full SHA 8641c5fView commit details
Commits on Apr 10, 2022
-
Remove references of DOTNET462 as no longer used
The sole usage of DOTNET462 (PublicApiTestCase) now uses NET6_0. There are symbols such as NET462 and NET462_OR_GREATER (supplied by the SDK) if such switching is required in future.
Configuration menu - View commit details
-
Copy full SHA for 3e6e22d - Browse repository at this point
Copy the full SHA 3e6e22dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2de4707 - Browse repository at this point
Copy the full SHA 2de4707View commit details
Commits on Apr 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 9da21a7 - Browse repository at this point
Copy the full SHA 9da21a7View commit details -
Switch to preprocessor directives to avoid need for System.Runtime.In…
…teropServices.RuntimeInformation package on net462
Configuration menu - View commit details
-
Copy full SHA for 0076083 - Browse repository at this point
Copy the full SHA 0076083View commit details