omar / ByteSize

ByteSize is a utility class that makes byte size representation in code easier by removing ambiguity of the value being represented. ByteSize is to bytes what System.TimeSpan is to time.
MIT License
558 stars 50 forks source link

Migrate to csproj #36

Closed Tyrrrz closed 5 years ago

Tyrrrz commented 5 years ago

Fixes #35

Tyrrrz commented 5 years ago

Tested with dotnet build and dotnet test, it works. The library targets .netstd2.0 and .net45 for simpler dependency graph compatibility. The tests are running .netcoreapp2.1.

Tyrrrz commented 5 years ago

I just realized you can't build with net45 target on Linux :( This can be resolved if we move to appveyor

omar commented 5 years ago

Thanks for this. I went ahead and fixed the Travis CI build by using Docker to build the project.

Tyrrrz commented 5 years ago

Nice. :) Thank you for the project.