Closed prepare closed 8 years ago
You can (and should )also run test locally from visual studio :+1:
@vidstige Test on local machine I can't fix the error that occurs in xaml project. I'm not familiar with xaml :( but I think its because of namespace name of existing rendering elements have changed to NRasterizer.NRasterizer
do you have any idea it fix it?
The WPF is not being built by build server. I introduced those errors.... Click "Details" to see actual error message. One or more unit tests fail...
See the following link on how to run tests locally: http://nunit.org/index.php?p=vsTestAdapter&r=2.6.4
You can also run from command line like on travis. See .travis.yml file for more info. But I recommend installing the NUnit test adapter.
I merged my branch. I added x and y parameters to decide where to draw letter. Needed for multi-char support. Should be an easy merge. Sorry for inconvenience.
@vidstige , errors on test case because, the GlyphPathBuilder dose not use the contour, line-segment etc.
what should I do?
Alright, your too slow I pushed some fixes. I'll fix the merge problem now,
Alright, it all seems to work now. Compiles and unit tests green! ✅ I also rebased for cleaner history in #16. Enjoy! :-)
Sorry if I seem harsh in my messages. It's just my baby project and I want to keep it clean and slick. But I do appreciate all your contributions. Hope you understand! :-)
Thank you!
How to rebase
git checkout -b dotnet-2.0-rebased
# create new branch to avoid force pushinggit fetch upstream
# make sure you've got latest mastergit rebase upstream/master
# rebase, this will remove master merge commits.git push
# push to github