Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RicoSuter committed Oct 24, 2018
1 parent 5074b6b commit 7fc8f31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/MyToolkit.Build/VsProject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ private VsProject(string filePath, ProjectCollection projectCollection)
{
Project = projectCollection.LoadProject(filePath);
Solutions = new ObservableCollection<VsSolution>();
LoadNuSpecFile(filePath);

Name = Project.GetPropertyValue("AssemblyName");
Namespace = Project.GetPropertyValue("RootNamespace");
Expand All @@ -49,6 +48,8 @@ private VsProject(string filePath, ProjectCollection projectCollection)
IsSdkStyleProject = !string.IsNullOrEmpty(Project.Xml.Sdk);
OutputPath = Project.GetPropertyValue("OutputPath");
OutputType = Project.GetPropertyValue("OutputType");

LoadNuSpecFile(filePath);
}

/// <summary>Loads a project from a given file path, if the project has already been loaded before, the same reference is returned.</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/ProjectDependencyBrowser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
ResourceDictionaryLocation.SourceAssembly
)]

[assembly: AssemblyVersion("2.10.*")]
[assembly: AssemblyVersion("2.11.*")]

0 comments on commit 7fc8f31

Please sign in to comment.