Skip to content

Commit

Permalink
fix legacy openssl test
Browse files Browse the repository at this point in the history
  • Loading branch information
arjun024 committed Nov 19, 2024
1 parent 53bd4a6 commit 61761b3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using source_6._0.Models;
using source_8._0.Models;

namespace source_6._0.Controllers;
namespace source_8._0.Controllers;

public class HomeController : Controller
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace source_6._0.Models;
namespace source_8._0.Models;

public class ErrorViewModel
{
Expand Down
2 changes: 1 addition & 1 deletion fixtures/source_apps/simple_legacy_openssl/Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: openssl list -providers && cd ${DEPS_DIR}/0/dotnet_publish && exec ./source_6.0
web: openssl list -providers && cd ${DEPS_DIR}/0/dotnet_publish && exec ./source_8.0
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
},
"profiles": {
"source_6._0": {
"source_8._0": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - source_6._0</title>
<title>@ViewData["Title"] - source_8._0</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/source_6._0.styles.css" asp-append-version="true" />
<link rel="stylesheet" href="~/source_8._0.styles.css" asp-append-version="true" />
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div class="container-fluid">
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">source_6._0</a>
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">source_8._0</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand All @@ -38,7 +38,7 @@

<footer class="border-top footer text-muted">
<div class="container">
&copy; 2022 - source_6._0 - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
&copy; 2022 - source_8._0 - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
</div>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@using source_6._0
@using source_6._0.Models
@using source_8._0
@using source_8._0.Models
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
3 changes: 1 addition & 2 deletions fixtures/source_apps/simple_legacy_openssl/source_8.0.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- This app was originally made for .NET6.0 -->
<RootNamespace>source_6._0</RootNamespace>
<RootNamespace>source_8._0</RootNamespace>
</PropertyGroup>

</Project>

0 comments on commit 61761b3

Please sign in to comment.