1. 07 3月, 2015 2 次提交
  2. 18 2月, 2015 1 次提交
    • J
      Fix use of DefineConstants · 5e896eb9
      Jared Parsons 提交于
      The primary use of DefineConstants should be to append constant values,
      not replace them.  Any time a replacement operation is used it prevents
      us from establishing defines in our targets and pushing them down to all
      affected projects.
      5e896eb9
  3. 13 2月, 2015 1 次提交
  4. 15 1月, 2015 2 次提交
  5. 14 1月, 2015 5 次提交
    • J
      This removes the scripting dependency from the Open directory by applying the following changes: · a87dc1c8
      jaredpar 提交于
           1. Removes the project reference to CommonScritpingTests.  This just existed to ensure the ReflectionEmit emmiter was present in the binaries directory.  Our main infrastructure already guarantees this by virtue of building all projects.
           2. Make the Emmiter load code tolerant of the ReflectionEmit Emitter not being present in binaries.  This is the case when building the Open directory only via OSS.
       (changeset 1396895)
      a87dc1c8
    • J
      This moves our settings / targets files into the Open directory. These files... · 30f9460e
      jaredpar 提交于
      This moves our settings / targets files into the Open directory.  These files are a referenced by virtually all of the projects in the Open directory and are a necessary part of the build process.  Making this change is a necessary step in removing the project scrubber.  (changeset 1396832)
      30f9460e
    • J
      This changes our projects to consume xUnit through NuGet instead of our... · 5e13a817
      jaredpar 提交于
      This changes our projects to consume xUnit through NuGet instead of our checked in binaries in Closed\Tools\xUnit.  This is another step in removing project scrubber.  (changeset 1396548)
      5e13a817
    • R
      e315208f
    • J
      Move Roslyn to a standard version of xUnit · 022d740b
      jaredpar 提交于
       Change Description:
      
           This change moves Roslyn off of our custom version of xUnit to an official release (xUnit 1.9.2):
      
           - Deletes all of the custom xUnit binaries from Closed\Tools\xUnit
           - Put a subset of the official 1.9.2 binaries with no name mangling into Closed\Tools\xUnit.
           - Rebuilt our custom xUnit GUI (named xunit.gui.custom) against 1.9.2 and put it in Closed\Tools\xUnit
           - Updated the targets file, RunTests.ps1 and Test.exe to refer to the updated binary names.
           - Changed the Roslyn unit tests to work on standard xUnit.
      
           The biggest part of the effort was the last part, getting the tests to run on standard xUnit.  The main issue here was many assumed they would be executed on a single STA thread and as a result cached many thread affinitized values into static fields.  Fixing this involved mostly finding the values and annotating them with [ThreadStatic].
      
           This does mean that MEF composition will happen several times during an xUnit run where before it happened only once.  That is unfortunate but doesn't seem to regress the suites in a significant way on my machine.  Using a multithreaded MEF container isn't an option here because the services end up caching thread affinitized WPF values.
      
           ForegroudThreadAffinitizedObject was the other largest change.  It's use of a static ctor to establish the foreground thread is dangerous and should be correctly addressed in a future change.  For now I added a method for tests to reset the identified foreground thread.
      
           More changes will be coming here for our use of xUnit.  But they should be smaller and more targetted (deleting the extra sources, a better build story for the GUI, etc ...).
      
           Note: Why 1.9.2 instead of 2.0?  We have several uses of custom xUnit extensibility that is not easily portable to 2.0.  Best path forward is to delete that extensibility since it isn't really adding much and move us directly onto 2.0 in a later check in.
      
       (changeset 1395675)
      022d740b
  6. 24 12月, 2014 2 次提交
    • A
      Simplify updating LKG compiler & analyzers by introducing "global" NuGet references · 9ee65cac
      angocke 提交于
      This changeset introduces the concept of a "global" nuget package. The references to the NuGet packages are inserted into the Open VSL.Settings.targets file, which is imported into every project in Roslyn. This ensures that every project automatically gets these "global" packages. (changeset 1386548)
      9ee65cac
    • T
      Updates System.Collections.Immutable and System.Metadata.Reader to versions... · e8be04b7
      TomasMatousek 提交于
      Updates System.Collections.Immutable and System.Metadata.Reader to versions 1.1.33-beta and 1.0.18-beta, respectively.
           Updates VSMEF to the latest build from VSPRO_1.
      
           A few code fixes:
           - ImmutableArrayInterop is gone
             - in product we used in a couple of places where we now just create a copy of the byte[] (MetadataWriter)
             - test infrastructure uses a workaround with explicitly laid out union to avoid copies of large metadata blobs
           - EditorTestApp class was incorrectly importing MEF components resulting in a cycle. The new VSMEF reports such errors. (changeset 1385613)
      e8be04b7
  7. 04 12月, 2014 1 次提交
    • J
      Clean up unnecessary StyleCop inclusion and fix packages.config. · d07164b7
      jasonmalinowski 提交于
      We had a number of projects that included the StyleCop NuGet package only to also disable StyleCop. We also had some projects that were referencing assemblies out of packages but didn't say so in packages.config, or had stuff in packages.config not reflected in the actual project file. (changeset 1378738)
      d07164b7
  8. 11 11月, 2014 1 次提交
  9. 07 11月, 2014 1 次提交
  10. 17 10月, 2014 1 次提交
  11. 16 10月, 2014 1 次提交
  12. 11 10月, 2014 1 次提交
    • T
      Remove duplicate package references. · 8fef5b5d
      tmeschter 提交于
      When our projects were last updated to a newer version of Microsoft.Net.ToolsetCompilers, NuGet didn't replace the old version--it just put the new version next to it. Every project ended up referencing both versions, and which set of compiler binaries "won" depended on the order they appeared in the project file. So different projects built with different compilers.
      
      This change strips out all references to the old version. (changeset 1352054)
      8fef5b5d
  13. 10 10月, 2014 1 次提交
  14. 25 9月, 2014 2 次提交
  15. 10 9月, 2014 3 次提交
  16. 05 8月, 2014 1 次提交
    • K
      Moving NuGet.targets import to be last. · 9bf4a3b3
      kayleh 提交于
      MSBuild unconditionally overwrites the value of BuildDependsOn in Microsoft.Common.CurrentVersion.targets:
        <PropertyGroup>
          <BuildDependsOn>
            BeforeBuild;
            CoreBuild;
            AfterBuild
          </BuildDependsOn>
        </PropertyGroup>
      
      So NuGet.targets needs to be included after Microsoft.Common.CurrentVersion.targets.  Otherwise, the RestorePackages build target won't run.
      
       (changeset 1311037)
      9bf4a3b3
  17. 31 7月, 2014 1 次提交
  18. 30 7月, 2014 1 次提交
    • A
      Rewrite of the native client to improve stability and give better error messages. · 8d7b7940
      angocke 提交于
      The new native client is written in C++11 to be more maintainable and forward-looking. The native client is a static library, which is now linked into the csc2 and vbc2 projects instead of having a single csc2.cpp file which is shared between the two projects and built for each based on a preprocessor definition.
      
      The MSBuildTask is also configured to use csc2/vbc2 and feature no extra code for Roslyn, which will prevent us from having to maintain both a native and a managed version of the client. (changeset 1307711)
      8d7b7940
  19. 26 7月, 2014 1 次提交
  20. 08 7月, 2014 1 次提交
  21. 02 7月, 2014 2 次提交
    • T
      More robust command line compiler testing · e863aad6
      TomasMatousek 提交于
      Previously the command line tests were looking in various directories for csc.exe/vbc.exe. Instead, add a reference to csc/vbc project to the command line unit test assembly, so that we always test what we build and not depend on directories outside of Roslyn.
      To make it easy to test the default .rsp file this change links it into the command line unit test project and includes it to resources. The tests then extract the .rsp from the resources and save it to a temp file for testing.
       (changeset 1285693)
      e863aad6
    • T
      Renames · 8358dd30
      TomasMatousek 提交于
      rcsc to csc
      rcsi to csi
      rcsc2 to csc2
      rvbc to vbc
      rvbi to vbi
      rvbc2 to vbc2
       (changeset 1285266)
      8358dd30
  22. 20 6月, 2014 2 次提交
  23. 22 4月, 2014 1 次提交
  24. 01 4月, 2014 1 次提交
  25. 28 3月, 2014 3 次提交
  26. 27 3月, 2014 1 次提交