1. 27 2月, 2016 2 次提交
  2. 22 2月, 2016 1 次提交
    • D
      Silence "No source files" build warning · 5313d832
      David Kean 提交于
      CSharpAnalyzers.Vsix.vbproj was pulling CSharp targets and csc.exe, so their supressed warnings were not being respected.
      Suppressed this warning in CSharpAnalyzers.Vsix.csproj.
      5313d832
  3. 20 2月, 2016 2 次提交
  4. 17 2月, 2016 2 次提交
  5. 12 2月, 2016 2 次提交
  6. 05 2月, 2016 2 次提交
  7. 23 1月, 2016 2 次提交
  8. 22 1月, 2016 1 次提交
  9. 19 1月, 2016 1 次提交
  10. 16 1月, 2016 2 次提交
    • C
      Remove # character from VSIX descriptions. · 1c6f03dc
      Cyrus Najmabadi 提交于
      These characters cause problems with MEF with how they make directory paths.
      The bug in MEF will get fixed in Dev15.  However, in the meantime, this gives
      us a workaround so that we stop getting mef corruption errors.
      1c6f03dc
    • J
      Fixed app.config casing · 7993c56a
      Jared Parsons 提交于
      Ensured that all uses of app.config in our product / test code base is
      used in the lower case form.  This helps with our Unix efforts where
      mixing the case can be significant.  Updated all of the project
      references to ensure they used the lower case version as well.
      7993c56a
  11. 08 1月, 2016 2 次提交
  12. 16 12月, 2015 1 次提交
  13. 24 11月, 2015 1 次提交
  14. 11 11月, 2015 2 次提交
  15. 06 11月, 2015 2 次提交
  16. 01 11月, 2015 1 次提交
    • J
      Disable AppDomain isolation in unit tests · 24b07563
      Jared Parsons 提交于
      This change disables AppDomain isolation in the unit tests that don't require it.  This is necessary for our goal of running many of the suites on CoreCLR and helps reduce our exposure to #6358.
      
      The AppDomain creation code incorrectly used AppDomain.CurrentDomain.BaseDirectory as the new base directory.  There is no gurantee this points to the directory containing the unit test binaries and this is actually the case in xunit without AppDomains.  Instead it points to the directory containing xunit.oconsole.x86 and uses AppDomain.ResolveAssembly / LoadFrom to resolve unit test binaries.
      
      Switching over to no AppDomains in xunit was causing the creation of RuntimeAssemblyManager across AppDomains to fail.  The error given was a failure to load Roslyn.Test.Utilities.Desktop in the original AppDomain.  This is odd given that the code is executing inside Roslyn.Test.Utilities.Desktop.  The error was fixed by hooking AppDomain.AssemblyResolve in the original AppDomain and essentially reloading the DLL.  I'm not completely sure why this worked but I suspect it has to do with the original AppDomain having an incorrect base directory.
      24b07563
  17. 16 10月, 2015 1 次提交
  18. 13 10月, 2015 1 次提交
  19. 10 10月, 2015 3 次提交
  20. 09 10月, 2015 4 次提交
  21. 07 10月, 2015 1 次提交
  22. 01 10月, 2015 1 次提交
  23. 22 9月, 2015 1 次提交
    • T
      This cleans up the Roslyn Code Base. · deee04e4
      Tanner Gooding 提交于
      * This updates all references to nuget.exe to use the copy in the root.
      * This deletes all NuGet.config and NuGet.exe files that are not in the root.
      * This removes all references to NuGet.targets (which is obsolete and no longer exists)
      deee04e4
  24. 19 9月, 2015 2 次提交