Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor simplifications #1098

Merged
merged 3 commits into from
Nov 10, 2020
Merged

Minor simplifications #1098

merged 3 commits into from
Nov 10, 2020

Commits on Nov 9, 2020

  1. Simplify cref in xml doc

    kzu committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    479ca90 View commit details
    Browse the repository at this point in the history
  2. Don't depend on SolutionDir to allow Pack from project

    The SolutionDir property is only available when building from the
    solution. For packing, it's actually not necessary and we could
    also easily allow packing from the Moq.csproj project itself.
    
    This change, in addition to enabling that, also makes the icon
    path more flexible since it could be moved down to the src folder
    (say) without requiring a change to the .csproj.
    kzu committed Nov 9, 2020
    Configuration menu
    Copy the full SHA
    50eac97 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2020

  1. Embed symbols in assembly, drop .snupkg

    Since we're generating portable symbols, these are WAY smaller than
    full PDBs used to be. Their size contribution to the package are
    negligible and for convenience, it's more common nowadays to just
    embed the symbols always in the assembly itself. In particular for
    a library that is not deployed to production apps, this makes
    perfect sense.
    
    So stop generating the (effectively legacy) .snupkg.
    kzu committed Nov 10, 2020
    Configuration menu
    Copy the full SHA
    3dc0d1b View commit details
    Browse the repository at this point in the history