Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-10-19Remove the Legacy TLS Provider. (#17391)Martin Baulig
* `MonoTlsProviderFactory` now treats "legacy" as an alias for "default". * `Mono.Net.Security/LegacySslStream`: Removed. This class also wasn't using the `MobileAuthenticatedStream` base class, thus preventing cleanups simplifications in that area. * `Mono.Net.Security/LegacyTlsProvider`: Removed. * `Mono.Security/Mono.Security.Protocol.Tls*`: Removed all the old legacy code. * `Mono.Security.Interface.MonoTlsProviderFactory`: Bump internal version to 4.
2019-10-14[System.Net.Http] Clean up HttpMessageHandler setup (#17252)Marek Safar
* [System.Net.Http] Clean up HttpMessageHandler setup to avoid reflection and not to be recursive Superseded #15051 and #15922 * [csproj] Update project files
2019-06-20Add Windows x64 Full AOT Interpreter support on CI. (#15127)Johan Lorensson
Add support to run full interpreter test suite on CI for Windows x64 Full AOT. Since Windows x64 Full AOT uses a different full AOT profile WinAOT a separate testing profile was setup for the interpreter testing. NOTE, this profile is pure for testing, inline with the other testing profiles. It is also reusing most of its sources from other sources files (mainly WinAOT) to reduce maintenance of the profile. Commit also includes some smaller adjustments needed in order to get full pass rate for Windows x64 Full AOT + Interpreter on CI.
2019-04-30[csproj] Update project filesmonojenkins
2019-04-29Define `DISABLE_SECURITY` and `DISABLE_REMOTING` on wasm and testing_aot.Martin Baulig
2019-04-25[csproj] Update project filesmonojenkins
2019-03-06[gitattributes] Do CRLF normalization on sln/proj filesAlexander Köplinger
They can be used with native line endings. We now have a shared folder with the dotnet repos and they have CRLF normalization enabled. This difference leads to conflicts while applying changes from the dotnet repos to mono.
2019-01-02[csproj] Update project filesmonojenkins
2018-11-28[interp] Enable System.Data tests on fullaotinterp (#11798)Vlad Brezae
* [interp] Enable System.Data tests on fullaotinterp * [csproj] Update project files
2018-10-30[tests] Add new build profile for testing mixed mode (#11307)Vlad Brezae
We aot only the bcl (--aot=full,interp) while the tests code is interpreted. <!-- Thank you for your Pull Request! If you are new to contributing to Mono, please try to do your best at conforming to our coding guidelines http://www.mono-project.com/community/contributing/coding-guidelines/ but don't worry if you get something wrong. One of the project members will help you to get things landed. Does your pull request fix any of the existing issues? Please use the following format: Fixes #issue-number -->
2018-09-02Move the PreBuild dependency property later in the file so targets can't ↵Katelyn Gadd
override it (#10429) * Move the PreBuild dependency property later in the file so targets can't override it * [csproj] Update project files
2018-08-31Kill sln dependencies (#10406)Katelyn Gadd
* Remove use of sln dependencies and use csproj project references instead * Rewrite jay.vcxproj so it builds correctly even without help from the sln file * Force pre-build event to run after references are resolved. Change how culevel.exe path is computed to be more resilient. * [csproj] Update project files
2018-08-09Move to generating msbuild choose elements to get if-else selection behavior ↵Katelyn Gadd
for sources in projects so that we don't get erroneous duplicate files in cases where there are both profile and host platform criteria (#9952) A recent commit revealed that in cases where we select based on a mix of host platform and profile, genproj csproj files can end up with duplicate sources because the existing <ItemGroup Condition= approach could make multiple groups match for a given compile when we really just want one. This PR changes to generating a cascade of msbuild <Choose> elements, which give if-else selection to ensure that we only ever build a single set of files.
2018-08-02Use msbuild project reference to establish dependency on genconsts instead ↵Katelyn Gadd
of solution dependencies (#9670) Using solution dependencies in ```bcl.sln``` seems flaky and seems like it might not establish the full ordering we need to ensure that ```Consts.cs``` exists before we build things that require it. Let's try using project references (where ```corlib.dll``` 'depends' on ```genconsts.exe```) instead. This should also insert the dependency for any project that includes Consts.cs instead of just corlib. This PR also makes update-solution-files actually fail if ```genconsts.exe``` fails to build because it was driving me mad. Part of #6886
2018-07-05Legacy TLS Removal Preparations (#9301)Martin Baulig
This PR prepares the upcoming removal of the Legacy TLS Provider. - The internal (and soon-to-be-removed) class `MD5SHA1` has been moved and changed namespace. - `Novell.Directory.Ldap.Connection` now uses `SslStream` instead of Legacy TLS, this ports the Novell Ldap library to use TLS 1.2, see #9363. - Removed obsolete Ssl/Spnego authentication from `System.ServiceModel`. - Removed duplicate copy of the Legacy TLS Provider from `System.ServiceModel`. - Ported `System.Web.Mail.SmtpClient` to use `SslStream`. - Removed the `Mono.Security.Protocol.Tls` documentation.
2018-06-29Rework genproj to use gensources to build sources list for each profile and ↵Katelyn Gadd
host platform (#8985) * Update genproj makefile to include gensources Update genproj argument parser to be more generous about displaying help * Checkpoint * Checkpoint * Checkpoint * Checkpoint * Checkpoint * Checkpoint * Checkpoint * Checkpoint * Fix rebase issue * Checkpoint * Checkpoint * Fix built sources only being added to one profile * Fix typo * Checkpoint * Fix indentation * Use csc instead of mcs * Checkpoint * Fix BUILT_SOURCES only being handled for the first profile processed * Checkpoint * Checkpoint * Strip double slashes from paths to fix spurious csproj change * Checkpoint * Checkpoint * Checkpoint * Checkpoint: Fix genproj compilation * Checkpoint * Checkpoint * Checkpoint * Fix crash when no targets were loaded (due to an error) * Checkpoint * Checkpoint * Checkpoint * Fix TryParseTargetInto bug * Checkpoint * Shuffle exclude logic around so that it works correctly during genproj diffing * Remove gensources tracing * Checkpoint * Fix handling of oddball sources paths from executable.make * Fix jay not being set to build * Fix wrong slashes being used for embedded resource paths * [csproj] Update project files
2018-06-14[build] Rename darwin platform to macos + Add `unix` host platform (#9022)Ludovic Henry
* [mcs] Rename darwin paltform to macos Darwin is common to both macOS and iOS/tvOS/watchOS, while we use the darwin platform only for macOS. * [mcs] Add Unix platform for other Unixes than Linux * [mcs] Remove PLATFORMS from xammac_net_4_5 since it only make sense on macos * [bcl] Bump corlib version * [csproj] Update project files
2018-06-01[csproj] Update project filesmonojenkins
2018-05-22[bcl] Start replacing gensources.sh with gensources.cs (#8619)Katelyn Gadd
This PR introduces a new tool, gensources.cs, which replaces gensources.sh. It is able to parse the whole set of .sources files for a library in one go so that genproj can use that information to encode all our platform and profile specific files into one csproj file. For now this PR just introduces it and switches libraries to using it instead of gensources.sh.
2018-05-15[System]: New SslStream APIs from CoreFX. (#8665)Martin Baulig
* Bring `SslClientAuthenticationOptions`, `SslServerAuthenticationOptions` and `SslApplicationProtocol` from CoreFX. * SslStream: Added new public overloads from CoreFX: - All authentication methods have a new overload without the `SslProtocols` argument. - New `AuthenticateAsClientAsync(SslClientAuthenticationOptions,CancellationToken)`. - New `AuthenticateAsServerAsync(SslServerAuthenticationOptions,CancellationToken)`. - We now use `SecurityProtocol.SystemDefaultSecurityProtocols` (which is zero) as default value everywhere. Everything below is internal: * `Mono.Security.Interface`: Add internal `MonoServerCertificateSelectionCallback`, `IMonoAuthenticationOptions`, `IMonoSslClientAuthenticationOptions` and `IMonoSslServerAuthenticationOptions`. * `Mono.Security.Interface.IMonoSslStream`: Add new overloads without the `SslProtocols` argument. * `Mono.Security.Interface.IMonoSslStream2`: New internal interface, extending `IMonoSslStream` with the new internal APIs. * `Mono.Net.Security`: New internal `MonoSslAuthenticationOptions`, `MonoSslClientAuthenticationOptions` and `MonoSslServerAuthenticationOptions` classes; these are just proxies for `SslClientAuthenticationOptions` and `SslServerAuthenticationOptions` (which unfortunately don't share a common base class). * `Mono.Net.Security.MobileAuthenticatedStream`: - Implement `IMonoSslStream2`. - `ProcessAuthentication()` now takes `MonoSslAuthenticationOptions` instead of the old argument list, added `CancellationToken`. - All `IMonoSslStream` facing APIs now construct `MonoSslAuthenticationOptions` to pass it to `ProcessAuthentication()`. * `Mono.Net.Security`: `MobileTlsContext` and `MobileTlsStream` now use `MonoSslAuthenticationOptions` to store all options. Tests for the new APIs are in https://github.com/xamarin/web-tests/commit/fe347589326206f36d3cd42b59d305ff3c291857.
2018-04-16Default platform to net_4_x if none is specified, to fix tools that build ↵Katelyn Gadd
without setting a platform (#8223) * Default platform to net_4_x if none is specified, to fix tools that build without setting a platform * [csproj] Update project files
2018-03-28[msvc] Update csproj files (#7811)monojenkins
* [msvc] Update csproj files * [msvc] Delete old net_4_x.csproj and xbuild_12.csproj files
2014-08-06[Cleanup] Removed a bunch of superfluous .csproj and .sln filesAlexander Köplinger
Most of these files weren't updated in the last >5 years and serve no purpose today, so they only clutter the repository.
2010-06-122010-06-10 Jonathan Chambers <joncham@gmail.com>Jonathan Chambers
* Add System.Security.csproj and new configurations for Mono.Security and System. svn path=/trunk/mcs/; revision=158846
2010-06-092010-06-08 Jonathan Chambers <joncham@gmail.com>Jonathan Chambers
* Build jay and run before gmcs and System.Xml. The basic profile should build now. svn path=/trunk/mcs/; revision=158724
2010-06-082010-06-07 Jonathan Chambers <joncham@gmail.com>Jonathan Chambers
* Copy *.dll.sources to *.dll.msbuild.sources during build to change '/' to '\' for Windows. svn path=/trunk/mcs/; revision=158620
2010-06-072010-06-07 Jonathan Chambers <joncham@gmail.com>Jonathan Chambers
* Add start of MSBuild based build. svn path=/trunk/mcs/; revision=158591