Skip to content

Commit

Permalink
Update ProjectUpdaterTest.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Jul 29, 2023
1 parent be9a4ef commit b838701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/DotNet.Property.Tests/ProjectUpdaterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void UpdateProjectSampleLibrary()
{ "Copyright", "Copyright 2018 LoreSoft" }
};

var projectPath = Path.Combine(AppContext.BaseDirectory, "Samples", "SampleLibrary.xml");
var projectPath = Path.Combine(Environment.CurrentDirectory, "samples", "SampleLibrary.xml");

var updater = new ProjectUpdater();
updater.Properties = properties;
Expand All @@ -168,7 +168,7 @@ public void UpdateProjectNestedGroup()
{ "Description", "Nested Version" }
};

var projectPath = Path.Combine(AppContext.BaseDirectory, "Samples", "NestedGroup.xml");
var projectPath = Path.Combine(Environment.CurrentDirectory, "samples", "NestedGroup.xml");

var updater = new ProjectUpdater();
updater.Properties = properties;
Expand Down

0 comments on commit b838701

Please sign in to comment.