├── oacr.cfg ├── src ├── inc │ ├── 1031 │ │ ├── aspnet_perf.ini │ │ ├── aspnet_perf2.ini │ │ ├── CORPerfMonSymbols.ini │ │ ├── _DataPerfCounters.ini │ │ └── _NetworkingPerfCounters.ini │ ├── 1041 │ │ ├── aspnet_perf.ini │ │ ├── aspnet_perf2.ini │ │ ├── CORPerfMonSymbols.ini │ │ ├── _DataPerfCounters.ini │ │ └── _NetworkingPerfCounters.ini │ ├── obj │ │ └── i386 │ │ │ └── dummy │ └── .gitmirrorall ├── pal │ ├── src │ │ ├── .tpattributes │ │ └── build_tools │ │ │ └── mdtool_dummy │ ├── tests │ │ └── palsuite │ │ │ ├── c_runtime │ │ │ ├── ungetc │ │ │ │ ├── test2 │ │ │ │ │ └── test2.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── feof │ │ │ │ ├── test1 │ │ │ │ │ └── testfile │ │ │ │ └── CMakeLists.txt │ │ │ ├── fread │ │ │ │ ├── test1 │ │ │ │ │ └── testfile │ │ │ │ ├── test2 │ │ │ │ │ └── testfile │ │ │ │ ├── test3 │ │ │ │ │ └── testfile │ │ │ │ └── CMakeLists.txt │ │ │ ├── ferror │ │ │ │ ├── test1 │ │ │ │ │ └── testfile │ │ │ │ ├── test2 │ │ │ │ │ └── testfile │ │ │ │ └── CMakeLists.txt │ │ │ ├── ftell │ │ │ │ ├── test1 │ │ │ │ │ └── testfile.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── _alloca │ │ │ │ └── CMakeLists.txt │ │ │ ├── _ecvt │ │ │ │ └── CMakeLists.txt │ │ │ ├── _fdopen │ │ │ │ └── CMakeLists.txt │ │ │ ├── _finite │ │ │ │ └── CMakeLists.txt │ │ │ ├── _getw │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ └── test.dat │ │ │ ├── _isnan │ │ │ │ └── CMakeLists.txt │ │ │ ├── _itow │ │ │ │ └── CMakeLists.txt │ │ │ ├── _mbsdec │ │ │ │ └── CMakeLists.txt │ │ │ ├── _mbsinc │ │ │ │ └── CMakeLists.txt │ │ │ ├── _mbslen │ │ │ │ └── CMakeLists.txt │ │ │ ├── _putw │ │ │ │ └── CMakeLists.txt │ │ │ ├── _rotl │ │ │ │ └── CMakeLists.txt │ │ │ ├── _rotr │ │ │ │ └── CMakeLists.txt │ │ │ ├── _strlwr │ │ │ │ └── CMakeLists.txt │ │ │ ├── _swab │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wcslwr │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wtoi │ │ │ │ └── CMakeLists.txt │ │ │ ├── abs │ │ │ │ └── CMakeLists.txt │ │ │ ├── acos │ │ │ │ └── CMakeLists.txt │ │ │ ├── asin │ │ │ │ └── CMakeLists.txt │ │ │ ├── atan │ │ │ │ └── CMakeLists.txt │ │ │ ├── atan2 │ │ │ │ └── CMakeLists.txt │ │ │ ├── atof │ │ │ │ └── CMakeLists.txt │ │ │ ├── atoi │ │ │ │ └── CMakeLists.txt │ │ │ ├── atol │ │ │ │ └── CMakeLists.txt │ │ │ ├── ceil │ │ │ │ └── CMakeLists.txt │ │ │ ├── cos │ │ │ │ └── CMakeLists.txt │ │ │ ├── cosh │ │ │ │ └── CMakeLists.txt │ │ │ ├── ctime │ │ │ │ └── CMakeLists.txt │ │ │ ├── fabs │ │ │ │ └── CMakeLists.txt │ │ │ ├── fflush │ │ │ │ └── CMakeLists.txt │ │ │ ├── floor │ │ │ │ └── CMakeLists.txt │ │ │ ├── fmod │ │ │ │ └── CMakeLists.txt │ │ │ ├── free │ │ │ │ └── CMakeLists.txt │ │ │ ├── fseek │ │ │ │ └── CMakeLists.txt │ │ │ ├── fwrite │ │ │ │ └── CMakeLists.txt │ │ │ ├── getc │ │ │ │ └── CMakeLists.txt │ │ │ ├── isalnum │ │ │ │ └── CMakeLists.txt │ │ │ ├── isalpha │ │ │ │ └── CMakeLists.txt │ │ │ ├── isdigit │ │ │ │ └── CMakeLists.txt │ │ │ ├── islower │ │ │ │ └── CMakeLists.txt │ │ │ ├── isspace │ │ │ │ └── CMakeLists.txt │ │ │ ├── isupper │ │ │ │ └── CMakeLists.txt │ │ │ ├── labs │ │ │ │ └── CMakeLists.txt │ │ │ ├── log │ │ │ │ └── CMakeLists.txt │ │ │ ├── log10 │ │ │ │ └── CMakeLists.txt │ │ │ ├── memchr │ │ │ │ └── CMakeLists.txt │ │ │ ├── memcmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── memcpy │ │ │ │ └── CMakeLists.txt │ │ │ ├── memmove │ │ │ │ └── CMakeLists.txt │ │ │ ├── memset │ │ │ │ └── CMakeLists.txt │ │ │ ├── modf │ │ │ │ └── CMakeLists.txt │ │ │ ├── realloc │ │ │ │ └── CMakeLists.txt │ │ │ ├── sin │ │ │ │ └── CMakeLists.txt │ │ │ ├── sinh │ │ │ │ └── CMakeLists.txt │ │ │ ├── sqrt │ │ │ │ └── CMakeLists.txt │ │ │ ├── strcat │ │ │ │ └── CMakeLists.txt │ │ │ ├── strchr │ │ │ │ └── CMakeLists.txt │ │ │ ├── strcmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── strcpy │ │ │ │ └── CMakeLists.txt │ │ │ ├── strcspn │ │ │ │ └── CMakeLists.txt │ │ │ ├── strlen │ │ │ │ └── CMakeLists.txt │ │ │ ├── strncat │ │ │ │ └── CMakeLists.txt │ │ │ ├── strncmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── strncpy │ │ │ │ └── CMakeLists.txt │ │ │ ├── strpbrk │ │ │ │ └── CMakeLists.txt │ │ │ ├── strrchr │ │ │ │ └── CMakeLists.txt │ │ │ ├── strspn │ │ │ │ └── CMakeLists.txt │ │ │ ├── strstr │ │ │ │ └── CMakeLists.txt │ │ │ ├── strtok │ │ │ │ └── CMakeLists.txt │ │ │ ├── strtoul │ │ │ │ └── CMakeLists.txt │ │ │ ├── tan │ │ │ │ └── CMakeLists.txt │ │ │ ├── tanh │ │ │ │ └── CMakeLists.txt │ │ │ ├── time │ │ │ │ └── CMakeLists.txt │ │ │ ├── tolower │ │ │ │ └── CMakeLists.txt │ │ │ ├── toupper │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcscat │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcschr │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcscmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcscpy │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcslen │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcsncat │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcsncmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcsncpy │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcspbrk │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcsrchr │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcsstr │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcstok │ │ │ │ └── CMakeLists.txt │ │ │ ├── __iscsym │ │ │ │ └── CMakeLists.txt │ │ │ ├── _fullpath │ │ │ │ └── CMakeLists.txt │ │ │ ├── _makepath │ │ │ │ └── CMakeLists.txt │ │ │ ├── _mbsninc │ │ │ │ └── CMakeLists.txt │ │ │ ├── _splitpath │ │ │ │ └── CMakeLists.txt │ │ │ ├── _stricmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── _strnicmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wcsicmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wcsnicmp │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wmakepath │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wsplitpath │ │ │ │ └── CMakeLists.txt │ │ │ ├── iswdigit │ │ │ │ └── CMakeLists.txt │ │ │ ├── iswprint │ │ │ │ └── CMakeLists.txt │ │ │ ├── iswspace │ │ │ │ └── CMakeLists.txt │ │ │ ├── iswupper │ │ │ │ └── CMakeLists.txt │ │ │ ├── iswxdigit │ │ │ │ └── CMakeLists.txt │ │ │ ├── isxdigit │ │ │ │ └── CMakeLists.txt │ │ │ ├── localtime │ │ │ │ └── CMakeLists.txt │ │ │ ├── rand_srand │ │ │ │ └── CMakeLists.txt │ │ │ ├── towlower │ │ │ │ └── CMakeLists.txt │ │ │ ├── towupper │ │ │ │ └── CMakeLists.txt │ │ │ ├── exit │ │ │ │ └── CMakeLists.txt │ │ │ ├── _gcvt │ │ │ │ └── CMakeLists.txt │ │ │ ├── bsearch │ │ │ │ └── CMakeLists.txt │ │ │ ├── errno │ │ │ │ └── CMakeLists.txt │ │ │ ├── fclose │ │ │ │ └── CMakeLists.txt │ │ │ ├── fputs │ │ │ │ └── CMakeLists.txt │ │ │ ├── isprint │ │ │ │ └── CMakeLists.txt │ │ │ ├── malloc │ │ │ │ └── CMakeLists.txt │ │ │ ├── qsort │ │ │ │ └── CMakeLists.txt │ │ │ ├── strtod │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcstod │ │ │ │ └── CMakeLists.txt │ │ │ ├── wprintf │ │ │ │ └── CMakeLists.txt │ │ │ ├── _open_osfhandle │ │ │ │ └── CMakeLists.txt │ │ │ ├── exp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test1 │ │ │ │ │ └── testinfo.dat │ │ │ ├── fgets │ │ │ │ └── CMakeLists.txt │ │ │ ├── getenv │ │ │ │ └── CMakeLists.txt │ │ │ ├── pow │ │ │ │ └── CMakeLists.txt │ │ │ ├── _putenv │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcstol │ │ │ │ └── CMakeLists.txt │ │ │ ├── wcstoul │ │ │ │ └── CMakeLists.txt │ │ │ ├── _wfopen │ │ │ │ └── CMakeLists.txt │ │ │ ├── fopen │ │ │ │ └── CMakeLists.txt │ │ │ ├── printf │ │ │ │ ├── test2 │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test4 │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test3 │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test6 │ │ │ │ │ └── testinfo.dat │ │ │ ├── sscanf │ │ │ │ ├── test1 │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test11 │ │ │ │ │ └── testinfo.dat │ │ │ │ ├── test6 │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test9 │ │ │ │ │ └── testinfo.dat │ │ │ ├── swscanf │ │ │ │ └── test1 │ │ │ │ │ └── testinfo.dat │ │ │ └── sprintf │ │ │ │ ├── test2 │ │ │ │ └── testinfo.dat │ │ │ │ └── test4 │ │ │ │ └── testinfo.dat │ │ │ ├── file_io │ │ │ ├── WriteFile │ │ │ │ ├── test2 │ │ │ │ │ └── Results.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── CopyFileW │ │ │ │ ├── test1 │ │ │ │ │ └── ExpectedResults.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFileAttributesA │ │ │ │ ├── test1 │ │ │ │ │ ├── no_file │ │ │ │ │ ├── rw_file │ │ │ │ │ ├── .hidden_file │ │ │ │ │ ├── .hidden_ro_file │ │ │ │ │ ├── no_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── rw_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── .hidden_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── ro_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── .hidden_ro_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── normal_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── normal_test_file │ │ │ │ │ └── ro_test_file │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFileAttributesW │ │ │ │ ├── test1 │ │ │ │ │ ├── no_file │ │ │ │ │ ├── rw_file │ │ │ │ │ ├── .hidden_file │ │ │ │ │ ├── .hidden_ro_file │ │ │ │ │ ├── no_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── .hidden_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── ro_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── rw_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── .hidden_ro_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── normal_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── normal_test_file │ │ │ │ │ └── ro_test_file │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetFileAttributesA │ │ │ │ ├── test2 │ │ │ │ │ └── test_file │ │ │ │ ├── test1 │ │ │ │ │ └── test_file │ │ │ │ ├── test4 │ │ │ │ │ └── test_file │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetFileAttributesW │ │ │ │ ├── test2 │ │ │ │ │ └── test_file │ │ │ │ ├── test1 │ │ │ │ │ └── test_file │ │ │ │ ├── test4 │ │ │ │ │ └── test_file │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFileAttributesExW │ │ │ │ ├── test1 │ │ │ │ │ ├── .hidden_file │ │ │ │ │ ├── ro_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── .hidden_directory │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── anchor.txt │ │ │ │ │ ├── normal_test_directory │ │ │ │ │ │ ├── keepme │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── ro_test_file │ │ │ │ │ └── normal_test_file │ │ │ │ └── CMakeLists.txt │ │ │ ├── MoveFileA │ │ │ │ ├── test1 │ │ │ │ │ └── ExpectedResults.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── MoveFileW │ │ │ │ ├── test1 │ │ │ │ │ └── ExpectedResults.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── ReadFile │ │ │ │ ├── test1 │ │ │ │ │ └── NonReadableFile.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── MoveFileExA │ │ │ │ ├── test1 │ │ │ │ │ └── ExpectedResults.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── MoveFileExW │ │ │ │ ├── test1 │ │ │ │ │ └── ExpectedResults.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── FindClose │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateFileA │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateFileW │ │ │ │ └── CMakeLists.txt │ │ │ ├── DeleteFileA │ │ │ │ └── CMakeLists.txt │ │ │ ├── DeleteFileW │ │ │ │ └── CMakeLists.txt │ │ │ ├── FindFirstFileA │ │ │ │ └── CMakeLists.txt │ │ │ ├── FindFirstFileW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetConsoleCP │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFileSize │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetSystemTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetTempPathW │ │ │ │ └── CMakeLists.txt │ │ │ ├── SearchPathA │ │ │ │ └── CMakeLists.txt │ │ │ ├── SearchPathW │ │ │ │ └── CMakeLists.txt │ │ │ ├── gettemppatha │ │ │ │ └── CMakeLists.txt │ │ │ ├── AreFileApisANSI │ │ │ │ └── CMakeLists.txt │ │ │ ├── CompareFileTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── FlushFileBuffers │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetConsoleOutputCP │ │ │ │ └── CMakeLists.txt │ │ │ ├── RemoveDirectoryA │ │ │ │ └── CMakeLists.txt │ │ │ ├── RemoveDirectoryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── FileTimeToDosDateTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── FileTimeToLocalFileTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCurrentDirectoryA │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCurrentDirectoryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetSystemTimeAsFileTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateDirectoryA │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateDirectoryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── FindNextFileA │ │ │ │ └── CMakeLists.txt │ │ │ ├── FindNextFileW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetLongPathNameW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetStdHandle │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetDiskFreeSpaceW │ │ │ │ └── CMakeLists.txt │ │ │ ├── LocalFileTimeToFileTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFileType │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetTempFileNameA │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetTempFileNameW │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetCurrentDirectoryA │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetCurrentDirectoryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── CopyFileA │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetFileTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFullPathNameA │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFullPathNameW │ │ │ │ └── CMakeLists.txt │ │ │ ├── errorpathnotfound │ │ │ │ └── CMakeLists.txt │ │ │ ├── DosDateTimeToFileTime │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetEndOfFile │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetFileTime │ │ │ │ └── CMakeLists.txt │ │ │ └── SetFilePointer │ │ │ │ └── CMakeLists.txt │ │ │ ├── debug_api │ │ │ ├── DebugBreak │ │ │ │ └── CMakeLists.txt │ │ │ ├── OutputDebugStringA │ │ │ │ └── CMakeLists.txt │ │ │ ├── OutputDebugStringW │ │ │ │ └── CMakeLists.txt │ │ │ ├── WriteProcessMemory │ │ │ │ └── CMakeLists.txt │ │ │ └── CMakeLists.txt │ │ │ ├── locale_info │ │ │ ├── GetACP │ │ │ │ └── CMakeLists.txt │ │ │ ├── CompareStringA │ │ │ │ └── CMakeLists.txt │ │ │ ├── CompareStringW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetThreadLocale │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsDBCSLeadByte │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsValidLocale │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetThreadLocale │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetUserDefaultLCID │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetUserDefaultLangID │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsDBCSLeadByteEx │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetSystemDefaultLangID │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetTimeZoneInformation │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetLocaleInfoW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetStringTypeExW │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsValidCodePage │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test2 │ │ │ │ │ └── testinfo.dat │ │ │ ├── GetCPInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test3 │ │ │ │ │ └── testinfo.dat │ │ │ │ └── test2 │ │ │ │ │ └── testinfo.dat │ │ │ ├── MultiByteToWideChar │ │ │ │ └── CMakeLists.txt │ │ │ └── WideCharToMultiByte │ │ │ │ └── CMakeLists.txt │ │ │ ├── miscellaneous │ │ │ ├── _i64tow │ │ │ │ └── CMakeLists.txt │ │ │ ├── lstrcpyW │ │ │ │ └── CMakeLists.txt │ │ │ ├── lstrlenA │ │ │ │ └── CMakeLists.txt │ │ │ ├── lstrlenW │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreatePipe │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetLastError │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetSystemInfo │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetTickCount │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetUserNameW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetVersionExA │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetVersionExW │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsBadCodePtr │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsBadReadPtr │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetLastError │ │ │ │ └── CMakeLists.txt │ │ │ ├── lstrcpynW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCommandLineW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetComputerNameW │ │ │ │ └── CMakeLists.txt │ │ │ ├── FlushInstructionCache │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetEnvironmentStringsW │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterLockedExchangeAdd │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedExchange │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedExchange64 │ │ │ │ └── CMakeLists.txt │ │ │ ├── queryperformancecounter │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedExchangePointer │ │ │ │ └── CMakeLists.txt │ │ │ ├── queryperformancefrequency │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedCompareExchangePointer │ │ │ │ └── CMakeLists.txt │ │ │ ├── CharNextA │ │ │ │ └── CMakeLists.txt │ │ │ ├── _ui64tow │ │ │ │ └── CMakeLists.txt │ │ │ ├── CharNextExA │ │ │ │ └── CMakeLists.txt │ │ │ ├── CloseHandle │ │ │ │ └── CMakeLists.txt │ │ │ ├── MessageBoxW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCalendarInfoW │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedDecrement │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedIncrement │ │ │ │ └── CMakeLists.txt │ │ │ ├── FreeEnvironmentStringsW │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedDecrement64 │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedIncrement64 │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedCompareExchange │ │ │ │ └── CMakeLists.txt │ │ │ ├── InterlockedCompareExchange64 │ │ │ │ └── CMakeLists.txt │ │ │ ├── IsBadWritePtr │ │ │ │ └── CMakeLists.txt │ │ │ ├── lstrcatW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetDateFormatW │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetEnvironmentVariableA │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetEnvironmentVariableW │ │ │ │ └── CMakeLists.txt │ │ │ ├── FormatMessageW │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetEnvironmentVariableA │ │ │ │ └── CMakeLists.txt │ │ │ └── GetEnvironmentVariableW │ │ │ │ └── CMakeLists.txt │ │ │ ├── pal_specific │ │ │ ├── PAL_errno │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_get_stderr │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_get_stdin │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_get_stdout │ │ │ │ └── CMakeLists.txt │ │ │ ├── pal_entrypoint │ │ │ │ └── CMakeLists.txt │ │ │ ├── pal_initializedebug │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_GetPALDirectoryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_GetUserTempDirectoryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_Initialize_Terminate │ │ │ │ └── CMakeLists.txt │ │ │ └── PAL_RegisterLibraryW_UnregisterLibraryW │ │ │ │ └── CMakeLists.txt │ │ │ ├── threading │ │ │ ├── OpenProcess │ │ │ │ └── CMakeLists.txt │ │ │ ├── ReleaseMutex │ │ │ │ └── CMakeLists.txt │ │ │ ├── ResumeThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetErrorMode │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCurrentProcess │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetProcessTimes │ │ │ │ └── CMakeLists.txt │ │ │ ├── SwitchToThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── TerminateProcess │ │ │ │ └── CMakeLists.txt │ │ │ ├── ThreadPriority │ │ │ │ └── CMakeLists.txt │ │ │ ├── YieldProcessor │ │ │ │ └── CMakeLists.txt │ │ │ ├── releasesemaphore │ │ │ │ └── CMakeLists.txt │ │ │ ├── setthreadcontext │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCurrentProcessId │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCurrentThreadId │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetExitCodeProcess │ │ │ │ └── CMakeLists.txt │ │ │ ├── Sleep │ │ │ │ └── CMakeLists.txt │ │ │ ├── SleepEx │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateProcessA │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateProcessW │ │ │ │ └── CMakeLists.txt │ │ │ ├── ExitThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetCurrentThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── WaitForMultipleObjects │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateMutexA_ReleaseMutex │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateMutexW_ReleaseMutex │ │ │ │ └── CMakeLists.txt │ │ │ ├── CriticalSectionFunctions │ │ │ │ └── test8 │ │ │ │ │ └── thistest.dat │ │ │ ├── ExitProcess │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateEventA │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateEventW │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── WaitForMultipleObjectsEx │ │ │ │ ├── test6 │ │ │ │ │ └── thistest.dat │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateSemaphoreA_ReleaseSemaphore │ │ │ │ └── CMakeLists.txt │ │ │ ├── CreateSemaphoreW_ReleaseSemaphore │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetEvent │ │ │ │ └── CMakeLists.txt │ │ │ ├── ResetEvent │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenEventW │ │ │ │ └── CMakeLists.txt │ │ │ ├── SuspendThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── TLS │ │ │ │ └── CMakeLists.txt │ │ │ ├── QueueUserAPC │ │ │ │ └── CMakeLists.txt │ │ │ └── SetConsoleCtrlHandler │ │ │ │ └── CMakeLists.txt │ │ │ ├── composite │ │ │ ├── wfmo │ │ │ │ └── readme.txt │ │ │ ├── object_management │ │ │ │ ├── readme.txt │ │ │ │ ├── event │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── mutex │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── semaphore │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── CMakeLists.txt │ │ │ ├── threading │ │ │ │ └── CMakeLists.txt │ │ │ ├── CMakeLists.txt │ │ │ └── synchronization │ │ │ │ └── CMakeLists.txt │ │ │ ├── filemapping_memmgt │ │ │ ├── HeapFree │ │ │ │ └── CMakeLists.txt │ │ │ ├── LocalAlloc │ │ │ │ └── CMakeLists.txt │ │ │ ├── VirtualQuery │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetProcessHeap │ │ │ │ └── CMakeLists.txt │ │ │ ├── FreeLibraryAndExitThread │ │ │ │ └── CMakeLists.txt │ │ │ ├── LocalFree │ │ │ │ └── CMakeLists.txt │ │ │ ├── FreeLibrary │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetProcAddress │ │ │ │ └── CMakeLists.txt │ │ │ ├── UnmapViewOfFile │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetModuleFileNameA │ │ │ │ └── CMakeLists.txt │ │ │ ├── GetModuleFileNameW │ │ │ │ └── CMakeLists.txt │ │ │ ├── HeapAlloc │ │ │ │ └── CMakeLists.txt │ │ │ ├── VirtualFree │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenFileMappingA │ │ │ │ └── CMakeLists.txt │ │ │ ├── OpenFileMappingW │ │ │ │ └── CMakeLists.txt │ │ │ ├── ReadProcessMemory │ │ │ │ └── CMakeLists.txt │ │ │ ├── RtlMoveMemory │ │ │ │ └── CMakeLists.txt │ │ │ ├── UnlockFile │ │ │ │ └── CMakeLists.txt │ │ │ ├── HeapReAlloc │ │ │ │ └── CMakeLists.txt │ │ │ ├── MapViewOfFile │ │ │ │ └── CMakeLists.txt │ │ │ ├── VirtualProtect │ │ │ │ └── CMakeLists.txt │ │ │ └── LockFile │ │ │ │ └── CMakeLists.txt │ │ │ ├── exception_handling │ │ │ ├── pal_finally │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_TRY_LEAVE_FINALLY │ │ │ │ └── CMakeLists.txt │ │ │ ├── SetUnhandledExceptionFilter │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_TRY_EXCEPT │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_GetBottommostRegistration │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_EXCEPT_FILTER │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_TRY_EXCEPT_EX │ │ │ │ └── CMakeLists.txt │ │ │ ├── RaiseException │ │ │ │ └── CMakeLists.txt │ │ │ ├── PAL_EXCEPT_FILTER_EX │ │ │ │ └── CMakeLists.txt │ │ │ └── pal_except │ │ │ │ └── CMakeLists.txt │ │ │ ├── samples │ │ │ └── CMakeLists.txt │ │ │ └── loader │ │ │ ├── CMakeLists.txt │ │ │ ├── LoadLibraryW │ │ │ └── CMakeLists.txt │ │ │ └── LoadLibraryA │ │ │ └── CMakeLists.txt │ ├── .gitmirrorall │ ├── prebuilt │ │ ├── inc │ │ │ ├── readme.txt │ │ │ └── ndpversion.h │ │ └── corerror │ │ │ └── readme.txt │ ├── tools │ │ ├── CMakeLists.txt │ │ └── setup-compiler-clang.sh │ └── inc │ │ └── rt │ │ ├── eh.h │ │ ├── emmintrin.h │ │ ├── errorrep.h │ │ ├── hstring.h │ │ ├── intrin.h │ │ ├── psapi.h │ │ ├── share.h │ │ ├── stdint.h │ │ ├── tchar.h │ │ ├── xmmintrin.h │ │ ├── objbase.h │ │ └── ole2.h ├── ToolBox │ ├── CMakeLists.txt │ ├── .gitmirror │ └── SOS │ │ ├── .gitmirror │ │ ├── CMakeLists.txt │ │ ├── SOSAndICorDebug.docx │ │ ├── Strike │ │ └── .gitmirror │ │ ├── diasdk │ │ └── .gitmirror │ │ └── DacTableGen │ │ └── .gitmirror ├── coreclr │ ├── hosts │ │ ├── corerun │ │ │ ├── test.txt │ │ │ ├── .gitmirror │ │ │ └── native.rc │ │ ├── CMakeLists.txt │ │ ├── .gitmirror │ │ ├── coreconsole │ │ │ ├── .gitmirror │ │ │ └── native.rc │ │ └── unixcorerun │ │ │ └── .gitmirror │ ├── .gitmirror │ └── CMakeLists.txt ├── jit │ ├── ClrJit.exports │ ├── .gitmirror │ ├── jitstd │ │ ├── .gitmirror │ │ └── new.h │ ├── Native.rc │ ├── jitpch.cpp │ └── jitstd.h ├── strongname │ ├── CMakeLists.txt │ ├── api │ │ ├── wks │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ ├── crossgen │ │ │ └── .gitmirror │ │ └── common.cpp │ ├── .gitmirror │ ├── inc │ │ └── .gitmirror │ └── strongname.vcxproj.vspscc ├── gc │ └── .gitmirrorall ├── md │ ├── hotdata │ │ ├── full │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ ├── crossgen │ │ │ └── .gitmirror │ │ └── full-staticcrt │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ ├── winmd │ │ ├── dbi │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── wks │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ ├── inc │ │ │ └── .gitmirror │ │ └── crossgen │ │ │ └── .gitmirror │ ├── .gitmirror │ ├── enc │ │ ├── .gitmirror │ │ ├── dbi │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ ├── wks │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ └── crossgen │ │ │ └── .gitmirror │ ├── inc │ │ └── .gitmirror │ ├── runtime │ │ ├── dbi │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ ├── wks │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ └── crossgen │ │ │ └── .gitmirror │ ├── compiler │ │ ├── .gitmirror │ │ ├── dbi │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── wks │ │ │ ├── CMakeLists.txt │ │ │ └── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ └── crossgen │ │ │ └── .gitmirror │ ├── heaps │ │ └── .gitmirror │ ├── tables │ │ └── .gitmirror │ ├── ceefilegen │ │ └── .gitmirror │ ├── datasource │ │ ├── .gitmirror │ │ └── dbi │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ ├── md_dac.cmake │ ├── md_wks.cmake │ └── CMakeLists.txt ├── mscorlib │ ├── .gitmirrorall │ ├── src │ │ ├── mscorlib.txt │ │ └── System │ │ │ ├── Convert.cs │ │ │ ├── Version.cs │ │ │ ├── Text │ │ │ └── Encoding.cs │ │ │ ├── TimeZoneInfo.cs │ │ │ ├── IO │ │ │ ├── StreamReader.cs │ │ │ └── FileSystemEnumerable.cs │ │ │ ├── Threading │ │ │ ├── SpinWait.cs │ │ │ ├── ThreadPool.cs │ │ │ └── Tasks │ │ │ │ └── TaskScheduler.cs │ │ │ ├── Collections │ │ │ ├── Hashtable.cs │ │ │ └── Generic │ │ │ │ └── EqualityComparer.cs │ │ │ ├── Globalization │ │ │ └── Tables │ │ │ │ └── CharInfo.nlp │ │ │ └── Resources │ │ │ └── ResourceFallbackManager.cs │ └── Tools │ │ └── Signing │ │ ├── TestKeyPair.snk │ │ └── PublicTestKey.snk ├── tools │ ├── CMakeLists.txt │ ├── .gitmirror │ ├── crossgen │ │ ├── .gitmirror │ │ └── Native.rc │ ├── InjectResource │ │ ├── .gitmirror │ │ └── CMakeLists.txt │ └── GenClrDebugResource │ │ ├── .gitmirror │ │ └── CMakeLists.txt ├── dlls │ ├── mscoree │ │ ├── dw20.msi │ │ ├── dw20_amd64.msi │ │ ├── .gitmirror │ │ ├── coreclr │ │ │ └── .gitmirror │ │ ├── i386 │ │ │ └── .gitmirror │ │ ├── mscoree20_shared_neutral.vrg │ │ ├── mscoreeDoNotEverRemove.vrg │ │ └── Native.rc │ ├── .gitmirror │ ├── clretwrc │ │ ├── .gitmirror │ │ └── clretwrc.rc │ ├── dbgshim │ │ ├── .gitmirror │ │ ├── resource.h │ │ └── dbgshim.rc │ ├── mscordac │ │ ├── .gitmirror │ │ ├── GetFileVersion.dll │ │ ├── GetFileVersion.pdb │ │ ├── mscordac.cpp │ │ └── Native.rc │ ├── mscordbi │ │ ├── .gitmirror │ │ ├── mscordbiv.vrg │ │ └── Native.rc │ ├── mscorrc │ │ ├── .gitmirror │ │ ├── full │ │ │ └── .gitmirror │ │ ├── small │ │ │ └── .gitmirror │ │ ├── CMakeLists.txt │ │ └── include.rc │ └── CMakeLists.txt ├── .gitmirror ├── vm │ ├── dac │ │ ├── CMakeLists.txt │ │ └── .gitmirror │ ├── .gitmirror │ ├── arm │ │ └── .gitmirror │ ├── wks │ │ └── .gitmirror │ ├── amd64 │ │ ├── .gitmirror │ │ ├── CLRErrorReporting.vrg │ │ └── stublinkeramd64.cpp │ ├── arm64 │ │ └── .gitmirror │ ├── coreclr │ │ └── .gitmirror │ ├── crossgen │ │ └── .gitmirror │ ├── i386 │ │ ├── .gitmirror │ │ └── CLRErrorReporting.vrg │ ├── crossgen_mscorlib │ │ └── .gitmirror │ ├── gc.h │ ├── gms.h │ ├── gcdesc.h │ ├── gcscan.h │ ├── common.cpp │ ├── handletable.h │ ├── handletable.inl │ └── objecthandle.h ├── .nuget │ ├── .gitmirror │ └── packages.config ├── binder │ ├── .gitmirror │ ├── inc │ │ └── .gitmirror │ ├── v3binder │ │ └── .gitmirror │ └── v3binder_crossgen │ │ └── .gitmirror ├── debug │ ├── .gitmirror │ ├── di │ │ ├── .gitmirror │ │ ├── amd64 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ ├── arm │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ ├── arm64 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ ├── i386 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ └── ICorDebugValueTypes.vsd │ ├── ee │ │ ├── .gitmirror │ │ ├── amd64 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ ├── arm │ │ │ └── .gitmirror │ │ ├── arm64 │ │ │ └── .gitmirror │ │ ├── dac │ │ │ ├── .gitmirror │ │ │ └── CMakeLists.txt │ │ ├── i386 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ └── wks │ │ │ └── .gitmirror │ ├── inc │ │ ├── .gitmirror │ │ ├── amd64 │ │ │ └── .gitmirror │ │ ├── arm │ │ │ └── .gitmirror │ │ ├── arm64 │ │ │ └── .gitmirror │ │ ├── dump │ │ │ └── .gitmirror │ │ └── i386 │ │ │ └── .gitmirror │ ├── shim │ │ ├── .gitmirror │ │ └── CMakeLists.txt │ ├── daccess │ │ ├── .gitmirror │ │ ├── amd64 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ ├── arm │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ ├── arm64 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ │ └── i386 │ │ │ ├── .gitmirror │ │ │ └── primitives.cpp │ ├── dbgutil │ │ └── .gitmirror │ ├── ildbsymlib │ │ └── .gitmirror │ ├── shared │ │ ├── .gitmirror │ │ ├── arm │ │ │ └── .gitmirror │ │ ├── amd64 │ │ │ └── .gitmirror │ │ ├── arm64 │ │ │ └── .gitmirror │ │ └── i386 │ │ │ └── .gitmirror │ ├── CMakeLists.txt │ └── SetDebugTargetWinx86.props ├── gcdump │ ├── .gitmirror │ └── i386 │ │ └── .gitmirror ├── gcinfo │ ├── .gitmirror │ └── crossgen │ │ └── .gitmirror ├── ipcman │ ├── .gitmirror │ ├── ipcman-staticcrt │ │ ├── .gitmirror │ │ └── CMakeLists.txt │ └── stdafx.cpp ├── palrt │ └── .gitmirror ├── zap │ ├── .gitmirror │ ├── wks │ │ └── .gitmirror │ └── crossgen │ │ └── .gitmirror ├── unwinder │ ├── .gitmirror │ ├── amd64 │ │ └── .gitmirror │ ├── arm │ │ └── .gitmirror │ ├── arm64 │ │ └── .gitmirror │ └── dac │ │ ├── .gitmirror │ │ ├── hostlocal │ │ └── .gitmirror │ │ ├── hostwinamd64 │ │ ├── .gitmirror │ │ └── CMakeLists.txt │ │ └── hostwinx86 │ │ └── .gitmirror ├── utilcode │ ├── .gitmirror │ ├── dac │ │ └── .gitmirror │ ├── dyncrt │ │ ├── .gitmirror │ │ └── CMakeLists.txt │ ├── crossgen │ │ └── .gitmirror │ ├── staticnohost │ │ └── .gitmirror │ └── UtilCode.vcxproj.vspscc └── classlibnative │ ├── .gitmirror │ ├── float │ └── .gitmirror │ ├── inc │ └── .gitmirror │ ├── nls │ ├── .gitmirror │ └── CMakeLists.txt │ ├── bcltype │ └── .gitmirror │ └── cryptography │ ├── .gitmirror │ └── CMakeLists.txt ├── tests ├── .gitmirrorall └── src │ ├── .nuget │ └── packages.config │ ├── Exceptions │ └── Finalization │ │ └── packages.config │ ├── Regressions │ ├── assemblyref │ │ └── packages.config │ └── expl_double │ │ └── packages.config │ ├── GC │ └── Stress │ │ └── Framework │ │ └── key_v1.cs │ └── JIT │ ├── Directed │ └── Arrays │ │ └── packages.config │ └── CodeGenBringUpTests │ └── packages.config ├── .gitmirror ├── dac.cmake └── ci.cmd /oacr.cfg: -------------------------------------------------------------------------------- 1 | OACR_CONFIG=ndp_clr 2 | -------------------------------------------------------------------------------- /src/inc/obj/i386/dummy: -------------------------------------------------------------------------------- 1 | ECHO is on. 2 | -------------------------------------------------------------------------------- /src/pal/src/.tpattributes: -------------------------------------------------------------------------------- 1 | configure:x 2 | -------------------------------------------------------------------------------- /src/ToolBox/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(SOS) -------------------------------------------------------------------------------- /src/coreclr/hosts/corerun/test.txt: -------------------------------------------------------------------------------- 1 | time 2 2 | -------------------------------------------------------------------------------- /src/jit/ClrJit.exports: -------------------------------------------------------------------------------- 1 | getJit 2 | sxsJitStartup 3 | -------------------------------------------------------------------------------- /src/strongname/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(api) -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ungetc/test2/test2.txt: -------------------------------------------------------------------------------- 1 | foo bar -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/feof/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fread/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fread/test2/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fread/test3/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/WriteFile/test2/Results.txt: -------------------------------------------------------------------------------- 1 | 0011100111 -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ferror/test1/testfile: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CopyFileW/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 10110000 -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/no_file: -------------------------------------------------------------------------------- 1 | No attribs file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/rw_file: -------------------------------------------------------------------------------- 1 | Read Write file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/no_file: -------------------------------------------------------------------------------- 1 | No attribs file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/rw_file: -------------------------------------------------------------------------------- 1 | Read Write file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesA/test2/test_file: -------------------------------------------------------------------------------- 1 | The File. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesW/test2/test_file: -------------------------------------------------------------------------------- 1 | The File. -------------------------------------------------------------------------------- /src/gc/.gitmirrorall: -------------------------------------------------------------------------------- 1 | This folder will be mirrored by the Git-TFS Mirror recursively. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_file: -------------------------------------------------------------------------------- 1 | Hidden file -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileA/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 0101000001010000 -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileW/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 0101000001010000 -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/ReadFile/test1/NonReadableFile.txt: -------------------------------------------------------------------------------- 1 | this is a test -------------------------------------------------------------------------------- /tests/.gitmirrorall: -------------------------------------------------------------------------------- 1 | This folder will be mirrored by the Git-TFS Mirror recursively. -------------------------------------------------------------------------------- /src/inc/.gitmirrorall: -------------------------------------------------------------------------------- 1 | This folder will be mirrored by the Git-TFS Mirror recursively. -------------------------------------------------------------------------------- /src/md/hotdata/full/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(mdhotdata_full ${MDHOTDATA_SOURCES}) 2 | -------------------------------------------------------------------------------- /src/pal/.gitmirrorall: -------------------------------------------------------------------------------- 1 | This folder will be mirrored by the Git-TFS Mirror recursively. -------------------------------------------------------------------------------- /src/mscorlib/.gitmirrorall: -------------------------------------------------------------------------------- 1 | This folder will be mirrored by the Git-TFS Mirror recursively. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_ro_file: -------------------------------------------------------------------------------- 1 | .hidden_ro_file 2 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_ro_file: -------------------------------------------------------------------------------- 1 | .hidden_ro_file 2 | -------------------------------------------------------------------------------- /src/strongname/api/wks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(strongname_wks ${STRONGNAME_SOURCES}) 2 | -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(GenClrDebugResource) 2 | add_subdirectory(InjectResource) -------------------------------------------------------------------------------- /.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/coreclr/hosts/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(corerun) 2 | add_subdirectory(coreconsole) 3 | 4 | -------------------------------------------------------------------------------- /src/dlls/mscoree/dw20.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/dlls/mscoree/dw20.msi -------------------------------------------------------------------------------- /src/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/inc/1031/aspnet_perf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1031/aspnet_perf.ini -------------------------------------------------------------------------------- /src/inc/1041/aspnet_perf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1041/aspnet_perf.ini -------------------------------------------------------------------------------- /src/md/winmd/dbi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_dbi.cmake) 2 | add_library(mdwinmd_dbi ${MDWINMD_SOURCES}) -------------------------------------------------------------------------------- /src/md/winmd/wks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_wks.cmake) 2 | add_library(mdwinmd_wks ${MDWINMD_SOURCES}) -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ferror/test2/testfile: -------------------------------------------------------------------------------- 1 | This is a test file. This needs to be kept in CVS. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileExA/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 01110011000000000111001100000000 2 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileExW/test1/ExpectedResults.txt: -------------------------------------------------------------------------------- 1 | 01110011000000000111001100000000 2 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesA/test1/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesA/test4/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesW/test1/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesW/test4/test_file: -------------------------------------------------------------------------------- 1 | Don't delete me. I'm needed. The File. -------------------------------------------------------------------------------- /src/vm/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | 4 | add_library(cee_dac ${VM_SOURCES_DAC}) -------------------------------------------------------------------------------- /src/.nuget/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/binder/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/gcdump/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/gcinfo/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/inc/1031/aspnet_perf2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1031/aspnet_perf2.ini -------------------------------------------------------------------------------- /src/inc/1041/aspnet_perf2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1041/aspnet_perf2.ini -------------------------------------------------------------------------------- /src/ipcman/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/jit/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/enc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/enc/dbi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_dbi.cmake) 2 | add_library(mdruntimerw-dbi ${MDRUNTIMERW_SOURCES}) -------------------------------------------------------------------------------- /src/md/inc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/dbi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_dbi.cmake) 2 | add_library(mdruntime-dbi ${MDRUNTIME_SOURCES}) -------------------------------------------------------------------------------- /src/mscorlib/src/mscorlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/mscorlib.txt -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ftell/test1/testfile.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumped over the lazy dog's back. -------------------------------------------------------------------------------- /src/palrt/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/tools/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/zap/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/ToolBox/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/ToolBox/SOS/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/ToolBox/SOS/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(strike) 2 | add_subdirectory(DacTableGen) 3 | add_subdirectory(diasdk) -------------------------------------------------------------------------------- /src/binder/inc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/coreclr/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/di/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/inc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/shim/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscoree/dw20_amd64.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/dlls/mscoree/dw20_amd64.msi -------------------------------------------------------------------------------- /src/gcdump/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/jit/jitstd/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/compiler/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/compiler/dbi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_dbi.cmake) 2 | add_library(mdcompiler-dbi ${MDCOMPILER_SOURCES}) -------------------------------------------------------------------------------- /src/md/compiler/wks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_wks.cmake) 2 | add_library(mdcompiler_wks ${MDCOMPILER_SOURCES}) -------------------------------------------------------------------------------- /src/md/enc/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/enc/dbi/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/enc/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/enc/wks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_wks.cmake) 2 | add_library(mdruntimerw_wks ${MDRUNTIMERW_SOURCES}) 3 | -------------------------------------------------------------------------------- /src/md/heaps/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/hotdata/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/tables/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/winmd/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/strongname/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/utilcode/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/coreclr/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/zap/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/binder/v3binder/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/classlibnative/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/coreclr/hosts/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/daccess/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/dbgutil/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/di/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/di/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/di/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/di/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ee/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/ildbsymlib/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/inc/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/inc/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/inc/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/inc/dump/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/inc/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/shared/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/shared/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/clretwrc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/dbgshim/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscordac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscordbi/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscoree/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscorrc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/gcinfo/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/inc/1031/CORPerfMonSymbols.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1031/CORPerfMonSymbols.ini -------------------------------------------------------------------------------- /src/inc/1031/_DataPerfCounters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1031/_DataPerfCounters.ini -------------------------------------------------------------------------------- /src/inc/1041/CORPerfMonSymbols.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1041/CORPerfMonSymbols.ini -------------------------------------------------------------------------------- /src/inc/1041/_DataPerfCounters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1041/_DataPerfCounters.ini -------------------------------------------------------------------------------- /src/md/ceefilegen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/compiler/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/compiler/dbi/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/compiler/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/datasource/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/enc/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/hotdata/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/hotdata/full/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/dbi/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/wks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_wks.cmake) 2 | add_library(mdruntime_wks ${MDRUNTIME_SOURCES}) 3 | 4 | -------------------------------------------------------------------------------- /src/md/winmd/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/winmd/dbi/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/winmd/inc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/winmd/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/mscorlib/src/System/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Convert.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Version.cs -------------------------------------------------------------------------------- /src/strongname/api/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/strongname/inc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/tools/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/utilcode/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/utilcode/dyncrt/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/zap/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/ToolBox/SOS/SOSAndICorDebug.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/ToolBox/SOS/SOSAndICorDebug.docx -------------------------------------------------------------------------------- /src/ToolBox/SOS/Strike/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/ToolBox/SOS/diasdk/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/classlibnative/float/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/classlibnative/inc/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/classlibnative/nls/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/coreclr/hosts/corerun/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/daccess/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/daccess/arm/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/daccess/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/daccess/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/di/ICorDebugValueTypes.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/debug/di/ICorDebugValueTypes.vsd -------------------------------------------------------------------------------- /src/debug/ee/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | 4 | add_library(cordbee_dac ${CORDBEE_SOURCES_DAC}) 5 | -------------------------------------------------------------------------------- /src/debug/shared/amd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/shared/arm64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/debug/shared/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscordac/GetFileVersion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/dlls/mscordac/GetFileVersion.dll -------------------------------------------------------------------------------- /src/dlls/mscordac/GetFileVersion.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/dlls/mscordac/GetFileVersion.pdb -------------------------------------------------------------------------------- /src/dlls/mscoree/coreclr/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscoree/i386/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscorrc/full/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/dlls/mscorrc/small/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/compiler/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/datasource/dbi/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/datasource/dbi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(../../md_dbi.cmake) 2 | add_library(mddatasource_dbi STATIC ${MDDATASOURCE_SOURCES}) -------------------------------------------------------------------------------- /src/md/hotdata/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/runtime/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/winmd/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/no_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/rw_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/no_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/strongname/api/dac/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/strongname/api/wks/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/tools/InjectResource/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/utilcode/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/utilcode/staticnohost/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/vm/crossgen_mscorlib/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/ToolBox/SOS/DacTableGen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/binder/v3binder_crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/classlibnative/bcltype/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/coreclr/hosts/coreconsole/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/coreclr/hosts/unixcorerun/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/inc/1031/_NetworkingPerfCounters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1031/_NetworkingPerfCounters.ini -------------------------------------------------------------------------------- /src/inc/1041/_NetworkingPerfCounters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/inc/1041/_NetworkingPerfCounters.ini -------------------------------------------------------------------------------- /src/ipcman/ipcman-staticcrt/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/md/hotdata/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | 4 | add_library(mdhotdata_dac ${MDHOTDATA_SOURCES}) 5 | -------------------------------------------------------------------------------- /src/md/hotdata/full-staticcrt/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/mscorlib/src/System/Text/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Text/Encoding.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/TimeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/TimeZoneInfo.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/no_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/ro_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/rw_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/no_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/ro_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/rw_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/strongname/api/crossgen/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/tools/GenClrDebugResource/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/dac/hostlocal/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/dac/hostwinamd64/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/unwinder/dac/hostwinx86/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/classlibnative/cryptography/.gitmirror: -------------------------------------------------------------------------------- 1 | Only contents of this folder, excluding subfolders, will be mirrored by the Git-TFS Mirror. -------------------------------------------------------------------------------- /src/mscorlib/Tools/Signing/TestKeyPair.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/Tools/Signing/TestKeyPair.snk -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/IO/StreamReader.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_alloca/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_ecvt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_fdopen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_finite/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_getw/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_isnan/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_itow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_mbsdec/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_mbsinc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_mbslen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_putw/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_rotl/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_rotr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_strlwr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_swab/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wcslwr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wtoi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/abs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/acos/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/asin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/atan/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/atan2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/atof/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/atoi/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/atol/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ceil/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/cos/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/cosh/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ctime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fabs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/feof/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fflush/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/floor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fmod/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/free/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fseek/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ftell/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fwrite/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/getc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isalnum/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isalpha/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isdigit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/islower/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isspace/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isupper/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/labs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/log/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/log10/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/memchr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/memcmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/memcpy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/memmove/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/memset/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/modf/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/realloc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sinh/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sqrt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strcat/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strchr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strcmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strcpy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strcspn/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strlen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strncat/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strncmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strncpy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strpbrk/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strrchr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strspn/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strstr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strtok/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strtoul/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/tan/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/tanh/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/time/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/tolower/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/toupper/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcscat/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcschr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcscmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcscpy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcslen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcsncat/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcsncmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcsncpy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcspbrk/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcsrchr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcsstr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcstok/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FindClose/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_ro_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/normal_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/ro_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/ro_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_ro_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/normal_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/ro_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/rw_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/strongname/api/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | 4 | add_library(strongname_dac ${STRONGNAME_SOURCES}) 5 | -------------------------------------------------------------------------------- /src/dlls/mscoree/mscoree20_shared_neutral.vrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/dlls/mscoree/mscoree20_shared_neutral.vrg -------------------------------------------------------------------------------- /src/mscorlib/Tools/Signing/PublicTestKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/Tools/Signing/PublicTestKey.snk -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/SpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Threading/SpinWait.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/__iscsym/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_fullpath/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_makepath/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_mbsninc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_splitpath/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_stricmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_strnicmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wcsicmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wcsnicmp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wmakepath/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wsplitpath/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/iswdigit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/iswprint/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/iswspace/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/iswupper/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/iswxdigit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isxdigit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/localtime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/rand_srand/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/towlower/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/towupper/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/debug_api/DebugBreak/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CreateFileA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CreateFileW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/DeleteFileA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/DeleteFileW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FindFirstFileA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FindFirstFileW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetConsoleCP/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/.hidden_ro_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/normal_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/.hidden_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/normal_test_directory/keepme: -------------------------------------------------------------------------------- 1 | Make CVS checkout this directory even with -p option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/ro_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/.hidden_ro_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/normal_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileSize/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetSystemTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetTempPathW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileExA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/MoveFileExW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SearchPathA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SearchPathW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/gettemppatha/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetACP/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/_i64tow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/lstrcpyW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/lstrlenA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/lstrlenW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_errno/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/OpenProcess/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/ReleaseMutex/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test3) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/ResumeThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/SetErrorMode/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/Hashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Collections/Hashtable.cs -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Threading/ThreadPool.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/wfmo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/pal/tests/palsuite/composite/wfmo/readme.txt -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/AreFileApisANSI/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CompareFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FlushFileBuffers/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetConsoleOutputCP/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/normal_test_directory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/RemoveDirectoryA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/RemoveDirectoryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/HeapFree/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/CompareStringA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/CompareStringW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetThreadLocale/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/IsDBCSLeadByte/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/IsValidLocale/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/SetThreadLocale/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/CreatePipe/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetLastError/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetSystemInfo/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetTickCount/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetUserNameW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetVersionExA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetVersionExW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/IsBadCodePtr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/IsBadReadPtr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/SetLastError/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/lstrcpynW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_get_stderr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_get_stdin/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_get_stdout/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/pal_entrypoint/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/GetCurrentProcess/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/GetProcessTimes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test2) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/SwitchToThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/TerminateProcess/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/ThreadPriority/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/YieldProcessor/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/releasesemaphore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/setthreadcontext/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/ipcman/ipcman-staticcrt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-D_CRTIMP=) #static link of crt 2 | add_library(ipcmanager-staticcrt STATIC ${IPCMAN_SOURCES}) -------------------------------------------------------------------------------- /src/mscorlib/src/System/IO/FileSystemEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/IO/FileSystemEnumerable.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/debug_api/OutputDebugStringA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/debug_api/OutputDebugStringW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/pal_finally/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FileTimeToDosDateTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FileTimeToLocalFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetCurrentDirectoryA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetCurrentDirectoryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetSystemTimeAsFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/LocalAlloc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/VirtualQuery/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetUserDefaultLCID/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetUserDefaultLangID/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/IsDBCSLeadByteEx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetCommandLineW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetComputerNameW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/pal_initializedebug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/GetCurrentProcessId/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/GetCurrentThreadId/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/GetExitCodeProcess/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/jit/Native.rc: -------------------------------------------------------------------------------- 1 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Just-In-Time Compiler\0" 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /src/md/hotdata/full-staticcrt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-D_CRTIMP=) # static link of crt 2 | add_library(mdhotdata-staticcrt ${MDHOTDATA_SOURCES}) 3 | -------------------------------------------------------------------------------- /src/md/runtime/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | include(../../md_dac.cmake) 4 | 5 | add_library(mdruntime_dac ${MDRUNTIME_SOURCES}) -------------------------------------------------------------------------------- /src/md/winmd/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | include(../../md_dbi.cmake) 4 | 5 | add_library(mdwinmd_dac ${MDWINMD_SOURCES}) 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_getw/test1/test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/pal/tests/palsuite/c_runtime/_getw/test1/test.dat -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/GetProcessHeap/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetSystemDefaultLangID/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetTimeZoneInformation/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/FlushInstructionCache/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetEnvironmentStringsW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterLockedExchangeAdd/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedExchange/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedExchange64/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/queryperformancecounter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_GetPALDirectoryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/samples/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/coreclr/hosts/corerun/native.rc: -------------------------------------------------------------------------------- 1 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft CoreCLR EXE launcher\0" 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /src/md/enc/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | include(../../md_dac.cmake) 4 | 5 | add_library(mdruntimerw_dac ${MDRUNTIMERW_SOURCES}) 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/exit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/PAL_TRY_LEAVE_FINALLY/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedExchangePointer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/queryperformancefrequency/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_GetUserTempDirectoryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/md/compiler/dac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | include(${CLR_DIR}/dac.cmake) 3 | include(../../md_dac.cmake) 4 | 5 | add_library(mdcompiler_dac ${MDCOMPILER_SOURCES}) 6 | -------------------------------------------------------------------------------- /src/mscorlib/src/System/Globalization/Tables/CharInfo.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Globalization/Tables/CharInfo.nlp -------------------------------------------------------------------------------- /src/mscorlib/src/System/Threading/Tasks/TaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Threading/Tasks/TaskScheduler.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_gcvt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/bsearch/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/errno/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fclose/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ferror/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fputs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/isprint/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/malloc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/qsort/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/strtod/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/ungetc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcstod/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wprintf/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/SetUnhandledExceptionFilter/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/.hidden_directory/anchor.txt: -------------------------------------------------------------------------------- 1 | This file is here so this directory gets checked out even with the -P 2 | option. -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/FreeLibraryAndExitThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedCompareExchangePointer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/Sleep/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/SleepEx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/coreclr/hosts/coreconsole/native.rc: -------------------------------------------------------------------------------- 1 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft CoreCLR Program launcher\0" 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /src/mscorlib/src/System/Resources/ResourceFallbackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Resources/ResourceFallbackManager.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CreateDirectoryA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CreateDirectoryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FindNextFileA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/FindNextFileW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetLongPathNameW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetStdHandle/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/loader/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(LoadLibraryA) 4 | add_subdirectory(LoadLibraryW) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/CharNextA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/_ui64tow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateProcessA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateProcessW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/ExitThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/mscorlib/src/System/Collections/Generic/EqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/mscorlib/src/System/Collections/Generic/EqualityComparer.cs -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_open_osfhandle/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/object_management/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabula/coreclr/master/src/pal/tests/palsuite/composite/object_management/readme.txt -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetDiskFreeSpaceW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/LocalFree/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetLocaleInfoW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetStringTypeExW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/IsValidCodePage/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/CharNextExA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/CloseHandle/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/MessageBoxW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/GetCurrentThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/tools/crossgen/Native.rc: -------------------------------------------------------------------------------- 1 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft Common Language Runtime native cross compiler\0" 2 | 3 | #include "..\..\dlls\mscorrc\mscorrc.rc" 4 | -------------------------------------------------------------------------------- /src/.nuget/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/dlls/clretwrc/clretwrc.rc: -------------------------------------------------------------------------------- 1 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime resources\0" 2 | 3 | #include 4 | #include 5 | #include "ClrEtwAll.rc" -------------------------------------------------------------------------------- /src/md/md_dac.cmake: -------------------------------------------------------------------------------- 1 | add_definitions(-DNO_CRT -DFEATURE_METADATA_EMIT) 2 | add_definitions(-DFEATURE_METADATA_INTERNAL_APIS) 3 | add_definitions(-DFEATURE_METADATA_EMIT_IN_DEBUGGER) -------------------------------------------------------------------------------- /src/pal/prebuilt/inc/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains include files generated from idl sources. Since we cannot run MIDL on non-Windows platforms, we have to have them checked in. 2 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/PAL_TRY_EXCEPT/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/ro_test_file: -------------------------------------------------------------------------------- 1 | file_io 2 | CopyFileW 3 | Positive Test for CopyFileW 4 | test the CopyFileW function 5 | DEFAULT 6 | CopyFileW -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/LocalFileTimeToFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/FreeLibrary/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/GetProcAddress/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/UnmapViewOfFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedDecrement/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedIncrement/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/WaitForMultipleObjects/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Require at least version 2.8.12 of CMake 2 | cmake_minimum_required(VERSION 2.8.12) 3 | 4 | project(UnixTools) 5 | 6 | add_subdirectory(cppmunge) 7 | -------------------------------------------------------------------------------- /src/dlls/mscordbi/mscordbiv.vrg: -------------------------------------------------------------------------------- 1 | VSREG 7 2 | 3 | [HKEY_CLASSES_ROOT\CLSID\{047a9a40-657e-11d3-8d5b-00104b35e7ef}\InprocServer32\[RTM_ProductVersion]] 4 | "ImplementedInThisVersion"="" 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/object_management/event/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(nonshared) 4 | add_subdirectory(shared) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/object_management/mutex/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(nonshared) 4 | add_subdirectory(shared) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesExW/test1/normal_test_file: -------------------------------------------------------------------------------- 1 | file_io 2 | CopyFileW 3 | Positive Test for CopyFileW 4 | test the CopyFileW function 5 | DEFAULT 6 | CopyFileW -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/GetModuleFileNameA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/GetModuleFileNameW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/FreeEnvironmentStringsW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedDecrement64/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedIncrement64/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_Initialize_Terminate/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateMutexA_ReleaseMutex/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateMutexW_ReleaseMutex/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /tests/src/.nuget/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/classlibnative/cryptography/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set( COMCRYPT_WKS_SOURCES 2 | Cryptography.cpp 3 | X509Certificate.cpp 4 | ) 5 | 6 | add_library( comcrypt_wks ${COMCRYPT_WKS_SOURCES}) 7 | -------------------------------------------------------------------------------- /src/pal/src/build_tools/mdtool_dummy: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Copyright (c) Microsoft Corporation. All rights reserved. 5 | # 6 | 7 | echo mdtool_dummy : not generating any dependencies 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/exp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fgets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/getenv/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/pow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/object_management/semaphore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(nonshared) 4 | add_subdirectory(shared) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/normal_test_file: -------------------------------------------------------------------------------- 1 | file_io 2 | CopyFileW 3 | Positive Test for CopyFileW 4 | test the CopyFileW function 5 | DEFAULT 6 | CopyFileW -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesA/test1/ro_test_file: -------------------------------------------------------------------------------- 1 | file_io 2 | CopyFileW 3 | Positive Test for CopyFileW 4 | test the CopyFileW function 5 | DEFAULT 6 | CopyFileW -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/normal_test_file: -------------------------------------------------------------------------------- 1 | file_io 2 | CopyFileW 3 | Positive Test for CopyFileW 4 | test the CopyFileW function 5 | DEFAULT 6 | CopyFileW -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileAttributesW/test1/ro_test_file: -------------------------------------------------------------------------------- 1 | file_io 2 | CopyFileW 3 | Positive Test for CopyFileW 4 | test the CopyFileW function 5 | DEFAULT 6 | CopyFileW -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedCompareExchange/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/InterlockedCompareExchange64/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/PAL_GetBottommostRegistration/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CopyFileW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileType/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetCPInfo/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CriticalSectionFunctions/test8/thistest.dat: -------------------------------------------------------------------------------- 1 | 2 | PAL,threading,palsuite\threading\criticalsectionfunctions\test8,Test8forCriticalSectionFunctionalities=test8.c, 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/ExitProcess/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/coreclr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Add the Merge flag here is needed. Not needed for RyuJIT if building as a DLL. 2 | add_definitions(-DFEATURE_MERGE_JIT_AND_ENGINE) 3 | 4 | add_subdirectory(hosts) 5 | 6 | -------------------------------------------------------------------------------- /src/dlls/dbgshim/resource.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | -------------------------------------------------------------------------------- /src/dlls/mscordac/mscordac.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/threading/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(threadsuspension) 4 | add_subdirectory(threadsuspension_switchthread) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetTempFileNameA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetTempFileNameW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateEventA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateEventW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/dlls/mscoree/mscoreeDoNotEverRemove.vrg: -------------------------------------------------------------------------------- 1 | VSREG 7 2 | 3 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Secure Mime Handlers] 4 | "CorTransientLoader.CorLoad.1"="" 5 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/object_management/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(event) 4 | add_subdirectory(mutex) 5 | add_subdirectory(semaphore) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/debug_api/WriteProcessMemory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test3) 5 | add_subdirectory(test4) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetCurrentDirectoryA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetCurrentDirectoryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/HeapAlloc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/MultiByteToWideChar/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/IsBadWritePtr/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/pal_specific/PAL_RegisterLibraryW_UnregisterLibraryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2_neg) 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tools/setup-compiler-clang.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # This file sets the environment to be used for building with clang. 4 | # 5 | 6 | export CC=$(which clang) 7 | export CXX=$(which clang++) 8 | -------------------------------------------------------------------------------- /src/classlibnative/nls/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set( COMMLS_WKS_SOURCES 2 | calendardata.cpp 3 | encodingdata.cpp 4 | nlsinfo.cpp 5 | nlstable.cpp 6 | ) 7 | 8 | add_library(comnls_wks ${COMMLS_WKS_SOURCES}) 9 | -------------------------------------------------------------------------------- /src/dlls/mscorrc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include_directories("../../pal/prebuilt/corerror") 2 | set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /NOENTRY") 3 | add_subdirectory(full) 4 | add_subdirectory(small) -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/PAL_EXCEPT_FILTER/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/PAL_TRY_EXCEPT_EX/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/RaiseException/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/OpenFileMappingA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/OpenFileMappingW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/WaitForMultipleObjectsEx/test6/thistest.dat: -------------------------------------------------------------------------------- 1 | 2 | PAL,threading,palsuite\threading\waitformultipleobjectsex\test6,Test6forWaitForMultipleObjectsEx=test6.c child6.c, 3 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/PAL_EXCEPT_FILTER_EX/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/tools/GenClrDebugResource/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-MT) 2 | add_executable(GenClrDebugResource GenClrDebugResource.cpp) 3 | 4 | target_link_libraries(GenClrDebugResource 5 | ${STATIC_MT_CRT_LIB} 6 | ) -------------------------------------------------------------------------------- /src/vm/gc.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "../gc/gc.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/eh.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_putenv/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/CopyFileA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/ReadFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateSemaphoreA_ReleaseSemaphore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/CreateSemaphoreW_ReleaseSemaphore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/SetEvent/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/vm/gms.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | #include "gmscpu.h" 8 | -------------------------------------------------------------------------------- /src/pal/inc/rt/emmintrin.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/errorrep.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/hstring.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/intrin.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/psapi.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/share.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/stdint.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/tchar.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/inc/rt/xmmintrin.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "palrt.h" 7 | -------------------------------------------------------------------------------- /src/pal/prebuilt/corerror/readme.txt: -------------------------------------------------------------------------------- 1 | Steps to generate corerror.h for the Unix: 2 | 3 | Open Razzle window 4 | tf edit ..\inc\corerror.h 5 | tf edit mscorurt.rc 6 | makecorerror.bat 7 | tf undo any files that didn't get modified -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/loader/LoadLibraryW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test5) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/lstrcatW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/ResetEvent/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/vm/gcdesc.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "../gc/gcdesc.h" 7 | -------------------------------------------------------------------------------- /src/vm/gcscan.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "../gc/gcscan.h" 7 | -------------------------------------------------------------------------------- /src/debug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(daccess) 2 | add_subdirectory(dbgutil) 3 | add_subdirectory(ildbsymlib) 4 | add_subdirectory(ee) 5 | add_subdirectory(di) 6 | if(WIN32) 7 | add_subdirectory(shim) 8 | endif(WIN32) 9 | -------------------------------------------------------------------------------- /src/dlls/mscorrc/include.rc: -------------------------------------------------------------------------------- 1 | // ==++== 2 | // 3 | // Copyright (c) Microsoft Corporation. All rights reserved. 4 | // 5 | // ==--== 6 | 7 | #include "mscorrc.rc" 8 | #include "fuslog.rc" 9 | #include "nativelog.rc" 10 | -------------------------------------------------------------------------------- /src/pal/prebuilt/inc/ndpversion.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | #include 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFullPathNameA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFullPathNameW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFileAttributesW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/errorpathnotfound/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/ReadProcessMemory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(ReadProcessMemory_neg1) 4 | add_subdirectory(test1) 5 | add_subdirectory(test2) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetDateFormatW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(GetDateFormatW_neg1) 4 | add_subdirectory(GetDateFormatW_neg2) 5 | add_subdirectory(test1) 6 | 7 | -------------------------------------------------------------------------------- /src/vm/common.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | #include "common.h" 8 | 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/DosDateTimeToFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test3) 5 | add_subdirectory(test4) 6 | add_subdirectory(test5) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/UnlockFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/WideCharToMultiByte/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/strongname/api/common.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "common.h" 7 | 8 | -------------------------------------------------------------------------------- /src/unwinder/dac/hostwinamd64/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | remove_definitions(-DPROFILING_SUPPORTED) 2 | add_definitions(-DPROFILING_SUPPORTED_DATA) 3 | add_definitions(-DDACCESS_COMPILE) 4 | 5 | add_library(unwinder_dac_amd64 ${UNWINDER_SOURCES}) 6 | -------------------------------------------------------------------------------- /src/vm/handletable.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "../gc/handletable.h" 7 | -------------------------------------------------------------------------------- /src/vm/handletable.inl: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "../gc/handletable.inl" 7 | -------------------------------------------------------------------------------- /src/vm/objecthandle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | #include "../gc/objecthandle.h" 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(object_management) 4 | add_subdirectory(synchronization) 5 | add_subdirectory(threading) 6 | add_subdirectory(wfmo) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/composite/synchronization/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(criticalsection) 4 | add_subdirectory(nativecriticalsection) 5 | add_subdirectory(nativecs_interlocked) 6 | 7 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/SetEnvironmentVariableA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/SetEnvironmentVariableW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | 8 | -------------------------------------------------------------------------------- /src/md/md_wks.cmake: -------------------------------------------------------------------------------- 1 | add_definitions(-DFEATURE_METADATA_EMIT) 2 | add_definitions(-DFEATURE_METADATA_INTERNAL_APIS) 3 | add_definitions(-DFEATURE_METADATA_IN_VM) 4 | if(WIN32) 5 | add_definitions(-DFEATURE_METADATA_VERIFY_LAYOUTS) 6 | endif(WIN32) -------------------------------------------------------------------------------- /src/dlls/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if(WIN32) 2 | add_subdirectory(clretwrc) 3 | add_subdirectory(mscorrc) 4 | add_subdirectory(dbgshim) 5 | endif(WIN32) 6 | add_subdirectory(mscordbi) 7 | add_subdirectory(mscordac) 8 | add_subdirectory(mscoree) 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetEndOfFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/WriteFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/loader/LoadLibraryA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test5) 7 | add_subdirectory(test7) 8 | 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/OpenEventW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/SuspendThread/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | 9 | -------------------------------------------------------------------------------- /tests/src/Exceptions/Finalization/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/src/Regressions/assemblyref/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/src/Regressions/expl_double/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/HeapReAlloc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/TLS/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/tools/InjectResource/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | remove_definitions(-DUNICODE) 2 | remove_definitions(-D_UNICODE) 3 | add_definitions(-MT) 4 | 5 | add_executable(InjectResource InjectResource.cpp) 6 | 7 | target_link_libraries(InjectResource 8 | ${STATIC_MT_CRT_LIB} 9 | ) -------------------------------------------------------------------------------- /src/md/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(compiler) 2 | add_subdirectory(runtime) 3 | add_subdirectory(enc) 4 | add_subdirectory(hotdata) 5 | add_subdirectory(ceefilegen) 6 | add_subdirectory(datasource) 7 | if(WIN32) 8 | add_subdirectory(winmd) 9 | endif(WIN32) 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetCPInfo/test3/testinfo.dat: -------------------------------------------------------------------------------- 1 | Version = 1.0 2 | Section = Locale Information 3 | Function = GetCPInfo 4 | Name = Test #3 for GetCPInfo 5 | TYPE = DEFAULT 6 | EXE1 = test3 7 | Description 8 | =Tests that GetCPInfo passes for all valid code pages 9 | -------------------------------------------------------------------------------- /src/vm/amd64/CLRErrorReporting.vrg: -------------------------------------------------------------------------------- 1 | VSREG 7 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\.NET Runtime 4.0 Error Reporting] 4 | "EventMessageFile"="[DWFolder.F0DF3458_A845_11D3_8D0A_0050046416B9]DW20.EXE" 5 | "TypesSupported"=dword:00000007 6 | -------------------------------------------------------------------------------- /src/vm/i386/CLRErrorReporting.vrg: -------------------------------------------------------------------------------- 1 | VSREG 7 2 | 3 | [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\.NET Runtime 4.0 Error Reporting] 4 | "EventMessageFile"="[DWFolder.D0DF3458_A845_11D3_8D0A_0050046416B9]DW20.EXE" 5 | "TypesSupported"=dword:00000007 6 | -------------------------------------------------------------------------------- /src/debug/shim/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_definitions(-DHOST_IS_WINDOWS_OS) 2 | 3 | if(WIN32) 4 | #use static crt 5 | add_definitions(-MT) 6 | endif(WIN32) 7 | 8 | set(DEBUGSHIM_SOURCES 9 | debugshim.cpp 10 | ) 11 | 12 | 13 | add_library(debugshim STATIC ${DEBUGSHIM_SOURCES}) -------------------------------------------------------------------------------- /src/ipcman/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // ==++== 7 | // 8 | 9 | // 10 | // ==--== 11 | #include "stdafx.h" 12 | -------------------------------------------------------------------------------- /src/pal/inc/rt/objbase.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | // 6 | 7 | // 8 | // dummy objbase.h for PAL 9 | 10 | #include "palrt.h" 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcstol/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/wcstoul/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /dac.cmake: -------------------------------------------------------------------------------- 1 | # Contains the dac build specific definitions. Included by the leaf dac cmake files. 2 | 3 | remove_definitions(-DPROFILING_SUPPORTED) 4 | add_definitions(-DPROFILING_SUPPORTED_DATA) 5 | add_definitions(-DDACCESS_COMPILE) 6 | if(WIN32) 7 | add_definitions(-MT) 8 | endif(WIN32) -------------------------------------------------------------------------------- /src/dlls/mscordbi/Native.rc: -------------------------------------------------------------------------------- 1 | // ==++== 2 | // 3 | // Copyright (c) Microsoft Corporation. All rights reserved. 4 | // 5 | // ==--== 6 | 7 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Debugging Services\0" 8 | 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /src/debug/di/i386/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | 9 | #include "../../shared/i386/primitives.cpp" 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/dlls/mscordac/Native.rc: -------------------------------------------------------------------------------- 1 | // ==++== 2 | // 3 | // Copyright (c) Microsoft Corporation. All rights reserved. 4 | // 5 | // ==--== 6 | 7 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET External Data Access Support\0" 8 | 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /src/utilcode/dyncrt/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | if(CLR_CMAKE_PLATFORM_UNIX) 3 | add_library(utilcode STATIC ${UTILCODE_SOURCES}) 4 | add_dependencies(utilcode CoreClrPal) 5 | else(CLR_CMAKE_PLATFORM_UNIX) 6 | add_library(utilcode STATIC ${UTILCODE_SOURCES}) 7 | endif(CLR_CMAKE_PLATFORM_UNIX) -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/MapViewOfFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/FormatMessageW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /src/jit/jitpch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | /*****************************************************************************/ 6 | 7 | #include "jitpch.h" 8 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/VirtualProtect/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test6) 8 | add_subdirectory(test7) 9 | 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/IsValidCodePage/test2/testinfo.dat: -------------------------------------------------------------------------------- 1 | Version = 1.0 2 | Section = Locale Information 3 | Function = IsValidCodePage 4 | Name = Test #2 for IsValidCodePage 5 | TYPE = DEFAULT 6 | EXE1 = test2 7 | Description 8 | =Tests IsValidCodePage with all the code pages valid on W2K. 9 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetEnvironmentVariableA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/miscellaneous/GetEnvironmentVariableW/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/WaitForMultipleObjectsEx/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | 10 | -------------------------------------------------------------------------------- /src/debug/di/amd64/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | // 8 | 9 | 10 | 11 | #include "../../shared/amd64/primitives.cpp" 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/debug/di/arm/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | #include "stdafx.h" 9 | 10 | #include "../../shared/arm/primitives.cpp" 11 | -------------------------------------------------------------------------------- /src/debug/di/arm64/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | #include "stdafx.h" 9 | 10 | #include "../../shared/arm64/primitives.cpp" 11 | -------------------------------------------------------------------------------- /src/dlls/mscoree/Native.rc: -------------------------------------------------------------------------------- 1 | // ==++== 2 | // 3 | // Copyright (c) Microsoft Corporation. All rights reserved. 4 | // 5 | // ==--== 6 | 7 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Common Language Runtime - WorkStation\0" 8 | 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /src/debug/SetDebugTargetWinx86.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | $(CDefines);DBG_TARGET_X86=1 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/debug/daccess/arm/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | #include "stdafx.h" 9 | 10 | #include "../../shared/arm/primitives.cpp" 11 | -------------------------------------------------------------------------------- /src/debug/daccess/arm64/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | #include "stdafx.h" 9 | 10 | #include "../../shared/arm64/primitives.cpp" 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/_wfopen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/fopen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/debug_api/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | # TODO: make these tests compile 4 | # add_subdirectory(DebugBreak) 5 | # add_subdirectory(WriteProcessMemory) 6 | 7 | add_subdirectory(OutputDebugStringA) 8 | add_subdirectory(OutputDebugStringW) 9 | 10 | -------------------------------------------------------------------------------- /src/debug/ee/i386/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | #include "stdafx.h" 9 | 10 | #include "../../shared/i386/primitives.cpp" 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/GetFileTime/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/file_io/SetFilePointer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/QueueUserAPC/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /src/vm/amd64/stublinkeramd64.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | #include "common.h" 6 | #include "asmconstants.h" 7 | 8 | #include "../i386/stublinkerx86.cpp" 9 | 10 | -------------------------------------------------------------------------------- /src/debug/daccess/i386/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | // 7 | 8 | #include "stdafx.h" 9 | 10 | #include "../../shared/i386/primitives.cpp" 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/jit/jitstd/new.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | 8 | #pragma once 9 | 10 | namespace jitstd 11 | { 12 | 13 | struct placement_t 14 | { 15 | }; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/filemapping_memmgt/LockFile/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /tests/src/GC/Stress/Framework/key_v1.cs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft. All rights reserved. 2 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 3 | // 4 | 5 | using System; 6 | using System.Reflection; 7 | 8 | [assembly:AssemblyVersionAttribute("1.0.0.0")] 9 | 10 | -------------------------------------------------------------------------------- /src/dlls/dbgshim/dbgshim.rc: -------------------------------------------------------------------------------- 1 | // ==++== 2 | // 3 | // Copyright (c) Microsoft Corporation. All rights reserved. 4 | // 5 | // ==--== 6 | 7 | #include "resource.h" 8 | 9 | #define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Multi-CLR Debugging Helper\0" 10 | 11 | #include 12 | #include 13 | -------------------------------------------------------------------------------- /src/jit/jitstd.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | 8 | #include "allocator.h" 9 | #include "unordered_map.h" 10 | #include "unordered_set.h" 11 | #include "utility.h" 12 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/exception_handling/pal_except/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test2) 5 | add_subdirectory(test3) 6 | add_subdirectory(test4) 7 | add_subdirectory(test5) 8 | add_subdirectory(test6) 9 | add_subdirectory(test7) 10 | 11 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/locale_info/GetCPInfo/test2/testinfo.dat: -------------------------------------------------------------------------------- 1 | Version = 1.0 2 | Section = Locale Information 3 | Function = GetCPInfo 4 | Name = Test #2 for GetCPInfo 5 | TYPE = DEFAULT 6 | EXE1 = test2 7 | Description 8 | =Tests that GetCPInfo gives the correct information for codepage 0x4E4 9 | =(the default). 10 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/threading/SetConsoleCtrlHandler/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 2.8.12.2) 2 | 3 | add_subdirectory(test1) 4 | add_subdirectory(test10) 5 | add_subdirectory(test4) 6 | add_subdirectory(test5) 7 | add_subdirectory(test6) 8 | add_subdirectory(test7) 9 | add_subdirectory(test8) 10 | 11 | -------------------------------------------------------------------------------- /src/utilcode/UtilCode.vcxproj.vspscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" 10 | } 11 | -------------------------------------------------------------------------------- /tests/src/JIT/Directed/Arrays/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ci.cmd: -------------------------------------------------------------------------------- 1 | REM execute build.cmd 2 | call build.cmd 3 | if errorlevel 1 exit /b 1 4 | REM the coreclr package should have been installed. This is temporarily set to this location 5 | set CORE_ROOT=%CD%\tests\src\packages\Microsoft.DotNet.TestHost.1.0.1-prerelease\lib\testhost 6 | cd tests 7 | call runtest.cmd 8 | if errorlevel 1 exit /b 1 -------------------------------------------------------------------------------- /src/debug/ee/amd64/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | // 8 | 9 | 10 | #include "stdafx.h" 11 | 12 | #include "../../shared/amd64/primitives.cpp" 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/pal/inc/rt/ole2.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | // 6 | 7 | // 8 | // dummy ole2.h for PAL 9 | 10 | #include "objidl.h" 11 | #include "servprov.h" 12 | #include "oaidl.h" 13 | 14 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/exp/test1/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = exp 8 | Name = Test #1 for exp 9 | Type = DEFAULT 10 | EXE1 = test1 11 | Description 12 | =Tests exp with a normal set of values. 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/printf/test2/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = printf 8 | Name = Positive Test for printf 9 | TYPE = DEFAULT 10 | EXE1 = test2 11 | Description 12 | = Tests printf with strings 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/printf/test4/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = printf 8 | Name = Positive Test for printf 9 | TYPE = DEFAULT 10 | EXE1 = test4 11 | Description 12 | = Tests printf with pointers 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sscanf/test1/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = sscanf 8 | Name = Positive Test for sscanf 9 | TYPE = DEFAULT 10 | EXE1 = test1 11 | Description 12 | = General test of sscanf 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/swscanf/test1/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = swscanf 8 | Name = Positive Test for swscanf 9 | TYPE = DEFAULT 10 | EXE1 = test1 11 | Description 12 | = General test of swscanf 13 | -------------------------------------------------------------------------------- /src/strongname/strongname.vcxproj.vspscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" 10 | } 11 | -------------------------------------------------------------------------------- /tests/src/JIT/CodeGenBringUpTests/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/debug/daccess/amd64/primitives.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | // 5 | 6 | 7 | // 8 | 9 | 10 | #include "stdafx.h" 11 | 12 | #include "../../shared/amd64/primitives.cpp" 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/printf/test3/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = printf 8 | Name = Positive Test for printf 9 | TYPE = DEFAULT 10 | EXE1 = test3 11 | Description 12 | = Tests printf with wide strings 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/printf/test6/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = printf 8 | Name = Positive Test for printf 9 | TYPE = DEFAULT 10 | EXE1 = test6 11 | Description 12 | = Tests printf with characters 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sprintf/test2/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = sprintf 8 | Name = Positive Test for sprintf 9 | TYPE = DEFAULT 10 | EXE1 = test2 11 | Description 12 | = Tests sprintf with strings 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sprintf/test4/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = sprintf 8 | Name = Positive Test for sprintf 9 | TYPE = DEFAULT 10 | EXE1 = test4 11 | Description 12 | = Tests sprintf with pointers 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sscanf/test11/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = sscanf 8 | Name = Positive Test for sscanf 9 | TYPE = DEFAULT 10 | EXE1 = test11 11 | Description 12 | = Tests sscanf with strings 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sscanf/test6/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section = C Runtime 7 | Function = sscanf 8 | Name = Positive Test for sscanf 9 | TYPE = DEFAULT 10 | EXE1 = test6 11 | Description 12 | = Tests sscanf with octal numbers 13 | -------------------------------------------------------------------------------- /src/pal/tests/palsuite/c_runtime/sscanf/test9/testinfo.dat: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) Microsoft Corporation. All rights reserved. 3 | # 4 | 5 | Version = 1.0 6 | Section =C Runtime 7 | Function = sscanf 8 | Name = Positive Test for sscanf 9 | TYPE = DEFAULT 10 | EXE1 = test9 11 | Description 12 | = Tests sscanf with characters 13 | --------------------------------------------------------------------------------