-
Notifications
You must be signed in to change notification settings - Fork 92
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
Make DateTime parameters culture invariant #100
Conversation
This was already done with a commit I made a while ago, but undone. It might be beneficial to fix the botched merge of all my code by @faniereynders |
I had to merge plenty of PRs at the time and had to manually resolve the conflicts. This led to possible feature loss. Hopefully things will start to stabilize now. |
Thanks @nillis for your contribution! |
Thanks to you for the fast response! And for the great library I've been using for 6 months now. |
@nillis if you're interested in helping out as an official contributor, let me know. Would be great to expand on the core team. |
* Make DateTime parameters culture invariant (#100) * Make DateTime parameters culture invariant * Make DateTime parameters culture invariant in cs template * Make Nullable<DateTime> culture invariant in tt * Make Nullable<DateTime> culture invariant in cs template * MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) (#104)
* MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) * Pull from Master (#105) * Make DateTime parameters culture invariant (#100) * Make DateTime parameters culture invariant * Make DateTime parameters culture invariant in cs template * Make Nullable<DateTime> culture invariant in tt * Make Nullable<DateTime> culture invariant in cs template * MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) (#104) * Bumped version * Bumped version * Bumped version
* MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) * Pull from Master (#105) * Make DateTime parameters culture invariant (#100) * Make DateTime parameters culture invariant * Make DateTime parameters culture invariant in cs template * Make Nullable<DateTime> culture invariant in tt * Make Nullable<DateTime> culture invariant in cs template * MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) (#104) * Bumped version * Bumped version * Bumped version * Update AssemblyInfo.cs
* MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) * Pull from Master (#105) * Make DateTime parameters culture invariant (#100) * Make DateTime parameters culture invariant * Make DateTime parameters culture invariant in cs template * Make Nullable<DateTime> culture invariant in tt * Make Nullable<DateTime> culture invariant in cs template * MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) (#104) * Bumped version * Bumped version * Bumped version * Update AssemblyInfo.cs * Update AssemblyInfo.cs
* MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) * Pull from Master (#105) * Make DateTime parameters culture invariant (#100) * Make DateTime parameters culture invariant * Make DateTime parameters culture invariant in cs template * Make Nullable<DateTime> culture invariant in tt * Make Nullable<DateTime> culture invariant in cs template * MyWebApiProxyBaseAddress trailing slash (sans System.Web) (#103) (#104) * Bumped version * Bumped version * Bumped version * Update AssemblyInfo.cs * Update AssemblyInfo.cs * signed assemblies
Unfortunately this does not seem to work with |
For DateTime parameters the default ToString will look into the CurrentCulture to determine the dateformat. This pull request fixes this with the solution proposed in #70 by @wolfen351.