Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2019-01-11 14:59:56 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2019-01-11 14:59:56 +0300
commitb41edbb828f7d6d5ae9b687aa1bab901d04e5965 (patch)
tree2d907c9a12e9cec923e5afd5a668b9c717270bf5 /main/src/addins/MonoDevelop.UnitTesting
parent5b495a6f72b819707a38f5d37a4b9159f578a0ca (diff)
Fix a couple build errors
Diffstat (limited to 'main/src/addins/MonoDevelop.UnitTesting')
-rw-r--r--main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestUnitTest.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestUnitTest.cs b/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestUnitTest.cs
index 24a5e9dcc9..8f80223bf4 100644
--- a/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestUnitTest.cs
+++ b/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestUnitTest.cs
@@ -38,7 +38,7 @@ namespace MonoDevelop.UnitTesting.VsTest
{
class VsTestUnitTest : UnitTest, IVsTestTestProvider
{
- public Project Project { get; private set; }
+ public MonoDevelop.Projects.Project Project { get; private set; }
TestCase test;
IVsTestTestRunner testRunner;
string name;
@@ -47,7 +47,7 @@ namespace MonoDevelop.UnitTesting.VsTest
protected VsTestUnitTest(string displayName) : base (displayName)
{ }
- public VsTestUnitTest (IVsTestTestRunner testRunner, TestCase test, Project project)
+ public VsTestUnitTest (IVsTestTestRunner testRunner, TestCase test, MonoDevelop.Projects.Project project)
: base (test.DisplayName)
{
this.Project = project;