Remove Visual Studio test config from Centroid.Tests project#46
Closed
Remove Visual Studio test config from Centroid.Tests project#46
Conversation
I'm guessing the project was created as a unit test project, so VS dumped all this stuff in there that we're not even using. The project types specified also kepy Xamarin Studio from being able to open the project.
Contributor
|
Looks fine to me. I guess Test Project is MSTest? |
Contributor
Author
|
Replaced by #49 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm guessing the project was created as a Test Project, so VS added a bunch of stuff to the csproj file for its personal use. Not only are we not using any of it, it also kept Xamarin Studio from being able to open the project, because it didn't recognize the project type.
I think these changes just revert it back to a simple class library type. However, all I did was go through the csproj file and remove everything that looked related to testing, so I may have missed something or removed too much. Anyone know more about this?
I was able to open the project in XS after these changes, and run the tests.