diff --git a/.vs/MAPO.sqlite b/.vs/MAPO.sqlite index 19870f4f..ca64f832 100644 Binary files a/.vs/MAPO.sqlite and b/.vs/MAPO.sqlite differ diff --git a/MP-Site/MP-Site.csproj b/MP-Site/MP-Site.csproj index 228b7155..a746684b 100644 --- a/MP-Site/MP-Site.csproj +++ b/MP-Site/MP-Site.csproj @@ -139,9 +139,8 @@ false - - ..\packages\AjaxControlToolkit.16.1.1.0\lib\net40\AjaxControlToolkit.dll - True + + ..\packages\AjaxControlToolkit.17.1.0.0\lib\net40\AjaxControlToolkit.dll ..\packages\AjaxMin.5.14.5506.26202\lib\net40\AjaxMin.dll diff --git a/MP-Site/Web.config b/MP-Site/Web.config index 94ce1e8d..0f8ec899 100644 --- a/MP-Site/Web.config +++ b/MP-Site/Web.config @@ -124,8 +124,8 @@ - - + + diff --git a/MP-Site/packages.config b/MP-Site/packages.config index 1af6a135..d46d00de 100644 --- a/MP-Site/packages.config +++ b/MP-Site/packages.config @@ -1,6 +1,6 @@  - + diff --git a/MP/MP.csproj b/MP/MP.csproj index 72b8080c..588e437f 100644 --- a/MP/MP.csproj +++ b/MP/MP.csproj @@ -1,7 +1,5 @@  - - Debug @@ -56,10 +54,6 @@ ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll True - - ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll - True - ..\packages\Newtonsoft.Json.10.0.2\lib\net45\Newtonsoft.Json.dll @@ -327,13 +321,6 @@ - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.uninstall.xdt b/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.uninstall.xdt deleted file mode 100644 index 5733481e..00000000 --- a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.uninstall.xdt +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll b/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll deleted file mode 100644 index 116b04bc..00000000 Binary files a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll and /dev/null differ diff --git a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml b/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml deleted file mode 100644 index 1a493511..00000000 --- a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - Microsoft.CodeDom.Providers.DotNetCompilerPlatform - - - - - Provides access to instances of the .NET Compiler Platform C# code generator and code compiler. - - - - - Default Constructor - - - - - Gets an instance of the .NET Compiler Platform C# code compiler. - - An instance of the .NET Compiler Platform C# code compiler - - - - Provides access to instances of the .NET Compiler Platform VB code generator and code compiler. - - - - - Default Constructor - - - - - Gets an instance of the .NET Compiler Platform VB code compiler. - - An instance of the .NET Compiler Platform VB code compiler - - - diff --git a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/install.ps1 b/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/install.ps1 deleted file mode 100644 index e0fab32c..00000000 --- a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/install.ps1 +++ /dev/null @@ -1,218 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -$compilerPackageName = 'Microsoft.Net.Compilers' -$roslynSubFolder = 'roslyn' - -if ($project -eq $null) { - $project = Get-Project -} - -$libDirectory = Join-Path $installPath 'lib\net45' -$projectRoot = $project.Properties.Item('FullPath').Value -$binDirectory = Join-Path $projectRoot 'bin' - -# We need to copy the provider assembly into the bin\ folder, otherwise -# Microsoft.VisualStudio.Web.Host.exe cannot find the assembly. -# However, users will see the error after they clean solutions. -New-Item $binDirectory -type directory -force | Out-Null -Copy-Item $libDirectory\* $binDirectory | Out-Null - -# For Web Site, we need to copy the Roslyn toolset into -# the applicaiton's bin folder. -# For Web Applicaiton project, this is done in csproj. -if ($project.Type -eq 'Web Site') { - $packageDirectory = Split-Path $installPath - - # Get the installed Microsoft.Net.Compilers package. - $compilerPackage = Get-Package -ProjectName $project.Name | Where-Object {$_.Id -eq $compilerPackageName} - if ($compilerPackage -eq $null) - { - Write-Host "Package $compilerPackageName is not installed correctly." - Write-Host 'The install.ps1 did not complete.' - break - } - - if($compilerPackage.Versions -eq $null) - { - $compilerVersion = $compilerPackage.Version - } - else - { - $compilerVersion = @($compilerPackage.Versions)[0] - } - - $compilerPackageFolderName = $compilerPackage.Id + "." + $compilerVersion - $compilerPackageDirectory = Join-Path $packageDirectory $compilerPackageFolderName - if ((Get-Item $compilerPackageDirectory) -isnot [System.IO.DirectoryInfo]) - { - Write-Host "The install.ps1 cannot find the installation location of package $compilerPackageName, or the pakcage is not installed correctly." - Write-Host 'The install.ps1 did not complete.' - break - } - - $compilerPackageToolsDirectory = Join-Path $compilerPackageDirectory 'tools' - $roslynSubDirectory = Join-Path $binDirectory $roslynSubFolder - New-Item $roslynSubDirectory -type directory -force | Out-Null - Copy-Item $compilerPackageToolsDirectory\* $roslynSubDirectory | Out-Null - - # Generate a .refresh file for each dll/exe file. - Push-Location - Set-Location $projectRoot - $relativeAssemblySource = Resolve-Path -relative $compilerPackageToolsDirectory - Pop-Location - - Get-ChildItem -Path $roslynSubDirectory | ` - Foreach-Object { - if (($_.Extension -eq ".dll") -or ($_.Extension -eq ".exe")) { - $refreshFile = $_.FullName - $refreshFile += ".refresh" - $refreshContent = Join-Path $relativeAssemblySource $_.Name - Set-Content $refreshFile $refreshContent - } - } -} -# SIG # Begin signature block -# MIIargYJKoZIhvcNAQcCoIIanzCCGpsCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB -# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR -# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU6rdb0MLzCnDxl7GtvbLJTKpz -# G+ugghWDMIIEwzCCA6ugAwIBAgITMwAAALWsfW2HayYRRwAAAAAAtTANBgkqhkiG -# 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw -# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTYwOTA3MTc1ODQ0 -# WhcNMTgwOTA3MTc1ODQ0WjCBszELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjENMAsGA1UECxMETU9QUjEnMCUGA1UECxMebkNpcGhlciBEU0UgRVNO -# OkI4RUMtMzBBNC03MTQ0MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBT -# ZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApXwz2j7k2rDl -# 2QO9eyz1qUm3FyqD7dksbP5M3NCOq/j95vpOeHG2w0S1SyNmN8VEqjiHSeopO5b+ -# VbOIbpqqG9PyfyDc0WdzIilufZOuwyZI15hI3uRgZ78E/cbljXUW5Me75jGGEOlr -# Gek41eOyGRUxkejFapqkiHCLxHSMHEpPdT95ylPhuLz7Bq01fsQSbclDoQye3EzO -# YFlqcFMYb3s61siEbpvKgf0qcQjPzAh3vsySXqzeeLc3Kzss74E9HDduQGO1ZZTZ -# FadL4bzwlgVhux25DZr0zqybZIBiy8/J9oyKCi2OuWLqxf+YgSWp0YMY9ktvKwGr -# VW7W8/UJVwIDAQABo4IBCTCCAQUwHQYDVR0OBBYEFIMd6iA083bzGHST2k2O6R6l -# XnyFMB8GA1UdIwQYMBaAFCM0+NlSRnAK7UD7dvuzK7DDNbMPMFQGA1UdHwRNMEsw -# SaBHoEWGQ2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3Rz -# L01pY3Jvc29mdFRpbWVTdGFtcFBDQS5jcmwwWAYIKwYBBQUHAQEETDBKMEgGCCsG -# AQUFBzAChjxodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv -# c29mdFRpbWVTdGFtcFBDQS5jcnQwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJKoZI -# hvcNAQEFBQADggEBAAez+vxJWgDsgMtouMLKUcbt+zRbXcxWm2HmTU7rhIVVyh2E -# IFS5ebVknSGsKoR1/xlEmnMo3fHtvWaDRo/2qXIg1jMnOQp1d4wqFh9hKfnDeCQA -# 9tCnM8C/mYu3axXxKmyxJXDOm2MqcoZ9CBlmk96o/hzV9QWo5c+Y94j7qEYpGRPG -# 6Adqoc/HNxnce3Ik0ZlpbD8TbmbIjDORxQ3Jjbn3AGXBQ+smsInwWFzut2EwpGPC -# 2xWhLjXLdzJReIM1geh3oM/wti4zZ4w7hr4CvedMnU29OkcnoyMEUAQnZfB7PsXm -# adKxnklsJCsr1UOu7g/nwX5/mcw7R9G3RSvrI0EwggTtMIID1aADAgECAhMzAAAB -# QJap7nBW/swHAAEAAAFAMA0GCSqGSIb3DQEBBQUAMHkxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xIzAhBgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNp -# Z25pbmcgUENBMB4XDTE2MDgxODIwMTcxN1oXDTE3MTEwMjIwMTcxN1owgYMxCzAJ -# BgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIx -# HjAcBgNVBAMTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjCCASIwDQYJKoZIhvcNAQEB -# BQADggEPADCCAQoCggEBANtLi+kDal/IG10KBTnk1Q6S0MThi+ikDQUZWMA81ynd -# ibdobkuffryavVSGOanxODUW5h2s+65r3Akw77ge32z4SppVl0jII4mzWSc0vZUx -# R5wPzkA1Mjf+6fNPpBqks3m8gJs/JJjE0W/Vf+dDjeTc8tLmrmbtBDohlKZX3APb -# LMYb/ys5qF2/Vf7dSd9UBZSrM9+kfTGmTb1WzxYxaD+Eaxxt8+7VMIruZRuetwgc -# KX6TvfJ9QnY4ItR7fPS4uXGew5T0goY1gqZ0vQIz+lSGhaMlvqqJXuI5XyZBmBre -# ueZGhXi7UTICR+zk+R+9BFF15hKbduuFlxQiCqET92ECAwEAAaOCAWEwggFdMBMG -# A1UdJQQMMAoGCCsGAQUFBwMDMB0GA1UdDgQWBBSc5ehtgleuNyTe6l6pxF+QHc7Z -# ezBSBgNVHREESzBJpEcwRTENMAsGA1UECxMETU9QUjE0MDIGA1UEBRMrMjI5ODAz -# K2Y3ODViMWMwLTVkOWYtNDMxNi04ZDZhLTc0YWU2NDJkZGUxYzAfBgNVHSMEGDAW -# gBTLEejK0rQWWAHJNy4zFha5TJoKHzBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8v -# Y3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNDb2RTaWdQQ0Ff -# MDgtMzEtMjAxMC5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY0NvZFNpZ1BDQV8wOC0z -# MS0yMDEwLmNydDANBgkqhkiG9w0BAQUFAAOCAQEAa+RW49cTHSBA+W3p3k7bXR7G -# bCaj9+UJgAz/V+G01Nn5XEjhBn/CpFS4lnr1jcmDEwxxv/j8uy7MFXPzAGtOJar0 -# xApylFKfd00pkygIMRbZ3250q8ToThWxmQVEThpJSSysee6/hU+EbkfvvtjSi0lp -# DimD9aW9oxshraKlPpAgnPWfEj16WXVk79qjhYQyEgICamR3AaY5mLPuoihJbKwk -# Mig+qItmLPsC2IMvI5KR91dl/6TV6VEIlPbW/cDVwCBF/UNJT3nuZBl/YE7ixMpT -# Th/7WpENW80kg3xz6MlCdxJfMSbJsM5TimFU98KNcpnxxbYdfqqQhAQ6l3mtYDCC -# BbwwggOkoAMCAQICCmEzJhoAAAAAADEwDQYJKoZIhvcNAQEFBQAwXzETMBEGCgmS -# JomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UE -# AxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMDgz -# MTIyMTkzMloXDTIwMDgzMTIyMjkzMloweTELMAkGA1UEBhMCVVMxEzARBgNVBAgT -# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCycllcGTBkvx2aYCAg -# Qpl2U2w+G9ZvzMvx6mv+lxYQ4N86dIMaty+gMuz/3sJCTiPVcgDbNVcKicquIEn0 -# 8GisTUuNpb15S3GbRwfa/SXfnXWIz6pzRH/XgdvzvfI2pMlcRdyvrT3gKGiXGqel -# cnNW8ReU5P01lHKg1nZfHndFg4U4FtBzWwW6Z1KNpbJpL9oZC/6SdCnidi9U3RQw -# WfjSjWL9y8lfRjFQuScT5EAwz3IpECgixzdOPaAyPZDNoTgGhVxOVoIoKgUyt0vX -# T2Pn0i1i8UU956wIAPZGoZ7RW4wmU+h6qkryRs83PDietHdcpReejcsRj1Y8wawJ -# XwPTAgMBAAGjggFeMIIBWjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTLEejK -# 0rQWWAHJNy4zFha5TJoKHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwEA -# ATAjBgkrBgEEAYI3FQIEFgQU/dExTtMmipXhmGA7qDFvpjy82C0wGQYJKwYBBAGC -# NxQCBAweCgBTAHUAYgBDAEEwHwYDVR0jBBgwFoAUDqyCYEBWJ5flJRP8KuEKU5VZ -# 5KQwUAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br -# aS9jcmwvcHJvZHVjdHMvbWljcm9zb2Z0cm9vdGNlcnQuY3JsMFQGCCsGAQUFBwEB -# BEgwRjBEBggrBgEFBQcwAoY4aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j -# ZXJ0cy9NaWNyb3NvZnRSb290Q2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggIBAFk5 -# Pn8mRq/rb0CxMrVq6w4vbqhJ9+tfde1MOy3XQ60L/svpLTGjI8x8UJiAIV2sPS9M -# uqKoVpzjcLu4tPh5tUly9z7qQX/K4QwXaculnCAt+gtQxFbNLeNK0rxw56gNogOl -# VuC4iktX8pVCnPHz7+7jhh80PLhWmvBTI4UqpIIck+KUBx3y4k74jKHK6BOlkU7I -# G9KPcpUqcW2bGvgc8FPWZ8wi/1wdzaKMvSeyeWNWRKJRzfnpo1hW3ZsCRUQvX/Ta -# rtSCMm78pJUT5Otp56miLL7IKxAOZY6Z2/Wi+hImCWU4lPF6H0q70eFW6NB4lhhc -# yTUWX92THUmOLb6tNEQc7hAVGgBd3TVbIc6YxwnuhQ6MT20OE049fClInHLR82zK -# wexwo1eSV32UjaAbSANa98+jZwp0pTbtLS8XyOZyNxL0b7E8Z4L5UrKNMxZlHg6K -# 3RDeZPRvzkbU0xfpecQEtNP7LN8fip6sCvsTJ0Ct5PnhqX9GuwdgR2VgQE6wQuxO -# 7bN2edgKNAltHIAxH+IOVN3lofvlRxCtZJj/UBYufL8FIXrilUEnacOTj5XJjdib -# Ia4NXJzwoq6GaIMMai27dmsAHZat8hZ79haDJLmIz2qoRzEvmtzjcT3XAH5iR9HO -# iMm4GPoOco3Boz2vAkBq/2mbluIQqBC0N1AI1sM9MIIGBzCCA++gAwIBAgIKYRZo -# NAAAAAAAHDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkw -# FwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcwNDAzMTI1MzA5WhcNMjEwNDAz -# MTMwMzA5WjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw -# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwggEiMA0GCSqGSIb3DQEB -# AQUAA4IBDwAwggEKAoIBAQCfoWyx39tIkip8ay4Z4b3i48WZUSNQrc7dGE4kD+7R -# p9FMrXQwIBHrB9VUlRVJlBtCkq6YXDAm2gBr6Hu97IkHD/cOBJjwicwfyzMkh53y -# 9GccLPx754gd6udOo6HBI1PKjfpFzwnQXq/QsEIEovmmbJNn1yjcRlOwhtDlKEYu -# J6yGT1VSDOQDLPtqkJAwbofzWTCd+n7Wl7PoIZd++NIT8wi3U21StEWQn0gASkdm -# EScpZqiX5NMGgUqi+YSnEUcUCYKfhO1VeP4Bmh1QCIUAEDBG7bfeI0a7xC1Un68e -# eEExd8yb3zuDk6FhArUdDbH895uyAc4iS1T/+QXDwiALAgMBAAGjggGrMIIBpzAP -# BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBQjNPjZUkZwCu1A+3b7syuwwzWzDzAL -# BgNVHQ8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwgZgGA1UdIwSBkDCBjYAUDqyC -# YEBWJ5flJRP8KuEKU5VZ5KShY6RhMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAX -# BgoJkiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290 -# IENlcnRpZmljYXRlIEF1dGhvcml0eYIQea0WoUqgpa1Mc1j0BxMuZTBQBgNVHR8E -# STBHMEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9k -# dWN0cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsG -# AQUFBzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv -# c29mdFJvb3RDZXJ0LmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0B -# AQUFAAOCAgEAEJeKw1wDRDbd6bStd9vOeVFNAbEudHFbbQwTq86+e4+4LtQSooxt -# YrhXAstOIBNQmd16QOJXu69YmhzhHQGGrLt48ovQ7DsB7uK+jwoFyI1I4vBTFd1P -# q5Lk541q1YDB5pTyBi+FA+mRKiQicPv2/OR4mS4N9wficLwYTp2OawpylbihOZxn -# LcVRDupiXD8WmIsgP+IHGjL5zDFKdjE9K3ILyOpwPf+FChPfwgphjvDXuBfrTot/ -# xTUrXqO/67x9C0J71FNyIe4wyrt4ZVxbARcKFA7S2hSY9Ty5ZlizLS/n+YWGzFFW -# 6J1wlGysOUzU9nm/qhh6YinvopspNAZ3GmLJPR5tH4LwC8csu89Ds+X57H2146So -# dDW4TsVxIxImdgs8UoxxWkZDFLyzs7BNZ8ifQv+AeSGAnhUwZuhCEl4ayJ4iIdBD -# 6Svpu/RIzCzU2DKATCYqSCRfWupW76bemZ3KOm+9gSd0BhHudiG/m4LBJ1S2sWo9 -# iaF2YbRuoROmv6pH8BJv/YoybLL+31HIjCPJZr2dHYcSZAI9La9Zj7jkIeW1sMpj -# tHhUBdRBLlCslLCleKuzoJZ1GtmShxN1Ii8yqAhuoFuMJb+g74TKIdbrHk/Jmu5J -# 4PcBZW+JC33Iacjmbuqnl84xKf8OxVtc2E0bodj6L54/LlUWa8kTo/0xggSVMIIE -# kQIBATCBkDB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMw -# IQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQQITMwAAAUCWqe5wVv7M -# BwABAAABQDAJBgUrDgMCGgUAoIGuMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEE -# MBwGCisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBS0 -# EeV2B3+iJ04fqsvMeMmarWUdODBOBgorBgEEAYI3AgEMMUAwPqAkgCIATQBpAGMA -# cgBvAHMAbwBmAHQAIABBAFMAUAAuAE4ARQBUoRaAFGh0dHA6Ly93d3cuYXNwLm5l -# dC8gMA0GCSqGSIb3DQEBAQUABIIBAMKp3ZPxE3tOKNXAse0GV+7GiG844hdpVbHg -# nh6QZ43FzALgBCIlXf3pHw7EQhinZZBLclgCDhOOUoNB7volr8gRicVbswh5Bhtb -# FIfaIGlAsS/zk2ZVq+8UA15zswpHtcwvA/VjmhK31PS08o3vBggWRe/wJnfB52bs -# pHvV+GnBHwxDALBzYeO+5Fwc3xUZX84yF9SGE7f78gDJgwEDPY49Oluscuao0cBJ -# CU5t9u1A2+fmGdzarLBFVD+Dia+7zFEV7nH/UPzHcYmG20AFJjNsDVpHakrSs+sK -# lde02ssj4c55X8J/xYA7kRpgmY3xG9EsMZ8+rvxV6ERhzcnDmrihggIoMIICJAYJ -# KoZIhvcNAQkGMYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgT -# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB -# AhMzAAAAtax9bYdrJhFHAAAAAAC1MAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMx -# CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNjEyMTMxMTA5NDJaMCMGCSqG -# SIb3DQEJBDEWBBTJJiJQnvB4/p2JBh3HwSyD2SI/qzANBgkqhkiG9w0BAQUFAASC -# AQCPp/OHMYwYAq+gLln5GUZEa3g15lvCVjtCTGQx2hqV4MWORfS8A2SI0zNCSBx7 -# 8OiZ7cg+6gLRH9FiMsG3sNq2GYxf5JiiYTreF4/WbdmOWWx4uKQk27RWmvWOE4dg -# h65qwlIdc5ZpD6oNYtUWcP2fS1bJBGvJztWv7eurJii1qA26PY1NX+TNCl9ldHw+ -# jxLhRQI2hOaOBQBaEfY3DuXXLW8NBuglkP50d94TtyDzAlmIjfrd9gEXws9CP0jZ -# eCpzmHbjI1F0hGK+FS8SN4yNd6fVpR5la0cVi35CUXRszxcjBH+BONkwmqxQCCKQ -# 6AYdrSEzvS5YuQ5EVWSzyzfW -# SIG # End signature block diff --git a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/uninstall.ps1 b/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/uninstall.ps1 deleted file mode 100644 index 61d5a444..00000000 --- a/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/uninstall.ps1 +++ /dev/null @@ -1,160 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -$roslynSubFolder = 'roslyn' - -if ($project -eq $null) { - $project = Get-Project -} - -$projectRoot = $project.Properties.Item('FullPath').Value -$binDirectory = Join-Path $projectRoot 'bin' -$targetDirectory = Join-Path $binDirectory $roslynSubFolder - -if (Test-Path $targetDirectory) { - Remove-Item $targetDirectory -Force -Recurse -} -# SIG # Begin signature block -# MIIargYJKoZIhvcNAQcCoIIanzCCGpsCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB -# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR -# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUBnzRb+A5zqyBejTiJB6CJOry -# jZ6gghWDMIIEwzCCA6ugAwIBAgITMwAAAMlkTRbbGn2zFQAAAAAAyTANBgkqhkiG -# 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw -# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTYwOTA3MTc1ODU0 -# WhcNMTgwOTA3MTc1ODU0WjCBszELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjENMAsGA1UECxMETU9QUjEnMCUGA1UECxMebkNpcGhlciBEU0UgRVNO -# OkIxQjctRjY3Ri1GRUMyMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBT -# ZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAotVXnfm6iRvJ -# s2GZXZXB2Jr9GoHX3HNAOp8xF/cnCE3fyHLwo1VF+TBQvObTTbxxdsUiqJ2Ew8DL -# jW8dolC9WqrPuP9Wj0gJNAdhnAYjtZN5fYEoGIsHBtuR3k+UxD2W7VWfjPDTY2zH -# e44WzfDvL2aXL2fomH73B7cx7YjT/7Du7vSdAHbr7SEdIyGJ5seMa+Y9MBJI48wZ -# A9CSnTGTFvhMXCYJuoR6Xc34A0EdHiTzfxY2tEWSiw5Xr+Oottc4IIHksNttYMgw -# HCu+tKqUlDkq5EdELh067r2Mv+OVkUkDQnLd1Vh/bP+yz92NKw7THQDYN7/4MTD2 -# faNVsutryQIDAQABo4IBCTCCAQUwHQYDVR0OBBYEFB7ZK3kpWqMOy6M4tybE49oI -# BMpsMB8GA1UdIwQYMBaAFCM0+NlSRnAK7UD7dvuzK7DDNbMPMFQGA1UdHwRNMEsw -# SaBHoEWGQ2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3Rz -# L01pY3Jvc29mdFRpbWVTdGFtcFBDQS5jcmwwWAYIKwYBBQUHAQEETDBKMEgGCCsG -# AQUFBzAChjxodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv -# c29mdFRpbWVTdGFtcFBDQS5jcnQwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJKoZI -# hvcNAQEFBQADggEBACvoEvJ84B3DuFj+SDfpkM3OCxYon2F4wWTOQmpDmTwysrQ0 -# grXhxNqMVL7QRKk34of1uvckfIhsjnckTjkaFJk/bQc8n5wwTzCKJ3T0rV/Vasoh -# MbGm4y3UYEh9nflmKbPpNhps20EeU9sdNIkxsrpQsPwk59wv13STtUjywuTvpM5s -# 1dQOIiUWrAMR14ZzOSBA7kgWI+UEj5iaGYOczxD+wH+07llzwlIC4TyRXtgKFuMF -# AONNNYUedbi6oOX7IPo0hb5RVPuVqAFxT98xIheJXNod9lf2JLhGD+H/pXnkZJRr -# VjJFcuJeEAnYAe7b97+BfhbPgv8V9FIAwqTxgxIwggTtMIID1aADAgECAhMzAAAB -# QJap7nBW/swHAAEAAAFAMA0GCSqGSIb3DQEBBQUAMHkxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xIzAhBgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNp -# Z25pbmcgUENBMB4XDTE2MDgxODIwMTcxN1oXDTE3MTEwMjIwMTcxN1owgYMxCzAJ -# BgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIx -# HjAcBgNVBAMTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjCCASIwDQYJKoZIhvcNAQEB -# BQADggEPADCCAQoCggEBANtLi+kDal/IG10KBTnk1Q6S0MThi+ikDQUZWMA81ynd -# ibdobkuffryavVSGOanxODUW5h2s+65r3Akw77ge32z4SppVl0jII4mzWSc0vZUx -# R5wPzkA1Mjf+6fNPpBqks3m8gJs/JJjE0W/Vf+dDjeTc8tLmrmbtBDohlKZX3APb -# LMYb/ys5qF2/Vf7dSd9UBZSrM9+kfTGmTb1WzxYxaD+Eaxxt8+7VMIruZRuetwgc -# KX6TvfJ9QnY4ItR7fPS4uXGew5T0goY1gqZ0vQIz+lSGhaMlvqqJXuI5XyZBmBre -# ueZGhXi7UTICR+zk+R+9BFF15hKbduuFlxQiCqET92ECAwEAAaOCAWEwggFdMBMG -# A1UdJQQMMAoGCCsGAQUFBwMDMB0GA1UdDgQWBBSc5ehtgleuNyTe6l6pxF+QHc7Z -# ezBSBgNVHREESzBJpEcwRTENMAsGA1UECxMETU9QUjE0MDIGA1UEBRMrMjI5ODAz -# K2Y3ODViMWMwLTVkOWYtNDMxNi04ZDZhLTc0YWU2NDJkZGUxYzAfBgNVHSMEGDAW -# gBTLEejK0rQWWAHJNy4zFha5TJoKHzBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8v -# Y3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNDb2RTaWdQQ0Ff -# MDgtMzEtMjAxMC5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRw -# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY0NvZFNpZ1BDQV8wOC0z -# MS0yMDEwLmNydDANBgkqhkiG9w0BAQUFAAOCAQEAa+RW49cTHSBA+W3p3k7bXR7G -# bCaj9+UJgAz/V+G01Nn5XEjhBn/CpFS4lnr1jcmDEwxxv/j8uy7MFXPzAGtOJar0 -# xApylFKfd00pkygIMRbZ3250q8ToThWxmQVEThpJSSysee6/hU+EbkfvvtjSi0lp -# DimD9aW9oxshraKlPpAgnPWfEj16WXVk79qjhYQyEgICamR3AaY5mLPuoihJbKwk -# Mig+qItmLPsC2IMvI5KR91dl/6TV6VEIlPbW/cDVwCBF/UNJT3nuZBl/YE7ixMpT -# Th/7WpENW80kg3xz6MlCdxJfMSbJsM5TimFU98KNcpnxxbYdfqqQhAQ6l3mtYDCC -# BbwwggOkoAMCAQICCmEzJhoAAAAAADEwDQYJKoZIhvcNAQEFBQAwXzETMBEGCgmS -# JomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UE -# AxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMDgz -# MTIyMTkzMloXDTIwMDgzMTIyMjkzMloweTELMAkGA1UEBhMCVVMxEzARBgNVBAgT -# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ -# Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCycllcGTBkvx2aYCAg -# Qpl2U2w+G9ZvzMvx6mv+lxYQ4N86dIMaty+gMuz/3sJCTiPVcgDbNVcKicquIEn0 -# 8GisTUuNpb15S3GbRwfa/SXfnXWIz6pzRH/XgdvzvfI2pMlcRdyvrT3gKGiXGqel -# cnNW8ReU5P01lHKg1nZfHndFg4U4FtBzWwW6Z1KNpbJpL9oZC/6SdCnidi9U3RQw -# WfjSjWL9y8lfRjFQuScT5EAwz3IpECgixzdOPaAyPZDNoTgGhVxOVoIoKgUyt0vX -# T2Pn0i1i8UU956wIAPZGoZ7RW4wmU+h6qkryRs83PDietHdcpReejcsRj1Y8wawJ -# XwPTAgMBAAGjggFeMIIBWjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTLEejK -# 0rQWWAHJNy4zFha5TJoKHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwEA -# ATAjBgkrBgEEAYI3FQIEFgQU/dExTtMmipXhmGA7qDFvpjy82C0wGQYJKwYBBAGC -# NxQCBAweCgBTAHUAYgBDAEEwHwYDVR0jBBgwFoAUDqyCYEBWJ5flJRP8KuEKU5VZ -# 5KQwUAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br -# aS9jcmwvcHJvZHVjdHMvbWljcm9zb2Z0cm9vdGNlcnQuY3JsMFQGCCsGAQUFBwEB -# BEgwRjBEBggrBgEFBQcwAoY4aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j -# ZXJ0cy9NaWNyb3NvZnRSb290Q2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggIBAFk5 -# Pn8mRq/rb0CxMrVq6w4vbqhJ9+tfde1MOy3XQ60L/svpLTGjI8x8UJiAIV2sPS9M -# uqKoVpzjcLu4tPh5tUly9z7qQX/K4QwXaculnCAt+gtQxFbNLeNK0rxw56gNogOl -# VuC4iktX8pVCnPHz7+7jhh80PLhWmvBTI4UqpIIck+KUBx3y4k74jKHK6BOlkU7I -# G9KPcpUqcW2bGvgc8FPWZ8wi/1wdzaKMvSeyeWNWRKJRzfnpo1hW3ZsCRUQvX/Ta -# rtSCMm78pJUT5Otp56miLL7IKxAOZY6Z2/Wi+hImCWU4lPF6H0q70eFW6NB4lhhc -# yTUWX92THUmOLb6tNEQc7hAVGgBd3TVbIc6YxwnuhQ6MT20OE049fClInHLR82zK -# wexwo1eSV32UjaAbSANa98+jZwp0pTbtLS8XyOZyNxL0b7E8Z4L5UrKNMxZlHg6K -# 3RDeZPRvzkbU0xfpecQEtNP7LN8fip6sCvsTJ0Ct5PnhqX9GuwdgR2VgQE6wQuxO -# 7bN2edgKNAltHIAxH+IOVN3lofvlRxCtZJj/UBYufL8FIXrilUEnacOTj5XJjdib -# Ia4NXJzwoq6GaIMMai27dmsAHZat8hZ79haDJLmIz2qoRzEvmtzjcT3XAH5iR9HO -# iMm4GPoOco3Boz2vAkBq/2mbluIQqBC0N1AI1sM9MIIGBzCCA++gAwIBAgIKYRZo -# NAAAAAAAHDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkw -# FwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcwNDAzMTI1MzA5WhcNMjEwNDAz -# MTMwMzA5WjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw -# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwggEiMA0GCSqGSIb3DQEB -# AQUAA4IBDwAwggEKAoIBAQCfoWyx39tIkip8ay4Z4b3i48WZUSNQrc7dGE4kD+7R -# p9FMrXQwIBHrB9VUlRVJlBtCkq6YXDAm2gBr6Hu97IkHD/cOBJjwicwfyzMkh53y -# 9GccLPx754gd6udOo6HBI1PKjfpFzwnQXq/QsEIEovmmbJNn1yjcRlOwhtDlKEYu -# J6yGT1VSDOQDLPtqkJAwbofzWTCd+n7Wl7PoIZd++NIT8wi3U21StEWQn0gASkdm -# EScpZqiX5NMGgUqi+YSnEUcUCYKfhO1VeP4Bmh1QCIUAEDBG7bfeI0a7xC1Un68e -# eEExd8yb3zuDk6FhArUdDbH895uyAc4iS1T/+QXDwiALAgMBAAGjggGrMIIBpzAP -# BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBQjNPjZUkZwCu1A+3b7syuwwzWzDzAL -# BgNVHQ8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwgZgGA1UdIwSBkDCBjYAUDqyC -# YEBWJ5flJRP8KuEKU5VZ5KShY6RhMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAX -# BgoJkiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290 -# IENlcnRpZmljYXRlIEF1dGhvcml0eYIQea0WoUqgpa1Mc1j0BxMuZTBQBgNVHR8E -# STBHMEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9k -# dWN0cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsG -# AQUFBzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv -# c29mdFJvb3RDZXJ0LmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0B -# AQUFAAOCAgEAEJeKw1wDRDbd6bStd9vOeVFNAbEudHFbbQwTq86+e4+4LtQSooxt -# YrhXAstOIBNQmd16QOJXu69YmhzhHQGGrLt48ovQ7DsB7uK+jwoFyI1I4vBTFd1P -# q5Lk541q1YDB5pTyBi+FA+mRKiQicPv2/OR4mS4N9wficLwYTp2OawpylbihOZxn -# LcVRDupiXD8WmIsgP+IHGjL5zDFKdjE9K3ILyOpwPf+FChPfwgphjvDXuBfrTot/ -# xTUrXqO/67x9C0J71FNyIe4wyrt4ZVxbARcKFA7S2hSY9Ty5ZlizLS/n+YWGzFFW -# 6J1wlGysOUzU9nm/qhh6YinvopspNAZ3GmLJPR5tH4LwC8csu89Ds+X57H2146So -# dDW4TsVxIxImdgs8UoxxWkZDFLyzs7BNZ8ifQv+AeSGAnhUwZuhCEl4ayJ4iIdBD -# 6Svpu/RIzCzU2DKATCYqSCRfWupW76bemZ3KOm+9gSd0BhHudiG/m4LBJ1S2sWo9 -# iaF2YbRuoROmv6pH8BJv/YoybLL+31HIjCPJZr2dHYcSZAI9La9Zj7jkIeW1sMpj -# tHhUBdRBLlCslLCleKuzoJZ1GtmShxN1Ii8yqAhuoFuMJb+g74TKIdbrHk/Jmu5J -# 4PcBZW+JC33Iacjmbuqnl84xKf8OxVtc2E0bodj6L54/LlUWa8kTo/0xggSVMIIE -# kQIBATCBkDB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMw -# IQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQQITMwAAAUCWqe5wVv7M -# BwABAAABQDAJBgUrDgMCGgUAoIGuMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEE -# MBwGCisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBQd -# 1fCNWyeElnDf7PrUhGSZL8RbPDBOBgorBgEEAYI3AgEMMUAwPqAkgCIATQBpAGMA -# cgBvAHMAbwBmAHQAIABBAFMAUAAuAE4ARQBUoRaAFGh0dHA6Ly93d3cuYXNwLm5l -# dC8gMA0GCSqGSIb3DQEBAQUABIIBAEDdvLXegyUt8DOquwd5Xf4ZL2zjzRSG4hgW -# qhxLJVJDU7hL4UR1BrihJWQOaKmkUWY2sXTlPSvpIRbbe3i21X7qZbap1c6xPSaZ -# HvDqJDb9PWJ3/WRTI9YjrVtWTkNXeO+BS4Wbngwn9h1KfuKVfVXTfXGMC7Xd26LT -# xhnttvRH7nPTxDohZaSc9DL+nvcdBsb/jLlI35+AyuIBwHiaq9zYeVye1Pg2Ky+8 -# mhBnfbp06eKsCSi9hur8pz4eNlECrm0CPSYIpde7VGAp9EsyLw8vVRpF/TGSn/dY -# mEyaqjYSzAhPmyMIkHcUDKkywbJgA4+tFf/ku4rwrDhiWbZ+/AChggIoMIICJAYJ -# KoZIhvcNAQkGMYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgT -# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m -# dCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB -# AhMzAAAAyWRNFtsafbMVAAAAAADJMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMx -# CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNjEyMTMxMTA5NTFaMCMGCSqG -# SIb3DQEJBDEWBBTMWCn+l2rTH175KRwZYeXsOYS/jzANBgkqhkiG9w0BAQUFAASC -# AQAmffR+fiid5ePrFvObsY8vsu9iWEH3FcezI5xf9YfrE0ofDzNolOaV8LqoDcKQ -# YL1hEmRrh1qbo18+C4KUstw0BEC7LFN8NmfR/y+QB3G5ff/Um/55ahGHBqN2Yx3/ -# cn+wCjkmWx+0zk+ZybWlFeds22qALaXVc5Bh4quLCEPM7Psj4EoRuclIQ51NznID -# lT7L/vkIjjnpMnbhz3m7QQLEhTpo/Kg0vBKNhHjD+hdyCjGvBmoHvlD0ZTuDJoTP -# YrUhYqMd2CKcD4DA+VgBzoKFt0tukBRk9ZzwBLq3M0MS29DI8NoHmch552opO4Wh -# I+9P2gnuIxfMffihUk4mlt1d -# SIG # End signature block diff --git a/packages/Microsoft.Net.Compilers.2.0.1/Microsoft.Net.Compilers.2.0.1.nupkg b/packages/Microsoft.Net.Compilers.2.0.1/Microsoft.Net.Compilers.2.0.1.nupkg deleted file mode 100644 index f20a1440..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/Microsoft.Net.Compilers.2.0.1.nupkg and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/ThirdPartyNotices.rtf b/packages/Microsoft.Net.Compilers.2.0.1/ThirdPartyNotices.rtf deleted file mode 100644 index b74371f5..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/ThirdPartyNotices.rtf +++ /dev/null @@ -1,54 +0,0 @@ -{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033\deflangfe1033{\fonttbl{\f0\fswiss\fprq2\fcharset0 Tahoma;}} -{\colortbl ;\red0\green0\blue255;} -{\*\generator Riched20 10.0.10037}{\*\mmathPr\mnaryLim0\mdispDef1\mwrapIndent1440 }\viewkind4\uc1 -\pard\nowidctlpar\sb120\sa120\f0\fs19 THIRD-PARTY SOFTWARE NOTICES AND INFORMATION\par -Do Not Translate or Localize\par -\par -This file provides information regarding components that are being relicensed to you by Microsoft Corporation under Microsoft's software licensing terms. Microsoft Corporation reserves all rights not expressly granted herein.\par -\par -%% \caps .NET Compiler Platform\caps0 NOTICES AND INFORMATION BEGIN HERE\par -=========================================\par -Copyright (C) .NET Foundation. All rights reserved.\par -\par -Apache License, Version 2.0\par -Apache License\par -Version 2.0, January 2004\par -{{\field{\*\fldinst{HYPERLINK http://www.apache.org/licenses/ }}{\fldrslt{http://www.apache.org/licenses/\ul0\cf0}}}}\f0\fs19\par -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\par -1. Definitions.\par -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\par -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\par -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\par -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.\par -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\par -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\par -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\par -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\par -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."\par -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\par -2. Grant of Copyright License.\par -Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\par -3. Grant of Patent License.\par -Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\par -4. Redistribution.\par -You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\par -1. You must give any other recipients of the Work or Derivative Works a copy of this License; and\par -2. You must cause any modified files to carry prominent notices stating that You changed the files; and\par -3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\par -4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\par -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\par -5. Submission of Contributions.\par -Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\par -6. Trademarks.\par -This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\par -7. Disclaimer of Warranty.\par -Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\par -8. Limitation of Liability.\par -In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\par -9. Accepting Warranty or Additional Liability.\par -While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\par -END OF TERMS AND CONDITIONS\par -=========================================\par -END OF \caps .NET Compiler Platform\caps0 NOTICES AND INFORMATION\par -} - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/build/Microsoft.Net.Compilers.props b/packages/Microsoft.Net.Compilers.2.0.1/build/Microsoft.Net.Compilers.props deleted file mode 100644 index 769370f3..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/build/Microsoft.Net.Compilers.props +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - false - $(MSBuildThisFileDirectory)..\tools\Microsoft.CSharp.Core.targets - $(MSBuildThisFileDirectory)..\tools\Microsoft.VisualBasic.Core.targets - - - - - $(MSBuildThisFileDirectory)..\tools - csc.exe - $(MSBuildThisFileDirectory)..\tools - vbc.exe - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.Build.Tasks.CodeAnalysis.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.Build.Tasks.CodeAnalysis.dll deleted file mode 100644 index 7dbc1113..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.Build.Tasks.CodeAnalysis.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CSharp.Core.targets b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CSharp.Core.targets deleted file mode 100644 index 67a2aeb9..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CSharp.Core.targets +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - $(NoWarn);1701;1702 - - - - - $(NoWarn);2008 - - - - - - - - - - - $(AppConfig) - - - $(IntermediateOutputPath)$(TargetName).compile.pdb - - - - - false - - - - - - - - - - true - - - - - - - - - <_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" /> - - - - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll deleted file mode 100644 index 1f8e4c0a..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.CSharp.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index b829136b..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.Scripting.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.Scripting.dll deleted file mode 100644 index de72575f..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.VisualBasic.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.VisualBasic.dll deleted file mode 100644 index dfe227fb..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.VisualBasic.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.dll deleted file mode 100644 index fce04fdd..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.DiaSymReader.Native.amd64.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.DiaSymReader.Native.amd64.dll deleted file mode 100644 index be3bf3ce..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.DiaSymReader.Native.amd64.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.DiaSymReader.Native.x86.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.DiaSymReader.Native.x86.dll deleted file mode 100644 index 1e2a08b9..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.DiaSymReader.Native.x86.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.VisualBasic.Core.targets b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.VisualBasic.Core.targets deleted file mode 100644 index 4ead6704..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.VisualBasic.Core.targets +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - <_NoWarnings Condition="'$(WarningLevel)' == '0'">true - <_NoWarnings Condition="'$(WarningLevel)' == '1'">false - - - - - $(IntermediateOutputPath)$(TargetName).compile.pdb - - - - - - - - - - - false - - - - - - - - - - true - - - - - - - - <_CoreCompileResourceInputs Remove="@(_CoreCompileResourceInputs)" /> - - - - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.Win32.Primitives.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.Win32.Primitives.dll deleted file mode 100644 index d7b2a2ce..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.AppContext.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.AppContext.dll deleted file mode 100644 index 5cb9dfb0..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.AppContext.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Collections.Immutable.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Collections.Immutable.dll deleted file mode 100644 index ce6fc0e8..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Collections.Immutable.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Console.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Console.dll deleted file mode 100644 index f47e6093..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Console.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.FileVersionInfo.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 77248bfb..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.Process.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.Process.dll deleted file mode 100644 index e03db64c..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.Process.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.StackTrace.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 5ec85f36..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.Compression.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.Compression.dll deleted file mode 100644 index f8468a65..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.Compression.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.DriveInfo.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 754677f9..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.Primitives.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index ad9c238c..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.dll deleted file mode 100644 index 7c439774..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.FileSystem.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.Pipes.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.Pipes.dll deleted file mode 100644 index f0b233ac..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.IO.Pipes.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Reflection.Metadata.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Reflection.Metadata.dll deleted file mode 100644 index ee68731c..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Reflection.Metadata.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.AccessControl.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.AccessControl.dll deleted file mode 100644 index ea65f02f..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.AccessControl.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Claims.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Claims.dll deleted file mode 100644 index 4e28e4cd..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Claims.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Algorithms.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index fa8ad651..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Encoding.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index de1ec5e5..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Primitives.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 16b24465..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.X509Certificates.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index e6af9609..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Principal.Windows.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Principal.Windows.dll deleted file mode 100644 index 06601a1f..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Text.Encoding.CodePages.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 0f2f4474..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Threading.Thread.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Threading.Thread.dll deleted file mode 100644 index c0271b0c..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Threading.Thread.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.ValueTuple.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.ValueTuple.dll deleted file mode 100644 index 78a18514..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.ValueTuple.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.ReaderWriter.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.ReaderWriter.dll deleted file mode 100644 index 3d5103bf..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XPath.XDocument.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XPath.XDocument.dll deleted file mode 100644 index ada40e06..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XPath.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XPath.dll deleted file mode 100644 index 86a25a35..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XPath.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XmlDocument.dll b/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XmlDocument.dll deleted file mode 100644 index cf138d38..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/VBCSCompiler.exe b/packages/Microsoft.Net.Compilers.2.0.1/tools/VBCSCompiler.exe deleted file mode 100644 index 8a36d314..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/VBCSCompiler.exe and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/VBCSCompiler.exe.config b/packages/Microsoft.Net.Compilers.2.0.1/tools/VBCSCompiler.exe.config deleted file mode 100644 index e8b68218..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/VBCSCompiler.exe.config +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.exe b/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.exe deleted file mode 100644 index 39a698b7..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.exe and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.exe.config b/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.exe.config deleted file mode 100644 index 02b48758..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.exe.config +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.rsp b/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.rsp deleted file mode 100644 index ce72ac60..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/csc.rsp +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -# This file contains command-line options that the C# -# command line compiler (CSC) will process as part -# of every compilation, unless the "/noconfig" option -# is specified. - -# Reference the common Framework libraries -/r:Accessibility.dll -/r:Microsoft.CSharp.dll -/r:System.Configuration.dll -/r:System.Configuration.Install.dll -/r:System.Core.dll -/r:System.Data.dll -/r:System.Data.DataSetExtensions.dll -/r:System.Data.Linq.dll -/r:System.Data.OracleClient.dll -/r:System.Deployment.dll -/r:System.Design.dll -/r:System.DirectoryServices.dll -/r:System.dll -/r:System.Drawing.Design.dll -/r:System.Drawing.dll -/r:System.EnterpriseServices.dll -/r:System.Management.dll -/r:System.Messaging.dll -/r:System.Runtime.Remoting.dll -/r:System.Runtime.Serialization.dll -/r:System.Runtime.Serialization.Formatters.Soap.dll -/r:System.Security.dll -/r:System.ServiceModel.dll -/r:System.ServiceModel.Web.dll -/r:System.ServiceProcess.dll -/r:System.Transactions.dll -/r:System.Web.dll -/r:System.Web.Extensions.Design.dll -/r:System.Web.Extensions.dll -/r:System.Web.Mobile.dll -/r:System.Web.RegularExpressions.dll -/r:System.Web.Services.dll -/r:System.Windows.Forms.dll -/r:System.Workflow.Activities.dll -/r:System.Workflow.ComponentModel.dll -/r:System.Workflow.Runtime.dll -/r:System.Xml.dll -/r:System.Xml.Linq.dll diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.exe b/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.exe deleted file mode 100644 index c8f91517..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.exe and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.exe.config b/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.exe.config deleted file mode 100644 index 0f3a861a..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.exe.config +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.rsp b/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.rsp deleted file mode 100644 index 2ec6fc9b..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/csi.rsp +++ /dev/null @@ -1,14 +0,0 @@ -/r:System -/r:System.Core -/r:Microsoft.CSharp -/r:System.ValueTuple.dll -/u:System -/u:System.IO -/u:System.Collections.Generic -/u:System.Console -/u:System.Diagnostics -/u:System.Dynamic -/u:System.Linq -/u:System.Linq.Expressions -/u:System.Text -/u:System.Threading.Tasks \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.exe b/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.exe deleted file mode 100644 index b208e250..00000000 Binary files a/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.exe and /dev/null differ diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.exe.config b/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.exe.config deleted file mode 100644 index 02b48758..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.exe.config +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.rsp b/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.rsp deleted file mode 100644 index 8350880b..00000000 --- a/packages/Microsoft.Net.Compilers.2.0.1/tools/vbc.rsp +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -# This file contains command-line options that the VB -# command line compiler (VBC) will process as part -# of every compilation, unless the "/noconfig" option -# is specified. - -# Reference the common Framework libraries -/r:Accessibility.dll -/r:System.Configuration.dll -/r:System.Configuration.Install.dll -/r:System.Data.dll -/r:System.Data.OracleClient.dll -/r:System.Deployment.dll -/r:System.Design.dll -/r:System.DirectoryServices.dll -/r:System.dll -/r:System.Drawing.Design.dll -/r:System.Drawing.dll -/r:System.EnterpriseServices.dll -/r:System.Management.dll -/r:System.Messaging.dll -/r:System.Runtime.Remoting.dll -/r:System.Runtime.Serialization.Formatters.Soap.dll -/r:System.Security.dll -/r:System.ServiceProcess.dll -/r:System.Transactions.dll -/r:System.Web.dll -/r:System.Web.Mobile.dll -/r:System.Web.RegularExpressions.dll -/r:System.Web.Services.dll -/r:System.Windows.Forms.dll -/r:System.XML.dll - -/r:System.Workflow.Activities.dll -/r:System.Workflow.ComponentModel.dll -/r:System.Workflow.Runtime.dll -/r:System.Runtime.Serialization.dll -/r:System.ServiceModel.dll - -/r:System.Core.dll -/r:System.Xml.Linq.dll -/r:System.Data.Linq.dll -/r:System.Data.DataSetExtensions.dll -/r:System.Web.Extensions.dll -/r:System.Web.Extensions.Design.dll -/r:System.ServiceModel.Web.dll - -# Import System and Microsoft.VisualBasic -/imports:System -/imports:Microsoft.VisualBasic -/imports:System.Linq -/imports:System.Xml.Linq - -/optioninfer+