Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30011.22
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApplicationTestReact", "WebApplicationTestReact\WebApplicationTestReact.csproj", "{3EE110F1-13B2-46A9-88C8-25C0FCD6C3A2}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetSyntaxTreeVisualizer", "DotNetSyntaxTreeVisualizer\DotNetSyntaxTreeVisualizer.csproj", "{3EE110F1-13B2-46A9-88C8-25C0FCD6C3A2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "webapplicationtestreact",
"name": "dotnetsyntaxtreevisualizer",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>WebApplicationTestReact</title>
<title>DotNetSyntaxTreeVisualizer</title>
</head>
<body>
<noscript>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "WebApplicationTestReact",
"name": "WebApplicationTestReact",
"short_name": "DotNetSyntaxTreeVisualizer",
"name": "DotNetSyntaxTreeVisualizer",
"icons": [
{
"src": "favicon.ico",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class NavMenu extends Component {
<header>
<Navbar className="navbar-expand-sm navbar-toggleable-sm ng-white border-bottom box-shadow mb-3" light>
<Container>
<NavbarBrand tag={Link} to="/">WebApplicationTestReact</NavbarBrand>
<NavbarBrand tag={Link} to="/">DotNetSyntaxTreeVisualizer</NavbarBrand>
<NavbarToggler onClick={this.toggleNavbar} className="mr-2" />
<Collapse className="d-sm-inline-flex flex-sm-row-reverse" isOpen={!this.state.collapsed} navbar>
<ul className="navbar-nav flex-grow">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.Extensions.Logging;

namespace WebApplicationTestReact.Controllers
namespace DotNetSyntaxTreeVisualizer.Controllers
{
[ApiController]
[Route("[controller]")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.Extensions.Logging;

namespace WebApplicationTestReact.Pages
namespace DotNetSyntaxTreeVisualizer.Pages
{
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public class ErrorModel : PageModel
Expand Down
3 changes: 3 additions & 0 deletions DotNetSyntaxTreeVisualizer/Pages/_ViewImports.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@using DotNetSyntaxTreeVisualizer
@namespace DotNetSyntaxTreeVisualizer.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;

namespace WebApplicationTestReact
namespace DotNetSyntaxTreeVisualizer
{
public class Program
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"WebApplicationTestReact": {
"DotNetSyntaxTreeVisualizer": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://localhost:5001;http://localhost:5000",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;

namespace WebApplicationTestReact
namespace DotNetSyntaxTreeVisualizer
{
public class Startup
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;

namespace WebApplicationTestReact
namespace DotNetSyntaxTreeVisualizer
{
[Serializable]
public class SyntaxTreeNode
Expand Down
3 changes: 0 additions & 3 deletions WebApplicationTestReact/Pages/_ViewImports.cshtml

This file was deleted.