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
2018-01-05[msvc] Update csproj filesmonojenkins
2018-01-03Bump corefx (#6119)Marek Safar
2017-11-26[msvc] Update csproj files (#6100)monojenkins
2017-11-24Bump corefxMarek Safar
2017-11-17[msvc] Update csproj filesmonojenkins
2017-11-15[System.Data] Add missing Microsoft.SqlServer.Server APIsMarek Safar
2017-11-13[msvc] Update csproj files (#5995)monojenkins
2017-11-06[mcs make] introduce TEST_RUNTIME_FLAGS, analogously to TEST_RUNTIME vs. RUNTIMEBernhard Urban
2017-10-25[System.Data] Cleanup after #4893 (PR) (#5841)Egor Bogatov
* [System.Data] cleanup * Remove DataProviderTests
2017-10-21Fix tarball buildAlexander Köplinger
corefx.unix.sources wasn't included in the tarball so it failed.
2017-10-19[System.Data] move to corefx (#4893)Egor Bogatov
* [System.Data] move to corefx * [System.Data] Missing API: SqlTypesSchemaImporters * [System.Data] Missing API: SqlNotification* * [System.Data] Missing API: SqlDataSourceEnumerator * [System.Data] Missing API: SQLDebugging * [System.Data] fix build * [System.Data] remove public API from different assemblies * Apply corefx changes * Hide some PropertiesTest (missing API in corefx) * Missing API: TypedDataSetGenerator*, etc * Missing API: SqlClientMetaDataCollectionNames * Missing API: SqlCredential * SqlMetaDataFactory.cs is actually sqlmetadatafactory.cs (case sensitive) * Missing API: PoolBlockingPeriod * Fix case-sensitive issues * Odbc support (requires changes in corefx) * ODBC support * Re-enable ODBC ProviderTests * Apply corefx changes * temp commit: fix build * Missing API: Microsoft.SqlServer.Server.* * Missing API: DBDataPermission, OdbcPermission, SqlClientPermission * Missing API: DbProviderFactoriesConfigurationHandler, DbProviderConfigurationHandler, DbProviderFactory.CreatePermission * Missing API: DbProviderFactories * Missing API: SqlCommand BeginXXX methods, SqlException.Message, OdbcFactory.CreatePermission * Add System.Data.SqlClient.SqlMetaData.xml (embedded resource) * reorganize *.sources files for win32, macos and linux * bump corefx * [System.Data] API: SqlDataSourceEnumerator, SqlClientFactory, SqlParameter, SqlMetaData * [System.Data] cleanup * [System.Data] mobile profile, cleanup * [System.Data] Fix few odbc tests (changes are in corefx PR) * [System.Data] fix Open_ConnectionString_DatabaseInvalid test * [System.Data] enable all tests * Add AsynchronousProcessing and ConnectionReset to SqlConnectionStringBuilder * [System.Data] fix build * fix all ProvierTests * fix tests (files several issues against the corefx) * system-data code cleanup * system-data code cleanup * add SqlTypesSchemaImporters * remove corefx/RuntimeInformation.cs, add OleDbPermission stub * OleDbPermission should be serializable (fixing tests) * remove ODBC from mobile profile * fix linux build - add 619 (obsolete) to nowarn list. * temp commit * fix a few api diff issues * add OleDbType type (currently exists even in mobile profiles) * add stubs * Add stubs for OleDb * improve oledb stubs * improve oledb stubs * improve oledb stubs * more oledb stubs * add xunit tests from corefx * Add SqlClient corefx tests * use corefx sources for System.Data.DataSetExtensions * Remove [InternalsVisibleTo ("System.Data.DataSetExtensions")] from System.Data * [System.Data] sync with external/corefx * fix linux\macOS builds * Fix xunit tests * System.Data/Makefile cleanup * tabify System.Data * Rollback changes in System.Web & SqlSharpCli * small cleanup * [System.Data] Remove redundant .sources files * [System.Data] update odbc Res.cs * [System.Data] Remove redundant .sources files * fix System.Data.dll.sources (add a blank line) * remove TypeForwarder for DBNull and register xunit tests for System.Data * Bump API snapshot submodule
2017-08-22[bcl] Remove unused left over .args filesAlexander Köplinger
2017-08-07[msvc] Update csproj filesAlexander Köplinger
2017-08-07[bcl] Specify the name of the key file on the command line instead of using ↵Zoltan Varga
the AssemblyKeyFile attribute for consistency and to make it easier to do path name manipulation on the file name. (#5316)
2017-06-28[build] Add a new profileMarek Safar
2017-05-15[msvc] Update csproj files (#4846)monojenkins
2017-05-12[Facades] Update with new typeforwarders/APIs (#4838)Alexander Köplinger
2017-05-10[msvc] Update csproj files (#4822)monojenkins
2017-05-09Bump corefxMarek Safar
2017-05-09[System.Data] Update cas test categoryMarek Safar
2017-04-28[msvc] Update csproj files (#4772)monojenkins
2017-04-28[System.Data] Add InvalidUdtException backAlexander Köplinger
It was accidentally removed in 2729605554a10de4ebc74cc163409792885420af.
2017-04-25[msvc] Update csproj filesmonojenkins
2017-04-25Bump corefxMarek Safar
2017-04-19[corlib/System.Data] Test fixes for xammac 4.5 and watchosAlexander Köplinger
The TrimSpecial() method and Windows-specific code was removed from xammac 4.5 so reflection can't find it anymore, handle this case. Also add a workaround for SqlParameterCollectionTest.CopyToTest() which fails on watchos since the SqlCommand would throw a PNSE. It's a workaround because it just makes the test ignored since we don't set the env var that ConnectionManager.Instance.Sql reads in XI tests, but it makes the test consistent with the other tests in the suite. We should fix this properly later on.
2017-04-19[System.Data] Call SqlConnection.ClearAllPools() only when we had a connectionAlexander Köplinger
When ConnectionManager.Instance.Sql.ConnectionString throws in SetUp() we'd still call SqlConnection.ClearAllPools() in the TearDown() which happens for example when the connection string environment variable is not set. This is a problem on WatchOS since SqlConnection.ClearAllPools() throws PlatformNotSupportedException there, making the tests fail. Instead we now check whether the connectionString is set and only call the method in that case.
2017-04-18[msvc] Update csproj files (#4711)monojenkins
2017-04-07Make sure .sources files end with newlineAlexander Köplinger
It confuses the build on Linux otherwise.
2017-04-05[System.Data] Fix Azure SQL specific issues (ProviderTests) (#4622)Egor Bogatov
* [System.Data] Fix Azure SQL specific issues (ProviderTests) * [System.Data] ChangeDatabase - Azure specific test * [System.Data] SqlConnectionTest: use Assert.Throws instead
2017-03-24[System.Data] Update tests for mobile profilesMarek Safar
2017-03-23[System.Data] Fixes tests build with mobile profilesMarek Safar
2017-03-22[System.Data] Integration tests (#4538)Egor Bogatov
2017-03-16Include Mono version in corlib versionAlexander Köplinger
This makes it possible to version the runtime<->corlib interface for each version branch independently and fixes the problem of monolite getting overwritten by changes in different branches when corlib version is still the same. We're moving definition of the corlib version into configure.ac so we can more easily bake the Mono version into it.
2017-03-16[System.Data] Rename method parameters to match .NET contractAlexander Köplinger
2017-02-24[msvc] Update csproj filesmonojenkins
2017-02-23[System.Data] referencesource -> corefx: ProviderBase & SqlClient stuff (#4383)Egor Bogatov
* [System.Data] referencesource -> corefx * [System.Data] referencesource -> corefx * [System.Data] corefx migration, fix ActivityCorrelator * [System.Data] use DbProviderFactory, DbConnectionPoolGroupProviderInfo, OperationAbortedException from corefx
2017-02-10[System.Data] Add RESX_RESOURCE_STRINGMarek Safar
2017-02-01[msvc] Update csproj files (#4315)monojenkins
2017-02-01[System.Data] referencesource -> corefx (#4299)Egor Bogatov
* [System.Data] SQLTypes from corefx * [System.Data] DataStorage + subclasses from corefx * [System.Data] remove dead referencesource.sources references * [System.Data] Generate SR.cs from corefx using resx2sr tool * [System.Data] move common references to corefx.common.sources * [System.Data] remove /ReferenceSources/SR.cs * [System.Data] remove duplicates in corefx.common.sources (accidentally were added) * [System.Data] simple types & enums from corefx * [System.Data] referencesource -> corefx * [System.Data] Referencesource -> corefx * [System.Data] re-order (sort) files in corefx.common.sources, DbCommandBuilder from corefx * [System.Data] Referencesource -> corefx * [System.Data] DataRow, DataSet, Filters, etc from corefx. XmlDataDocument is internal in corefx but used to be public in mono. * [System.Data] rollback referencesource changes * [System.Data] Wrap /referencesource/DataSet.cs with #ifdef COREFX in order to include missing DataSetSchemaImporterExtension and ignore DataSet
2017-01-26[msvc] Update csproj files (#4295)monojenkins
2017-01-26[System.Data] SqlTypes and DataStorage from corefx (#4291)Egor Bogatov
2017-01-23[build] Add new profileMarek Safar
2017-01-11Mono BCL test fixes so XM can run them (#4210)Chris Hamons
2017-01-10[msvc] Update csproj files (#4221)monojenkins
2016-12-22[bcl] Clean up old run-test.bat and *.csproj filesAlexander Köplinger
They .bat files haven't been used for a long time and don't work anymore. The csproj files for the facades have a different name now.
2016-12-21Renamed profile to winaot (#4190)Henric Müller
2016-12-20[bcl] Rename aot_hybrid profile to testing_aot_hybridAlexander Köplinger
2016-12-20[bcl] Rename aot_only profile to testing_aot_fullAlexander Köplinger
2016-12-19[build] Add new profileMarek Safar
2016-11-24Rename the mobile_static profile to aot_onlyAlexander Köplinger
We decided it's a better name since we're using the profile to test FullAOT scenarios on desktop (as opposed to the mobile profiles). While doing the rename I saw that a lot of the #ifdefs were using MOBILE_STATIC even though the code should actually be included/excluded in all FullAOT scenarios, e.g. System.Reflection.Emit. I replaced those cases with FULL_AOT_RUNTIME instead. For cases where code is specific to this profile, I added a new AOT_ONLY_DESKTOP define.