Mike Zboray
Mike Zboray
I've been using ILRepack for combining some assemblies that have baml resources, and I have a need to be able to load two different versions of the same assembly. However...
I recently happened to need to use xUnit.net for a test project because it had one key feature that seemed to be missing from NUnit. This is an option to...
Specifically the conversion between units such as WattsPerMinute and WattsPerHour are incorrect, see [PowerRampSpec](https://github.com/typelevel/squants/blob/b2fa2d4c1f00fd49b3e8fb047199f1f2965a03d7/shared/src/test/scala/squants/energy/PowerRampSpec.scala#L55): ``` WattsPerHour(1) should be(WattsPerMinute(60)) ``` This should be `WattsPerHour(3600) should be(WattsPerMinute(60))` Also the types in PowerRamp...