Skip to content

Commit

Permalink
Merge pull request dubeaud#216 from MultinetInteractive/master
Browse files Browse the repository at this point in the history
Added project title and code to Roadmap (Makes it easier to see what …
  • Loading branch information
dubeaud authored Feb 23, 2017
2 parents 941efde + 4a5277b commit 245cbb8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,5 @@ FakesAssemblies/

#MsBuildTasks
!.build/*.*
/src/.vs/config/applicationhost.config
/src/.vs/BugNET_WAP
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@
<EmbeddedResource Include="rtf_email_with_image_attachment.txt" />
<EmbeddedResource Include="rtf_email_with_message_attachment.txt" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
4 changes: 3 additions & 1 deletion src/BugNET.Tests/BugNET.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@
<Name>BugNET.Entities</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
7 changes: 6 additions & 1 deletion src/BugNET_WAP/Projects/Roadmap.aspx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,14 @@ protected void Page_Load(object sender, EventArgs e)
ltProject.Text = p.Name;
litProjectCode.Text = p.Code;

BindRoadmap();
Page.Title = string.Format("{0} ({1}) - {2}", p.Name, p.Code, GetLocalResourceObject("Roadmap").ToString());


BindRoadmap();
}



// The ExpandIssuePaths method is called to handle
// the SiteMapResolve event.
SiteMap.SiteMapResolve += ExpandProjectPaths;
Expand Down

0 comments on commit 245cbb8

Please sign in to comment.