Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix legacy openssl test #1056

Merged
merged 1 commit into from
Nov 19, 2024
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
@@ -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
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>
Loading