Skip to content

Commit 976a895

Browse files
committed
fix legacy openssl test
1 parent 53bd4a6 commit 976a895

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

fixtures/source_apps/simple_legacy_openssl/Controllers/HomeController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Diagnostics;
22
using Microsoft.AspNetCore.Mvc;
3-
using source_6._0.Models;
3+
using source_8._0.Models;
44

5-
namespace source_6._0.Controllers;
5+
namespace source_8._0.Controllers;
66

77
public class HomeController : Controller
88
{

fixtures/source_apps/simple_legacy_openssl/Models/ErrorViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace source_6._0.Models;
1+
namespace source_8._0.Models;
22

33
public class ErrorViewModel
44
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: openssl list -providers && cd ${DEPS_DIR}/0/dotnet_publish && exec ./source_6.0
1+
web: openssl list -providers && cd ${DEPS_DIR}/0/dotnet_publish && exec ./source_8.0

fixtures/source_apps/simple_legacy_openssl/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}
99
},
1010
"profiles": {
11-
"source_6._0": {
11+
"source_8._0": {
1212
"commandName": "Project",
1313
"dotnetRunMessages": true,
1414
"launchBrowser": true,

fixtures/source_apps/simple_legacy_openssl/Views/Shared/_Layout.cshtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>@ViewData["Title"] - source_6._0</title>
6+
<title>@ViewData["Title"] - source_8._0</title>
77
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
88
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
9-
<link rel="stylesheet" href="~/source_6._0.styles.css" asp-append-version="true" />
9+
<link rel="stylesheet" href="~/source_8._0.styles.css" asp-append-version="true" />
1010
</head>
1111
<body>
1212
<header>
1313
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
1414
<div class="container-fluid">
15-
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">source_6._0</a>
15+
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">source_8._0</a>
1616
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
1717
aria-expanded="false" aria-label="Toggle navigation">
1818
<span class="navbar-toggler-icon"></span>
@@ -38,7 +38,7 @@
3838

3939
<footer class="border-top footer text-muted">
4040
<div class="container">
41-
&copy; 2022 - source_6._0 - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
41+
&copy; 2022 - source_8._0 - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
4242
</div>
4343
</footer>
4444
<script src="~/lib/jquery/dist/jquery.min.js"></script>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@using source_6._0
2-
@using source_6._0.Models
1+
@using source_8._0
2+
@using source_8._0.Models
33
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

fixtures/source_apps/simple_legacy_openssl/source_8.0.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<!-- This app was originally made for .NET6.0 -->
8-
<RootNamespace>source_6._0</RootNamespace>
7+
<RootNamespace>source_8._0</RootNamespace>
98
</PropertyGroup>
109

1110
</Project>

0 commit comments

Comments
 (0)