-
When a class has a concrete dependency, I would expect the container to automatically create an instance of this dependency, but instead it fails, and I have to register the concrete type explicitly.
…
-
I have a "switch" statement in my code with 9 "case" in addition to one "default". When I run OpenCover on my unit tests and generate a HTML report with ReportGenerator v2.0, all the cases as well as …
-
No error in debug mode, but when I turn off debugging I get a surprising error (VS2012 dev server):
```
[IndexOutOfRangeException: Index was outside the bounds of the array.]
System.IO.IsolatedSto…
-
Nimbus's `string.FormatWith` extension is public: https://github.com/NimbusAPI/Nimbus/blob/master/src/Nimbus/Extensions/StringExtensions.cs.
It's well documented that I love me a good `string.FormatW…
-
行 13: public void DisableByBizDate(string bizDate) {
行 14: var sql = string.Format("UPDATE {0} set STATE = '0' WHERE BIZ_DATE=", TableName );
行 15: context.Database.ExecuteSqlCommand(s…
theFm updated
11 years ago
-
Specifically the solution for [issue 3](https://github.com/JonCanning/TankTop/issues/3) is not available in the newest version of the package.
I downloaded TankTop 1.1.24 via the NuGet Package Explor…
-
Topshelf correctly passes the displayname with quotes to the servcie (registry) but not the -servicename: which makes problems if the service name has spaces inside.
-
Steps to reporoduce:
``` C#
Query query = new Query("test:Something");
query.Var = new Dictionary {{0, DateTime.Now.Ticks / TimeSpan.TicksPerSecond}};
Console.WriteLine(query.ToQueryString());
```
E…
-
``` c#
@{
string[] scriptLinks = new[]
{
Url.Content("~/content/script/spin.min.js"),
Url.Content("~/content/script/jquery.spin.js"),
Url.Content("~/content/script/jque…
-
It would be good practice to isolate the extension methods to their own namespace if they are declared public. A common pattern is to have all related extension methods in a namespace such as Topshelf…