1. 12 May, 2017 1 commit
    • Nick Craver's avatar
      netstandard2.0 functionality (w/ runtime breaks) · 7e5bd308
      Nick Craver authored
      This adds a netstandard2.0 build to Dapper (and StrongName until v2),
      adds a netstandard2.0 test lineup, restores most functionality (except
      UDTs for SQL, e.g. .UdtTypeName isn't in netstandard2), and also breaks
      things not actually implemented or implemented correctly in
      netstandard2.0. Pushing this up so we can work through these with the
      .NET teams.
      
      Several things are still broken here (and fail tests):
      - Parameter decimal values (not filed yet)
      - DataTables as parameters
      (https://github.com/dotnet/corefx/issues/19708)
      - .GetSchemaTable() (not yet filed, implementation is completely missing
      from SqlDataReader in CoreFX)
      
      While the compile is clean, the above are runtime issues.
      `SqlParameter.UdtTypeName` is a separate issue, that one just wasn't in
      `netstandard2.0` at all...so we can't support UDTs there until it is.
      See https://github.com/dotnet/corefx/issues/17126 for details.
      7e5bd308
  2. 11 May, 2017 2 commits
  3. 08 May, 2017 6 commits
  4. 07 May, 2017 6 commits
  5. 06 May, 2017 15 commits
  6. 04 May, 2017 1 commit
  7. 01 May, 2017 1 commit
  8. 29 Apr, 2017 1 commit
  9. 07 Apr, 2017 4 commits
  10. 26 Mar, 2017 1 commit
    • Kruithne's avatar
      Correct minor typographical error in Readme.md (#732) · d73ae3b3
      Kruithne authored
      Under the `List Support` section, the sentence opens with `Dapper allow you`, which should instead be `Dapper allows you`. This PR will correct this mistake, restoring balance to the universe.
      
      After originally spotting this, the most minor of mistakes, I decided to leave it and move on with my life, since it likely effected nobody. Four hours passed and the thought that it existed unchecked had fully manifested itself within my subconscious and I was no longer able to continue with my existence knowing that I had seen this mistake and not exercised my power to correct it.
      
      Thank you, and sorry.
      d73ae3b3
  11. 25 Mar, 2017 1 commit
    • Nick Craver's avatar
      VS 2017 .csproj Migration · ae7a29a9
      Nick Craver authored
      Due to the way VS test works (by injecting an executable entry point), the performance tests needed to be factored out. I also organized all of our existing tests better along the way.
      Actual code changes to Dapper itself are very minor, only formatting and documentation fixes (which we need many more of).
      
      The build.ps1 script is upated to work, but note that <frameworkAssemblies> is not working in .nuspec inside the packages in the new .csproj system. I consider this to be a blocker. Issue is here: https://github.com/NuGet/Home/issues/4853
      ae7a29a9
  12. 14 Mar, 2017 1 commit