Initial Commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
config.json
|
||||||
35
.vscode/launch.json
vendored
Normal file
35
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
// Use IntelliSense to find out which attributes exist for C# debugging
|
||||||
|
// Use hover for the description of the existing attributes
|
||||||
|
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
||||||
|
"name": ".NET Core Launch (web)",
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "launch",
|
||||||
|
"preLaunchTask": "build",
|
||||||
|
// If you have changed target frameworks, make sure to update the program path.
|
||||||
|
"program": "${workspaceFolder}/bin/Debug/net5.0/NightmareCoreWeb2.dll",
|
||||||
|
"args": [],
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"stopAtEntry": false,
|
||||||
|
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
|
||||||
|
"serverReadyAction": {
|
||||||
|
"action": "openExternally",
|
||||||
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
},
|
||||||
|
"sourceFileMap": {
|
||||||
|
"/Views": "${workspaceFolder}/Views"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": ".NET Core Attach",
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "attach"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
42
.vscode/tasks.json
vendored
Normal file
42
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "build",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"build",
|
||||||
|
"${workspaceFolder}/NightmareCoreWeb2.csproj",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "publish",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"publish",
|
||||||
|
"${workspaceFolder}/NightmareCoreWeb2.csproj",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "watch",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"watch",
|
||||||
|
"run",
|
||||||
|
"${workspaceFolder}/NightmareCoreWeb2.csproj",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
65
Account.cs
Normal file
65
Account.cs
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using MySql.Data.MySqlClient;
|
||||||
|
|
||||||
|
public class Account
|
||||||
|
{
|
||||||
|
public UInt32 Id { get; set; }
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Email { get; set; }
|
||||||
|
public string LastIP { get; set; }
|
||||||
|
public DateTime LastLogin { get; set; }
|
||||||
|
public List<Character> characters { get; set; }
|
||||||
|
|
||||||
|
public Account(string username, MySqlConnection conn)
|
||||||
|
{
|
||||||
|
conn.Open();
|
||||||
|
|
||||||
|
string sql = "select id,username,email,last_ip,last_login from account where username=@username";
|
||||||
|
MySqlCommand cmd = new MySqlCommand(sql, conn);
|
||||||
|
cmd.Parameters.AddWithValue("username", username);
|
||||||
|
MySqlDataReader rdr = cmd.ExecuteReader();
|
||||||
|
|
||||||
|
while (rdr.Read())
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
this.Id = rdr.GetUInt32(0);
|
||||||
|
this.Username = rdr.GetString(1);
|
||||||
|
this.Email = rdr.GetString(2);
|
||||||
|
this.LastIP = rdr.GetString(3);
|
||||||
|
this.LastLogin = rdr.GetDateTime(4);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rdr.Close();
|
||||||
|
sql = "select username,name,level,race,class from characters.characters join auth.account on characters.characters.account = auth.account.id where characters.characters.account=@id";
|
||||||
|
cmd = new MySqlCommand(sql, conn);
|
||||||
|
cmd.Parameters.AddWithValue("id", this.Id);
|
||||||
|
rdr = cmd.ExecuteReader();
|
||||||
|
this.characters = new List<Character>();
|
||||||
|
while (rdr.Read())
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Character c = new Character();
|
||||||
|
c.Username = rdr.GetString(0);
|
||||||
|
c.Name = rdr.GetString(1);
|
||||||
|
c.Level = rdr.GetByte(2);
|
||||||
|
c.Race = rdr.GetByte(3);
|
||||||
|
c.Class = rdr.GetByte(4);
|
||||||
|
this.characters.Add(c);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
rdr.Close();
|
||||||
|
conn.Close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
47
Character.cs
Normal file
47
Character.cs
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
public class Character
|
||||||
|
{
|
||||||
|
//select username,name,level,race,class from characters.characters join auth.account on characters.characters.account = auth.account.id where characters.characters.online = 1;
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public int Level { get; set; }
|
||||||
|
public int Race { get; set; }
|
||||||
|
public int Class { get; set; }
|
||||||
|
|
||||||
|
public string[] classes = {
|
||||||
|
"Null",
|
||||||
|
"Warrior",
|
||||||
|
"Paladin",
|
||||||
|
"Hunter",
|
||||||
|
"Rogue",
|
||||||
|
"Priest",
|
||||||
|
"Death Knight",
|
||||||
|
"Shaman",
|
||||||
|
"Mage",
|
||||||
|
"Warlock",
|
||||||
|
"Monk",
|
||||||
|
"Druid",
|
||||||
|
"Demon Hunter"
|
||||||
|
};
|
||||||
|
public string[] races = {
|
||||||
|
"Null",
|
||||||
|
"Human",
|
||||||
|
"Orc",
|
||||||
|
"Dwarf",
|
||||||
|
"Night Elf",
|
||||||
|
"Undead",
|
||||||
|
"Tauren",
|
||||||
|
"Gnome",
|
||||||
|
"Troll",
|
||||||
|
"Goblin",
|
||||||
|
"Blood Elf",
|
||||||
|
"Draenei"
|
||||||
|
};
|
||||||
|
public string GetClass()
|
||||||
|
{
|
||||||
|
return classes[this.Class];
|
||||||
|
}
|
||||||
|
public string GetRace()
|
||||||
|
{
|
||||||
|
return races[this.Race];
|
||||||
|
}
|
||||||
|
}
|
||||||
10
Config.cs
Normal file
10
Config.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
// MysqlConfig myDeserializedClass = JsonConvert.DeserializeObject<MysqlConfig>(myJsonResponse);
|
||||||
|
public class MysqlConfig
|
||||||
|
{
|
||||||
|
public string MysqlUsername { get; set; }
|
||||||
|
public string MysqlPassword { get; set; }
|
||||||
|
public string MysqlPort { get; set; }
|
||||||
|
public string MysqlServer { get; set; }
|
||||||
|
public string MysqlDatabase { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
13
NightmareCoreWeb2.csproj
Normal file
13
NightmareCoreWeb2.csproj
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="json.net" Version="1.0.33" />
|
||||||
|
<PackageReference Include="MySql.Data" Version="8.0.26" />
|
||||||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
26
Pages/Error.cshtml
Normal file
26
Pages/Error.cshtml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
@page
|
||||||
|
@model ErrorModel
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Error";
|
||||||
|
}
|
||||||
|
|
||||||
|
<h1 class="text-danger">Error.</h1>
|
||||||
|
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
||||||
|
|
||||||
|
@if (Model.ShowRequestId)
|
||||||
|
{
|
||||||
|
<p>
|
||||||
|
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
||||||
|
</p>
|
||||||
|
}
|
||||||
|
|
||||||
|
<h3>Development Mode</h3>
|
||||||
|
<p>
|
||||||
|
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
||||||
|
It can result in displaying sensitive information from exceptions to end users.
|
||||||
|
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
||||||
|
and restarting the app.
|
||||||
|
</p>
|
||||||
32
Pages/Error.cshtml.cs
Normal file
32
Pages/Error.cshtml.cs
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||||
|
[IgnoreAntiforgeryToken]
|
||||||
|
public class ErrorModel : PageModel
|
||||||
|
{
|
||||||
|
public string RequestId { get; set; }
|
||||||
|
|
||||||
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||||
|
|
||||||
|
private readonly ILogger<ErrorModel> _logger;
|
||||||
|
|
||||||
|
public ErrorModel(ILogger<ErrorModel> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnGet()
|
||||||
|
{
|
||||||
|
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
110
Pages/Index.cshtml
Normal file
110
Pages/Index.cshtml
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
@page
|
||||||
|
@model IndexModel
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "WotDN";
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<div class="bg-light border-right" id="sidebar-wrapper">
|
||||||
|
<div class="list-group list-group-flush">
|
||||||
|
<form action="?handler=RequestToken" class="list-group-item list-group-item-action bg-light" method="post" enctype="multipart/form-data">
|
||||||
|
Request an Acount Token:
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="RequestTokenEmail">Email: </label>
|
||||||
|
<input asp-for="RequestTokenEmail" type="text" name="RequestTokenEmail" id="RequestTokenEmail">
|
||||||
|
</div>
|
||||||
|
@Html.AntiForgeryToken()
|
||||||
|
<input class="button" type="submit" value="Request Token" name="authenticate">
|
||||||
|
</form>
|
||||||
|
<form action="?handler=ActivateAccount" class="list-group-item list-group-item-action bg-light" method="post" enctype="multipart/form-data">
|
||||||
|
Activate Account:
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="ActivateEmail">E-mail:</label>
|
||||||
|
<input asp-for="ActivateEmail" type="text" id="ActivateEmail" />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="ActivatePassword">Password:</label>
|
||||||
|
<input asp-for="ActivatePassword" type="password" id="ActivatePassword">
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="ActivateToken">Token:</label>
|
||||||
|
<input asp-for="ActivateToken" type="text" id="ActivateToken">
|
||||||
|
</div>
|
||||||
|
<input class="button" value="Activate Account" type="submit">
|
||||||
|
@Html.AntiForgeryToken()
|
||||||
|
</form>
|
||||||
|
<div class="list-group-item list-group-item-action bg-light">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>Realms</td>
|
||||||
|
<td>online: </td>
|
||||||
|
</tr>
|
||||||
|
@foreach(var k in Model.Realms) {
|
||||||
|
<tr>
|
||||||
|
<td>@k.Value</td>
|
||||||
|
<td>@k.Key</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="list-group-item list-group-item-action bg-light">
|
||||||
|
<a href="https://wow.gamepedia.com/Realmlist.wtf">Realmlist:</a><br>
|
||||||
|
<code>wotdn.nightmare.haus</code>
|
||||||
|
</div>
|
||||||
|
<div class="list-group-item list-group-item-action bg-light">
|
||||||
|
<a href="/vendor/WotDN.tgz">Download Windows Client Here</a><br>
|
||||||
|
<a href="/vendor/WotDN.app">Download macOS Client Here</a><br>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /#sidebar-wrapper -->
|
||||||
|
|
||||||
|
<!-- Page Content -->
|
||||||
|
<div id="page-content-wrapper">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container-fluid">
|
||||||
|
<h1 class="mt-4">@Model.CharacterListType</h1>
|
||||||
|
<table class="table table-striped table-dark" >
|
||||||
|
<thead class="thead-dark">
|
||||||
|
<tr>
|
||||||
|
<th scope="col">Player</th>
|
||||||
|
<th scope="col">Character</th>
|
||||||
|
<th scope="col">Level</th>
|
||||||
|
<th scope="col">Race</th>
|
||||||
|
<th scope="col">Class</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@foreach (var character in Model.OnlineCharacters) {
|
||||||
|
<tr>
|
||||||
|
<td>@character.Username</td>
|
||||||
|
<td>@character.Name</td>
|
||||||
|
<td>@character.Level</td>
|
||||||
|
<td>@character.GetRace()</td>
|
||||||
|
<td>@character.GetClass()</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /#page-content-wrapper -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- /#wrapper -->
|
||||||
|
|
||||||
|
<!-- Bootstrap core JavaScript -->
|
||||||
|
<script src="vendor/jquery/jquery.min.js"></script>
|
||||||
|
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
<!-- Menu Toggle Script -->
|
||||||
|
<script>
|
||||||
|
$("#menu-toggle").click(function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$("#wrapper").toggleClass("toggled");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
94
Pages/Index.cshtml.cs
Normal file
94
Pages/Index.cshtml.cs
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using MySql.Data.MySqlClient;
|
||||||
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
public class IndexModel : PageModel
|
||||||
|
{
|
||||||
|
string connStr = $"server={Program.MysqlServer};user={Program.MysqlUser};database={Program.MysqlDatabase};port={Program.MysqlPort};password={Program.MysqlPassword}";
|
||||||
|
public List<Character> OnlineCharacters = new List<Character>();
|
||||||
|
public Dictionary<string, string> Realms = new Dictionary<string, string>();
|
||||||
|
|
||||||
|
public string ActivateEmail {get; set;}
|
||||||
|
public string ActivatePassword {get; set;}
|
||||||
|
public string ActivateToken {get; set;}
|
||||||
|
public string RequestTokenEmail {get; set;}
|
||||||
|
public string CharacterListType {get; set;}
|
||||||
|
private MySqlConnection conn;
|
||||||
|
|
||||||
|
private readonly ILogger<IndexModel> _logger;
|
||||||
|
|
||||||
|
public IndexModel(ILogger<IndexModel> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
conn = new MySqlConnection(connStr);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
conn.Open();
|
||||||
|
|
||||||
|
string sql = "select username,name,level,race,class from characters.characters join auth.account on characters.characters.account = auth.account.id where characters.characters.online = 1";
|
||||||
|
MySqlCommand cmd = new MySqlCommand(sql, conn);
|
||||||
|
MySqlDataReader rdr = cmd.ExecuteReader();
|
||||||
|
CharacterListType = "Online Players";
|
||||||
|
while (rdr.Read())
|
||||||
|
{
|
||||||
|
Character c = new Character();
|
||||||
|
c.Username = rdr.GetString(0);
|
||||||
|
c.Name = rdr.GetString(1);
|
||||||
|
c.Level = rdr.GetByte(2);
|
||||||
|
c.Race = rdr.GetByte(3);
|
||||||
|
c.Class = rdr.GetByte(4);
|
||||||
|
OnlineCharacters.Add(c);
|
||||||
|
}
|
||||||
|
rdr.Close();
|
||||||
|
sql = "SELECT name,flag FROM realmlist";
|
||||||
|
cmd = new MySqlCommand(sql, conn);
|
||||||
|
rdr = cmd.ExecuteReader();
|
||||||
|
|
||||||
|
while (rdr.Read())
|
||||||
|
{
|
||||||
|
Realms.Add(rdr.GetString(0), rdr.GetString(1).Equals("2") ? "❌" : "✔️");
|
||||||
|
}
|
||||||
|
rdr.Close();
|
||||||
|
conn.Close();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnGet() {}
|
||||||
|
public void OnGetAccount(string name) {
|
||||||
|
Account a = new Account(name, conn);
|
||||||
|
CharacterListType = $"{name}'s Characters";
|
||||||
|
OnlineCharacters = a.characters;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnPostActivateAccount() {
|
||||||
|
ActivateEmail = Request.Form["ActivateEmail"];
|
||||||
|
ActivatePassword = Request.Form["ActivatePassword"];
|
||||||
|
ActivateToken = Request.Form["ActivateToken"];
|
||||||
|
Console.WriteLine($"PostActivateAccount e {ActivateEmail} p {ActivatePassword} t {ActivateToken}");
|
||||||
|
}
|
||||||
|
public void OnPostRequestToken() {
|
||||||
|
RequestTokenEmail = Request.Form["RequestTokenEmail"];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool RequestToken() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
public bool CreateAccount() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
public bool IsTokenValid(string username, string token) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
Pages/Privacy.cshtml
Normal file
8
Pages/Privacy.cshtml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
@page
|
||||||
|
@model PrivacyModel
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Privacy Policy";
|
||||||
|
}
|
||||||
|
<h1>@ViewData["Title"]</h1>
|
||||||
|
|
||||||
|
<p>Use this page to detail your site's privacy policy.</p>
|
||||||
24
Pages/Privacy.cshtml.cs
Normal file
24
Pages/Privacy.cshtml.cs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
public class PrivacyModel : PageModel
|
||||||
|
{
|
||||||
|
private readonly ILogger<PrivacyModel> _logger;
|
||||||
|
|
||||||
|
public PrivacyModel(ILogger<PrivacyModel> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnGet()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
48
Pages/Shared/_Layout.cshtml
Normal file
48
Pages/Shared/_Layout.cshtml
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>@ViewData["Title"] - NightmareCoreWeb2</title>
|
||||||
|
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||||
|
<link rel="stylesheet" href="~/css/site.css" />
|
||||||
|
</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">
|
||||||
|
<a class="navbar-brand" asp-area="" asp-page="/Index">Wrath of the DogNet</a>
|
||||||
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||||
|
aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
|
||||||
|
<ul class="navbar-nav flex-grow-1">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-page="/Index">Home</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-page="/Privacy">Privacy</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main role="main" class="d-flex">
|
||||||
|
@RenderBody()
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="border-top footer text-muted">
|
||||||
|
<div class="container">
|
||||||
|
© 2021 - NightmareCoreWeb2 - <a asp-area="" asp-page="/Privacy">Privacy</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||||
|
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||||
|
|
||||||
|
@await RenderSectionAsync("Scripts", required: false)
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
2
Pages/Shared/_ValidationScriptsPartial.cshtml
Normal file
2
Pages/Shared/_ValidationScriptsPartial.cshtml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
|
||||||
|
<script src="~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"></script>
|
||||||
3
Pages/_ViewImports.cshtml
Normal file
3
Pages/_ViewImports.cshtml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@using NightmareCoreWeb2
|
||||||
|
@namespace NightmareCoreWeb2.Pages
|
||||||
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
3
Pages/_ViewStart.cshtml
Normal file
3
Pages/_ViewStart.cshtml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@{
|
||||||
|
Layout = "_Layout";
|
||||||
|
}
|
||||||
45
Program.cs
Normal file
45
Program.cs
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Hosting;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.IO;
|
||||||
|
|
||||||
|
namespace NightmareCoreWeb2
|
||||||
|
{
|
||||||
|
public class Program
|
||||||
|
{
|
||||||
|
// "server=localhost;user=trinity;database=auth;port=3306;password=Baevannas335a";
|
||||||
|
public static string MysqlServer;
|
||||||
|
public static string MysqlUser;
|
||||||
|
public static string MysqlDatabase;
|
||||||
|
public static string MysqlPort;
|
||||||
|
public static string MysqlPassword;
|
||||||
|
public static void Main(string[] args)
|
||||||
|
{
|
||||||
|
using (StreamReader r = new StreamReader("config.json"))
|
||||||
|
{
|
||||||
|
string json = r.ReadToEnd();
|
||||||
|
MysqlConfig config = JsonConvert.DeserializeObject<MysqlConfig>(json);
|
||||||
|
Program.MysqlServer = config.MysqlServer;
|
||||||
|
Program.MysqlUser = config.MysqlUsername;
|
||||||
|
Program.MysqlDatabase = config.MysqlDatabase;
|
||||||
|
Program.MysqlPassword = config.MysqlPassword;
|
||||||
|
Program.MysqlPort = config.MysqlPort;
|
||||||
|
|
||||||
|
}
|
||||||
|
CreateHostBuilder(args).Build().Run();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||||||
|
Host.CreateDefaultBuilder(args)
|
||||||
|
.ConfigureWebHostDefaults(webBuilder =>
|
||||||
|
{
|
||||||
|
webBuilder.UseStartup<Startup>();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
28
Properties/launchSettings.json
Normal file
28
Properties/launchSettings.json
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"iisSettings": {
|
||||||
|
"windowsAuthentication": false,
|
||||||
|
"anonymousAuthentication": true,
|
||||||
|
"iisExpress": {
|
||||||
|
"applicationUrl": "http://localhost:19158",
|
||||||
|
"sslPort": 44362
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"profiles": {
|
||||||
|
"IIS Express": {
|
||||||
|
"commandName": "IISExpress",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"NightmareCoreWeb2": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": "true",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "https://localhost:5001;http://localhost:5000",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
56
Startup.cs
Normal file
56
Startup.cs
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.AspNetCore.Hosting;
|
||||||
|
using Microsoft.AspNetCore.HttpsPolicy;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.Extensions.Hosting;
|
||||||
|
|
||||||
|
namespace NightmareCoreWeb2
|
||||||
|
{
|
||||||
|
public class Startup
|
||||||
|
{
|
||||||
|
public Startup(IConfiguration configuration)
|
||||||
|
{
|
||||||
|
Configuration = configuration;
|
||||||
|
}
|
||||||
|
|
||||||
|
public IConfiguration Configuration { get; }
|
||||||
|
|
||||||
|
// This method gets called by the runtime. Use this method to add services to the container.
|
||||||
|
public void ConfigureServices(IServiceCollection services)
|
||||||
|
{
|
||||||
|
services.AddRazorPages();
|
||||||
|
}
|
||||||
|
|
||||||
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||||||
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||||||
|
{
|
||||||
|
if (env.IsDevelopment())
|
||||||
|
{
|
||||||
|
app.UseDeveloperExceptionPage();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
app.UseExceptionHandler("/Error");
|
||||||
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
||||||
|
app.UseHsts();
|
||||||
|
}
|
||||||
|
|
||||||
|
app.UseHttpsRedirection();
|
||||||
|
app.UseStaticFiles();
|
||||||
|
|
||||||
|
app.UseRouting();
|
||||||
|
|
||||||
|
app.UseAuthorization();
|
||||||
|
|
||||||
|
app.UseEndpoints(endpoints =>
|
||||||
|
{
|
||||||
|
endpoints.MapRazorPages();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
appsettings.Development.json
Normal file
10
appsettings.Development.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"DetailedErrors": true,
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
appsettings.json
Normal file
10
appsettings.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
BIN
bin/Debug/net5.0/BouncyCastle.Crypto.dll
Normal file
BIN
bin/Debug/net5.0/BouncyCastle.Crypto.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/Google.Protobuf.dll
Normal file
BIN
bin/Debug/net5.0/Google.Protobuf.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/Json.Net.dll
Normal file
BIN
bin/Debug/net5.0/Json.Net.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll
Normal file
BIN
bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/K4os.Compression.LZ4.dll
Normal file
BIN
bin/Debug/net5.0/K4os.Compression.LZ4.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/K4os.Hash.xxHash.dll
Normal file
BIN
bin/Debug/net5.0/K4os.Hash.xxHash.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/MySql.Data.dll
Normal file
BIN
bin/Debug/net5.0/MySql.Data.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/Newtonsoft.Json.dll
Normal file
BIN
bin/Debug/net5.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/NightmareCoreWeb2
Normal file
BIN
bin/Debug/net5.0/NightmareCoreWeb2
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/NightmareCoreWeb2.Views.dll
Normal file
BIN
bin/Debug/net5.0/NightmareCoreWeb2.Views.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/NightmareCoreWeb2.Views.pdb
Normal file
BIN
bin/Debug/net5.0/NightmareCoreWeb2.Views.pdb
Normal file
Binary file not shown.
3790
bin/Debug/net5.0/NightmareCoreWeb2.deps.json
Normal file
3790
bin/Debug/net5.0/NightmareCoreWeb2.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
bin/Debug/net5.0/NightmareCoreWeb2.dll
Normal file
BIN
bin/Debug/net5.0/NightmareCoreWeb2.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/NightmareCoreWeb2.pdb
Normal file
BIN
bin/Debug/net5.0/NightmareCoreWeb2.pdb
Normal file
Binary file not shown.
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"/home/rudi/.dotnet/store/|arch|/|tfm|",
|
||||||
|
"/home/rudi/.nuget/packages"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
13
bin/Debug/net5.0/NightmareCoreWeb2.runtimeconfig.json
Normal file
13
bin/Debug/net5.0/NightmareCoreWeb2.runtimeconfig.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net5.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "5.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll
Normal file
BIN
bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll
Normal file
BIN
bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/Ubiety.Dns.Core.dll
Normal file
BIN
bin/Debug/net5.0/Ubiety.Dns.Core.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net5.0/Zstandard.Net.dll
Normal file
BIN
bin/Debug/net5.0/Zstandard.Net.dll
Normal file
Binary file not shown.
10
bin/Debug/net5.0/appsettings.Development.json
Normal file
10
bin/Debug/net5.0/appsettings.Development.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"DetailedErrors": true,
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
10
bin/Debug/net5.0/appsettings.json
Normal file
10
bin/Debug/net5.0/appsettings.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft": "Warning",
|
||||||
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
||||||
BIN
bin/Debug/net5.0/ref/NightmareCoreWeb2.dll
Normal file
BIN
bin/Debug/net5.0/ref/NightmareCoreWeb2.dll
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||||
23
obj/Debug/net5.0/NightmareCoreWeb2.AssemblyInfo.cs
Normal file
23
obj/Debug/net5.0/NightmareCoreWeb2.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("NightmareCoreWeb2")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("NightmareCoreWeb2")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("NightmareCoreWeb2")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
4c1ed392c753df7a0e0f66bea118ba384dae7f0c
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net5.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.PublishSingleFile =
|
||||||
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
|
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
||||||
@ -0,0 +1 @@
|
|||||||
|
aaf0cd10ebfee9af6a7ec3f6b2f048b7b71b592b
|
||||||
17
obj/Debug/net5.0/NightmareCoreWeb2.RazorAssemblyInfo.cs
Normal file
17
obj/Debug/net5.0/NightmareCoreWeb2.RazorAssemblyInfo.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("NightmareCoreWeb2.Views")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
0e926439759983aa229d8da3a2e88ab2f7a81583
|
||||||
@ -0,0 +1 @@
|
|||||||
|
dc8c1289f39ca76c152f126ff231079ba2b5d9ca
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.CompiledRazorAssemblyApplicationPartFac" +
|
||||||
|
"tory, Microsoft.AspNetCore.Mvc.Razor")]
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("NightmareCoreWeb2")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("NightmareCoreWeb2")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("NightmareCoreWeb2.Views")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
obj/Debug/net5.0/NightmareCoreWeb2.Views.dll
Normal file
BIN
obj/Debug/net5.0/NightmareCoreWeb2.Views.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net5.0/NightmareCoreWeb2.Views.pdb
Normal file
BIN
obj/Debug/net5.0/NightmareCoreWeb2.Views.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net5.0/NightmareCoreWeb2.assets.cache
Normal file
BIN
obj/Debug/net5.0/NightmareCoreWeb2.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
43cf02a205b90eb621eaffd6882ddaf3fcc152be
|
||||||
@ -0,0 +1,54 @@
|
|||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/appsettings.Development.json
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/appsettings.json
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.deps.json
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.runtimeconfig.json
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.runtimeconfig.dev.json
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/ref/NightmareCoreWeb2.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.pdb
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.Views.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/NightmareCoreWeb2.Views.pdb
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.AssemblyInfoInputs.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.AssemblyInfo.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.csproj.CoreCompileInputs.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.RazorAssemblyInfo.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.RazorAssemblyInfo.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/staticwebassets/NightmareCoreWeb2.StaticWebAssets.Manifest.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/staticwebassets/NightmareCoreWeb2.StaticWebAssets.xml
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/scopedcss/bundle/NightmareCoreWeb2.styles.css
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.TagHelpers.input.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.TagHelpers.output.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.RazorCoreGenerate.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/Error.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/Index.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/Privacy.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/Shared/_Layout.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/Shared/_ValidationScriptsPartial.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/_ViewImports.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/Razor/Pages/_ViewStart.cshtml.g.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.RazorTargetAssemblyInfo.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.RazorTargetAssemblyInfo.cs
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.Views.pdb
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/ref/NightmareCoreWeb2.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.pdb
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.genruntimeconfig.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.csproj.CopyComplete
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/obj/Debug/net5.0/NightmareCoreWeb2.csprojAssemblyReference.cache
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/BouncyCastle.Crypto.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/Google.Protobuf.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/K4os.Compression.LZ4.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/K4os.Compression.LZ4.Streams.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/K4os.Hash.xxHash.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/MySql.Data.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/Ubiety.Dns.Core.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/Zstandard.Net.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/Json.Net.dll
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/config.json
|
||||||
|
/home/rudi/Projects/NightmareCoreWeb2/bin/Debug/net5.0/Newtonsoft.Json.dll
|
||||||
BIN
obj/Debug/net5.0/NightmareCoreWeb2.csprojAssemblyReference.cache
Normal file
BIN
obj/Debug/net5.0/NightmareCoreWeb2.csprojAssemblyReference.cache
Normal file
Binary file not shown.
BIN
obj/Debug/net5.0/NightmareCoreWeb2.dll
Normal file
BIN
obj/Debug/net5.0/NightmareCoreWeb2.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
af7af6b4685701a519a86619a145e429fbd9c049
|
||||||
BIN
obj/Debug/net5.0/NightmareCoreWeb2.pdb
Normal file
BIN
obj/Debug/net5.0/NightmareCoreWeb2.pdb
Normal file
Binary file not shown.
90
obj/Debug/net5.0/Razor/Pages/Error.cshtml.g.cs
Normal file
90
obj/Debug/net5.0/Razor/Pages/Error.cshtml.g.cs
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/Error.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1ffacd1099434ca44ac65d6cd23f2ec03eaa373f"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Pages_Error), @"mvc.1.0.razor-page", @"/Pages/Error.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"1ffacd1099434ca44ac65d6cd23f2ec03eaa373f", @"/Pages/Error.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages_Error : global::Microsoft.AspNetCore.Mvc.RazorPages.Page
|
||||||
|
{
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
#nullable restore
|
||||||
|
#line 3 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Error.cshtml"
|
||||||
|
|
||||||
|
ViewData["Title"] = "Error";
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("\r\n<h1 class=\"text-danger\">Error.</h1>\r\n<h2 class=\"text-danger\">An error occurred while processing your request.</h2>\r\n\r\n");
|
||||||
|
#nullable restore
|
||||||
|
#line 10 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Error.cshtml"
|
||||||
|
if (Model.ShowRequestId)
|
||||||
|
{
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(" <p>\r\n <strong>Request ID:</strong> <code>");
|
||||||
|
#nullable restore
|
||||||
|
#line 13 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Error.cshtml"
|
||||||
|
Write(Model.RequestId);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</code>\r\n </p>\r\n");
|
||||||
|
#nullable restore
|
||||||
|
#line 15 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Error.cshtml"
|
||||||
|
}
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@"
|
||||||
|
<h3>Development Mode</h3>
|
||||||
|
<p>
|
||||||
|
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
||||||
|
It can result in displaying sensitive information from exceptions to end users.
|
||||||
|
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
||||||
|
and restarting the app.
|
||||||
|
</p>
|
||||||
|
");
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<ErrorModel> Html { get; private set; }
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<ErrorModel> ViewData => (global::Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<ErrorModel>)PageContext?.ViewData;
|
||||||
|
public ErrorModel Model => ViewData.Model;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
426
obj/Debug/net5.0/Razor/Pages/Index.cshtml.g.cs
Normal file
426
obj/Debug/net5.0/Razor/Pages/Index.cshtml.g.cs
Normal file
@ -0,0 +1,426 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "870ba30ba8b4342b8265a4d8f86a797adf253dde"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Pages_Index), @"mvc.1.0.razor-page", @"/Pages/Index.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"870ba30ba8b4342b8265a4d8f86a797adf253dde", @"/Pages/Index.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages_Index : global::Microsoft.AspNetCore.Mvc.RazorPages.Page
|
||||||
|
{
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "text", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("name", "RequestTokenEmail", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("id", new global::Microsoft.AspNetCore.Html.HtmlString("RequestTokenEmail"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("action", new global::Microsoft.AspNetCore.Html.HtmlString("?handler=RequestToken"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("list-group-item list-group-item-action bg-light"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("enctype", new global::Microsoft.AspNetCore.Html.HtmlString("multipart/form-data"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("id", new global::Microsoft.AspNetCore.Html.HtmlString("ActivateEmail"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "password", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("id", new global::Microsoft.AspNetCore.Html.HtmlString("ActivatePassword"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("id", new global::Microsoft.AspNetCore.Html.HtmlString("ActivateToken"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_11 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("action", new global::Microsoft.AspNetCore.Html.HtmlString("?handler=ActivateAccount"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
#line hidden
|
||||||
|
#pragma warning disable 0649
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||||
|
#pragma warning restore 0649
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||||
|
#pragma warning disable 0169
|
||||||
|
private string __tagHelperStringValueBuffer;
|
||||||
|
#pragma warning restore 0169
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (__backed__tagHelperScopeManager == null)
|
||||||
|
{
|
||||||
|
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||||
|
}
|
||||||
|
return __backed__tagHelperScopeManager;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper;
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
#nullable restore
|
||||||
|
#line 3 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
|
||||||
|
ViewData["Title"] = "WotDN";
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@"
|
||||||
|
<!-- Sidebar -->
|
||||||
|
<div class=""bg-light border-right"" id=""sidebar-wrapper"">
|
||||||
|
<div class=""list-group list-group-flush"">
|
||||||
|
");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "870ba30ba8b4342b8265a4d8f86a797adf253dde8287", async() => {
|
||||||
|
WriteLiteral(@"
|
||||||
|
Request an Acount Token:
|
||||||
|
<div class=""form-group"">
|
||||||
|
<label for=""RequestTokenEmail"">Email: </label>
|
||||||
|
");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "870ba30ba8b4342b8265a4d8f86a797adf253dde8852", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper);
|
||||||
|
#nullable restore
|
||||||
|
#line 14 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.RequestTokenEmail);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.Name = (string)__tagHelperAttribute_1.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n </div> \r\n ");
|
||||||
|
#nullable restore
|
||||||
|
#line 16 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(Html.AntiForgeryToken());
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@"
|
||||||
|
<input class=""button"" type=""submit"" value=""Request Token"" name=""authenticate"">
|
||||||
|
");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_5.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral(" \r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "870ba30ba8b4342b8265a4d8f86a797adf253dde13149", async() => {
|
||||||
|
WriteLiteral(@"
|
||||||
|
Activate Account:
|
||||||
|
<div class=""form-group"">
|
||||||
|
<label for=""ActivateEmail"">E-mail:</label>
|
||||||
|
");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "870ba30ba8b4342b8265a4d8f86a797adf253dde13689", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper);
|
||||||
|
#nullable restore
|
||||||
|
#line 23 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ActivateEmail);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral(@"
|
||||||
|
</div>
|
||||||
|
<div class=""form-group"">
|
||||||
|
<label for=""ActivatePassword"">Password:</label>
|
||||||
|
");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "870ba30ba8b4342b8265a4d8f86a797adf253dde15779", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper);
|
||||||
|
#nullable restore
|
||||||
|
#line 27 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ActivatePassword);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_8.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_9);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label for=\"ActivateToken\">Token:</label>\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "870ba30ba8b4342b8265a4d8f86a797adf253dde17691", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper);
|
||||||
|
#nullable restore
|
||||||
|
#line 31 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ActivateToken);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_10);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral(@"
|
||||||
|
</div>
|
||||||
|
<input class=""button"" value=""Activate Account"" type=""submit"">
|
||||||
|
");
|
||||||
|
#nullable restore
|
||||||
|
#line 34 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(Html.AntiForgeryToken());
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(" \r\n ");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_11);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_5.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral(@"
|
||||||
|
<div class=""list-group-item list-group-item-action bg-light"">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>Realms</td> ");
|
||||||
|
WriteLiteral(@"
|
||||||
|
<td>online: </td>
|
||||||
|
</tr>
|
||||||
|
");
|
||||||
|
#nullable restore
|
||||||
|
#line 42 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
foreach(var k in Model.Realms) {
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@" <tr>
|
||||||
|
<td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 44 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(k.Value);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td> \r\n <td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 45 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(k.Key);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td> \r\n </tr> \r\n");
|
||||||
|
#nullable restore
|
||||||
|
#line 47 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
}
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@"
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class=""list-group-item list-group-item-action bg-light"">
|
||||||
|
<a href=""https://wow.gamepedia.com/Realmlist.wtf"">Realmlist:</a><br> ");
|
||||||
|
WriteLiteral(@"
|
||||||
|
<code>wotdn.nightmare.haus</code>
|
||||||
|
</div>
|
||||||
|
<div class=""list-group-item list-group-item-action bg-light"">
|
||||||
|
<a href=""/vendor/WotDN.tgz"">Download Windows Client Here</a><br>
|
||||||
|
<a href=""/vendor/WotDN.app"">Download macOS Client Here</a><br>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /#sidebar-wrapper -->
|
||||||
|
|
||||||
|
<!-- Page Content -->
|
||||||
|
<div id=""page-content-wrapper"">
|
||||||
|
|
||||||
|
|
||||||
|
<div class=""container-fluid"">
|
||||||
|
<h1 class=""mt-4"">");
|
||||||
|
#nullable restore
|
||||||
|
#line 69 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(Model.CharacterListType);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@"</h1>
|
||||||
|
<table class=""table table-striped table-dark"" >
|
||||||
|
<thead class=""thead-dark"">
|
||||||
|
<tr>
|
||||||
|
<th scope=""col"">Player</th>
|
||||||
|
<th scope=""col"">Character</th>
|
||||||
|
<th scope=""col"">Level</th>
|
||||||
|
<th scope=""col"">Race</th>
|
||||||
|
<th scope=""col"">Class</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
");
|
||||||
|
#nullable restore
|
||||||
|
#line 81 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
foreach (var character in Model.OnlineCharacters) {
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 83 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(character.Username);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 84 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(character.Name);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 85 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(character.Level);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 86 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(character.GetRace());
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
#nullable restore
|
||||||
|
#line 87 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
Write(character.GetClass());
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</td>\r\n </tr>\r\n");
|
||||||
|
#nullable restore
|
||||||
|
#line 89 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Index.cshtml"
|
||||||
|
}
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(@" </tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- /#page-content-wrapper -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- /#wrapper -->
|
||||||
|
|
||||||
|
<!-- Bootstrap core JavaScript -->
|
||||||
|
<script src=""vendor/jquery/jquery.min.js""></script>
|
||||||
|
<script src=""vendor/bootstrap/js/bootstrap.bundle.min.js""></script>
|
||||||
|
|
||||||
|
<!-- Menu Toggle Script -->
|
||||||
|
<script>
|
||||||
|
$(""#menu-toggle"").click(function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$(""#wrapper"").toggleClass(""toggled"");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
");
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<IndexModel> Html { get; private set; }
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<IndexModel> ViewData => (global::Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<IndexModel>)PageContext?.ViewData;
|
||||||
|
public IndexModel Model => ViewData.Model;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
62
obj/Debug/net5.0/Razor/Pages/Privacy.cshtml.g.cs
Normal file
62
obj/Debug/net5.0/Razor/Pages/Privacy.cshtml.g.cs
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/Privacy.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2debd1932f4f0425b789d4de538853856643a2f6"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Pages_Privacy), @"mvc.1.0.razor-page", @"/Pages/Privacy.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"2debd1932f4f0425b789d4de538853856643a2f6", @"/Pages/Privacy.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages_Privacy : global::Microsoft.AspNetCore.Mvc.RazorPages.Page
|
||||||
|
{
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
#nullable restore
|
||||||
|
#line 3 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Privacy.cshtml"
|
||||||
|
|
||||||
|
ViewData["Title"] = "Privacy Policy";
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("<h1>");
|
||||||
|
#nullable restore
|
||||||
|
#line 6 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Privacy.cshtml"
|
||||||
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("</h1>\r\n\r\n<p>Use this page to detail your site\'s privacy policy.</p>\r\n");
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<PrivacyModel> Html { get; private set; }
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<PrivacyModel> ViewData => (global::Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary<PrivacyModel>)PageContext?.ViewData;
|
||||||
|
public PrivacyModel Model => ViewData.Model;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
298
obj/Debug/net5.0/Razor/Pages/Shared/_Layout.cshtml.g.cs
Normal file
298
obj/Debug/net5.0/Razor/Pages/Shared/_Layout.cshtml.g.cs
Normal file
@ -0,0 +1,298 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/Shared/_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "b5c8e905793aabf9d2985c0bf1bce752897270fa"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Shared.Pages_Shared__Layout), @"mvc.1.0.view", @"/Pages/Shared/_Layout.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages.Shared
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"b5c8e905793aabf9d2985c0bf1bce752897270fa", @"/Pages/Shared/_Layout.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
|
{
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("rel", new global::Microsoft.AspNetCore.Html.HtmlString("stylesheet"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("href", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/bootstrap/dist/css/bootstrap.min.css"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("href", new global::Microsoft.AspNetCore.Html.HtmlString("~/css/site.css"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("navbar-brand"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-page", "/Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("nav-link text-dark"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-page", "/Privacy", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery/dist/jquery.min.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "~/js/site.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
#line hidden
|
||||||
|
#pragma warning disable 0649
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||||
|
#pragma warning restore 0649
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||||
|
#pragma warning disable 0169
|
||||||
|
private string __tagHelperStringValueBuffer;
|
||||||
|
#pragma warning restore 0169
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (__backed__tagHelperScopeManager == null)
|
||||||
|
{
|
||||||
|
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||||
|
}
|
||||||
|
return __backed__tagHelperScopeManager;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper;
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
WriteLiteral("<!DOCTYPE html>\r\n<html lang=\"en\">\r\n");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa7192", async() => {
|
||||||
|
WriteLiteral("\r\n <meta charset=\"utf-8\" />\r\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n <title>");
|
||||||
|
#nullable restore
|
||||||
|
#line 6 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Shared/_Layout.cshtml"
|
||||||
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral(" - NightmareCoreWeb2</title>\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b5c8e905793aabf9d2985c0bf1bce752897270fa7819", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b5c8e905793aabf9d2985c0bf1bce752897270fa8982", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.HeadTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_HeadTagHelper);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa10837", async() => {
|
||||||
|
WriteLiteral("\r\n <header>\r\n <nav class=\"navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3\">\r\n <div class=\"container\">\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa11291", async() => {
|
||||||
|
WriteLiteral("Wrath of the DogNet");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Page = (string)__tagHelperAttribute_5.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral(@"
|
||||||
|
<button class=""navbar-toggler"" type=""button"" data-toggle=""collapse"" data-target="".navbar-collapse"" aria-controls=""navbarSupportedContent""
|
||||||
|
aria-expanded=""false"" aria-label=""Toggle navigation"">
|
||||||
|
<span class=""navbar-toggler-icon""></span>
|
||||||
|
</button>
|
||||||
|
<div class=""navbar-collapse collapse d-sm-inline-flex justify-content-between"">
|
||||||
|
<ul class=""navbar-nav flex-grow-1"">
|
||||||
|
<li class=""nav-item"">
|
||||||
|
");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa13372", async() => {
|
||||||
|
WriteLiteral("Home");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Page = (string)__tagHelperAttribute_5.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n </li>\r\n <li class=\"nav-item\">\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa14976", async() => {
|
||||||
|
WriteLiteral("Privacy");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Page = (string)__tagHelperAttribute_7.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n </nav>\r\n </header>\r\n <main role=\"main\" class=\"d-flex\">\r\n ");
|
||||||
|
#nullable restore
|
||||||
|
#line 33 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Shared/_Layout.cshtml"
|
||||||
|
Write(RenderBody());
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("\r\n </main>\r\n\r\n <footer class=\"border-top footer text-muted\">\r\n <div class=\"container\">\r\n © 2021 - NightmareCoreWeb2 - ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa17043", async() => {
|
||||||
|
WriteLiteral("Privacy");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Page = (string)__tagHelperAttribute_7.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n </div>\r\n </footer>\r\n\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa18495", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_8);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa19581", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_9);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n ");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b5c8e905793aabf9d2985c0bf1bce752897270fa20667", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_10.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
||||||
|
#nullable restore
|
||||||
|
#line 44 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Shared/_Layout.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-append-version", __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n\r\n ");
|
||||||
|
#nullable restore
|
||||||
|
#line 46 "/home/rudi/Projects/NightmareCoreWeb2/Pages/Shared/_Layout.cshtml"
|
||||||
|
Write(await RenderSectionAsync("Scripts", required: false));
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.BodyTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_BodyTagHelper);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n</html>\r\n");
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
@ -0,0 +1,94 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/Shared/_ValidationScriptsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "30279cff2f43496f15dedc2efbbd2c0b0d6727e3"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Shared.Pages_Shared__ValidationScriptsPartial), @"mvc.1.0.view", @"/Pages/Shared/_ValidationScriptsPartial.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages.Shared
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"30279cff2f43496f15dedc2efbbd2c0b0d6727e3", @"/Pages/Shared/_ValidationScriptsPartial.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages_Shared__ValidationScriptsPartial : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
|
{
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery-validation/dist/jquery.validate.min.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
#line hidden
|
||||||
|
#pragma warning disable 0649
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||||
|
#pragma warning restore 0649
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||||
|
#pragma warning disable 0169
|
||||||
|
private string __tagHelperStringValueBuffer;
|
||||||
|
#pragma warning restore 0169
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (__backed__tagHelperScopeManager == null)
|
||||||
|
{
|
||||||
|
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||||
|
}
|
||||||
|
return __backed__tagHelperScopeManager;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper;
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "30279cff2f43496f15dedc2efbbd2c0b0d6727e33737", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "30279cff2f43496f15dedc2efbbd2c0b0d6727e34762", async() => {
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
42
obj/Debug/net5.0/Razor/Pages/_ViewImports.cshtml.g.cs
Normal file
42
obj/Debug/net5.0/Razor/Pages/_ViewImports.cshtml.g.cs
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ca25aedb48b313dfb02b81cbab94719fc48c59d7"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Pages__ViewImports), @"mvc.1.0.view", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages__ViewImports : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
|
{
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
51
obj/Debug/net5.0/Razor/Pages/_ViewStart.cshtml.g.cs
Normal file
51
obj/Debug/net5.0/Razor/Pages/_ViewStart.cshtml.g.cs
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
#pragma checksum "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5c05831fc344a09d2edcd9b7ea64465dcbd15998"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(NightmareCoreWeb2.Pages.Pages__ViewStart), @"mvc.1.0.view", @"/Pages/_ViewStart.cshtml")]
|
||||||
|
namespace NightmareCoreWeb2.Pages
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewImports.cshtml"
|
||||||
|
using NightmareCoreWeb2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"5c05831fc344a09d2edcd9b7ea64465dcbd15998", @"/Pages/_ViewStart.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ca25aedb48b313dfb02b81cbab94719fc48c59d7", @"/Pages/_ViewImports.cshtml")]
|
||||||
|
public class Pages__ViewStart : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
|
{
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
#nullable restore
|
||||||
|
#line 1 "/home/rudi/Projects/NightmareCoreWeb2/Pages/_ViewStart.cshtml"
|
||||||
|
|
||||||
|
Layout = "_Layout";
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#nullable disable
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
||||||
BIN
obj/Debug/net5.0/apphost
Normal file
BIN
obj/Debug/net5.0/apphost
Normal file
Binary file not shown.
15658
obj/Debug/net5.0/project.razor.json
Normal file
15658
obj/Debug/net5.0/project.razor.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
obj/Debug/net5.0/ref/NightmareCoreWeb2.dll
Normal file
BIN
obj/Debug/net5.0/ref/NightmareCoreWeb2.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
<StaticWebAssets Version="1.0" />
|
||||||
78
obj/NightmareCoreWeb2.csproj.nuget.dgspec.json
Normal file
78
obj/NightmareCoreWeb2.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj",
|
||||||
|
"projectName": "NightmareCoreWeb2",
|
||||||
|
"projectPath": "/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj",
|
||||||
|
"packagesPath": "/home/rudi/.nuget/packages/",
|
||||||
|
"outputPath": "/home/rudi/Projects/NightmareCoreWeb2/obj/",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"/home/rudi/.nuget/NuGet/NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net5.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"/home/rudi/.nuget/NuGet/Newtonsoft": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net5.0": {
|
||||||
|
"targetAlias": "net5.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net5.0": {
|
||||||
|
"targetAlias": "net5.0",
|
||||||
|
"dependencies": {
|
||||||
|
"MySql.Data": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[8.0.26, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.1, )"
|
||||||
|
},
|
||||||
|
"json.net": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[1.0.33, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.205/RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
18
obj/NightmareCoreWeb2.csproj.nuget.g.props
Normal file
18
obj/NightmareCoreWeb2.csproj.nuget.g.props
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/rudi/.nuget/packages/</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/rudi/.nuget/packages/</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="/home/rudi/.nuget/packages/" />
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
6
obj/NightmareCoreWeb2.csproj.nuget.g.targets
Normal file
6
obj/NightmareCoreWeb2.csproj.nuget.g.targets
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
973
obj/project.assets.json
Normal file
973
obj/project.assets.json
Normal file
@ -0,0 +1,973 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net5.0": {
|
||||||
|
"BouncyCastle.NetCore/1.8.5": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Google.Protobuf/3.14.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Memory": "4.5.3",
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Google.Protobuf.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Google.Protobuf.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Json.Net/1.0.33": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Json.Net.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Json.Net.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4/1.1.11": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Memory": "4.5.3"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4.Streams/1.1.11": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"K4os.Compression.LZ4": "1.1.11",
|
||||||
|
"K4os.Hash.xxHash": "1.0.6"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"K4os.Hash.xxHash/1.0.6": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Memory": "4.5.3"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard1.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard1.0/_._": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Win32.SystemEvents/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "3.1.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"MySql.Data/8.0.26": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"BouncyCastle.NetCore": "1.8.5",
|
||||||
|
"Google.Protobuf": "3.14.0",
|
||||||
|
"K4os.Compression.LZ4": "1.1.11",
|
||||||
|
"K4os.Compression.LZ4.Streams": "1.1.11",
|
||||||
|
"K4os.Hash.xxHash": "1.0.6",
|
||||||
|
"System.Buffers": "4.5.1",
|
||||||
|
"System.Configuration.ConfigurationManager": "4.4.1",
|
||||||
|
"System.Security.Permissions": "4.7.0",
|
||||||
|
"System.Text.Encoding.CodePages": "4.4.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net5.0/MySql.Data.dll": {},
|
||||||
|
"lib/net5.0/Ubiety.Dns.Core.dll": {},
|
||||||
|
"lib/net5.0/Zstandard.Net.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net5.0/MySql.Data.dll": {},
|
||||||
|
"lib/net5.0/Ubiety.Dns.Core.dll": {},
|
||||||
|
"lib/net5.0/Zstandard.Net.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json/13.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Buffers/4.5.1": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp2.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.0/_._": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Configuration.ConfigurationManager/4.4.1": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Security.Cryptography.ProtectedData": "4.4.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Drawing.Common/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "3.1.0",
|
||||||
|
"Microsoft.Win32.SystemEvents": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp3.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Drawing.Common.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "unix"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Memory/4.5.3": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp2.1/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.1/_._": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "3.1.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/System.Security.AccessControl.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Cryptography.ProtectedData/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Permissions/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Security.AccessControl": "4.7.0",
|
||||||
|
"System.Windows.Extensions": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp3.0/System.Security.Permissions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.0/System.Security.Permissions.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "unix"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Text.Encoding.CodePages/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "2.0.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Windows.Extensions/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Drawing.Common": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"BouncyCastle.NetCore/1.8.5": {
|
||||||
|
"sha512": "6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "bouncycastle.netcore/1.8.5",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"bouncycastle.netcore.1.8.5.nupkg.sha512",
|
||||||
|
"bouncycastle.netcore.nuspec",
|
||||||
|
"lib/Mono/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/Mono/BouncyCastle.Crypto.xml",
|
||||||
|
"lib/MonoAndroid/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/MonoAndroid/BouncyCastle.Crypto.xml",
|
||||||
|
"lib/MonoMac/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/MonoMac/BouncyCastle.Crypto.xml",
|
||||||
|
"lib/MonoTouch/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/MonoTouch/BouncyCastle.Crypto.xml",
|
||||||
|
"lib/net20/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/net20/BouncyCastle.Crypto.xml",
|
||||||
|
"lib/netstandard2.0/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/netstandard2.0/BouncyCastle.Crypto.xml",
|
||||||
|
"lib/xamarinios/BouncyCastle.Crypto.dll",
|
||||||
|
"lib/xamarinios/BouncyCastle.Crypto.xml"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Google.Protobuf/3.14.0": {
|
||||||
|
"sha512": "9AkodyGNmLI+wJJPbwpWLmh4BMHoXDQ9+8qvDPhQQi/BNsleqKMBn3OlyLwC6CALwan2kc5+Cenb8fJSITX3nQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "google.protobuf/3.14.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"google.protobuf.3.14.0.nupkg.sha512",
|
||||||
|
"google.protobuf.nuspec",
|
||||||
|
"lib/net45/Google.Protobuf.dll",
|
||||||
|
"lib/net45/Google.Protobuf.pdb",
|
||||||
|
"lib/net45/Google.Protobuf.xml",
|
||||||
|
"lib/netstandard1.1/Google.Protobuf.dll",
|
||||||
|
"lib/netstandard1.1/Google.Protobuf.pdb",
|
||||||
|
"lib/netstandard1.1/Google.Protobuf.xml",
|
||||||
|
"lib/netstandard2.0/Google.Protobuf.dll",
|
||||||
|
"lib/netstandard2.0/Google.Protobuf.pdb",
|
||||||
|
"lib/netstandard2.0/Google.Protobuf.xml"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Json.Net/1.0.33": {
|
||||||
|
"sha512": "5tE+db6BqhRAvITIVBeRsQorLGshPExfm4FmMRvWWAfs4RxeTbFFj2PIEybwmMW0qR30HKkXDYhq0YkDK2Jtxw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "json.net/1.0.33",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"json.net.1.0.33.nupkg.sha512",
|
||||||
|
"json.net.nuspec",
|
||||||
|
"lib/netstandard2.0/Json.Net.dll"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4/1.1.11": {
|
||||||
|
"sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "k4os.compression.lz4/1.1.11",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"k4os.compression.lz4.1.1.11.nupkg.sha512",
|
||||||
|
"k4os.compression.lz4.nuspec",
|
||||||
|
"lib/net45/K4os.Compression.LZ4.dll",
|
||||||
|
"lib/net45/K4os.Compression.LZ4.xml",
|
||||||
|
"lib/net46/K4os.Compression.LZ4.dll",
|
||||||
|
"lib/net46/K4os.Compression.LZ4.xml",
|
||||||
|
"lib/netstandard1.6/K4os.Compression.LZ4.dll",
|
||||||
|
"lib/netstandard1.6/K4os.Compression.LZ4.xml",
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.dll",
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.xml"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4.Streams/1.1.11": {
|
||||||
|
"sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "k4os.compression.lz4.streams/1.1.11",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
|
||||||
|
"k4os.compression.lz4.streams.nuspec",
|
||||||
|
"lib/net45/K4os.Compression.LZ4.Streams.dll",
|
||||||
|
"lib/net45/K4os.Compression.LZ4.Streams.xml",
|
||||||
|
"lib/net46/K4os.Compression.LZ4.Streams.dll",
|
||||||
|
"lib/net46/K4os.Compression.LZ4.Streams.xml",
|
||||||
|
"lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
|
||||||
|
"lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
|
||||||
|
"lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"K4os.Hash.xxHash/1.0.6": {
|
||||||
|
"sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "k4os.hash.xxhash/1.0.6",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"k4os.hash.xxhash.1.0.6.nupkg.sha512",
|
||||||
|
"k4os.hash.xxhash.nuspec",
|
||||||
|
"lib/net45/K4os.Hash.xxHash.dll",
|
||||||
|
"lib/net45/K4os.Hash.xxHash.xml",
|
||||||
|
"lib/net46/K4os.Hash.xxHash.dll",
|
||||||
|
"lib/net46/K4os.Hash.xxHash.xml",
|
||||||
|
"lib/netstandard1.6/K4os.Hash.xxHash.dll",
|
||||||
|
"lib/netstandard1.6/K4os.Hash.xxHash.xml",
|
||||||
|
"lib/netstandard2.0/K4os.Hash.xxHash.dll",
|
||||||
|
"lib/netstandard2.0/K4os.Hash.xxHash.xml"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||||
|
"sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.netcore.platforms/3.1.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/netstandard1.0/_._",
|
||||||
|
"microsoft.netcore.platforms.3.1.0.nupkg.sha512",
|
||||||
|
"microsoft.netcore.platforms.nuspec",
|
||||||
|
"runtime.json",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Win32.SystemEvents/4.7.0": {
|
||||||
|
"sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.win32.systemevents/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"lib/net461/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"microsoft.win32.systemevents.4.7.0.nupkg.sha512",
|
||||||
|
"microsoft.win32.systemevents.nuspec",
|
||||||
|
"ref/net461/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"ref/net461/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"ref/net472/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"ref/net472/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"MySql.Data/8.0.26": {
|
||||||
|
"sha512": "iOxE24dI01JZlZ1EObkz9WwYMzX+0RnBf5a11OkPDCOGv2Yo0tTWmwAJfVXkuuSD47XngOir7l7+xZZ56lZyAA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "mysql.data/8.0.26",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"lib/net452/MySql.Data.dll",
|
||||||
|
"lib/net452/MySql.Data.xml",
|
||||||
|
"lib/net452/Ubiety.Dns.Core.dll",
|
||||||
|
"lib/net452/Zstandard.Net.dll",
|
||||||
|
"lib/net48/MySql.Data.dll",
|
||||||
|
"lib/net48/MySql.Data.xml",
|
||||||
|
"lib/net48/Ubiety.Dns.Core.dll",
|
||||||
|
"lib/net48/Zstandard.Net.dll",
|
||||||
|
"lib/net5.0/MySql.Data.dll",
|
||||||
|
"lib/net5.0/MySql.Data.xml",
|
||||||
|
"lib/net5.0/Ubiety.Dns.Core.dll",
|
||||||
|
"lib/net5.0/Zstandard.Net.dll",
|
||||||
|
"lib/netstandard2.0/MySql.Data.dll",
|
||||||
|
"lib/netstandard2.0/MySql.Data.xml",
|
||||||
|
"lib/netstandard2.0/Ubiety.Dns.Core.dll",
|
||||||
|
"lib/netstandard2.0/Zstandard.Net.dll",
|
||||||
|
"lib/netstandard2.1/MySql.Data.dll",
|
||||||
|
"lib/netstandard2.1/MySql.Data.xml",
|
||||||
|
"lib/netstandard2.1/Ubiety.Dns.Core.dll",
|
||||||
|
"lib/netstandard2.1/Zstandard.Net.dll",
|
||||||
|
"mysql.data.8.0.26.nupkg.sha512",
|
||||||
|
"mysql.data.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json/13.0.1": {
|
||||||
|
"sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "newtonsoft.json/13.0.1",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.md",
|
||||||
|
"lib/net20/Newtonsoft.Json.dll",
|
||||||
|
"lib/net20/Newtonsoft.Json.xml",
|
||||||
|
"lib/net35/Newtonsoft.Json.dll",
|
||||||
|
"lib/net35/Newtonsoft.Json.xml",
|
||||||
|
"lib/net40/Newtonsoft.Json.dll",
|
||||||
|
"lib/net40/Newtonsoft.Json.xml",
|
||||||
|
"lib/net45/Newtonsoft.Json.dll",
|
||||||
|
"lib/net45/Newtonsoft.Json.xml",
|
||||||
|
"lib/netstandard1.0/Newtonsoft.Json.dll",
|
||||||
|
"lib/netstandard1.0/Newtonsoft.Json.xml",
|
||||||
|
"lib/netstandard1.3/Newtonsoft.Json.dll",
|
||||||
|
"lib/netstandard1.3/Newtonsoft.Json.xml",
|
||||||
|
"lib/netstandard2.0/Newtonsoft.Json.dll",
|
||||||
|
"lib/netstandard2.0/Newtonsoft.Json.xml",
|
||||||
|
"newtonsoft.json.13.0.1.nupkg.sha512",
|
||||||
|
"newtonsoft.json.nuspec",
|
||||||
|
"packageIcon.png"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Buffers/4.5.1": {
|
||||||
|
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.buffers/4.5.1",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/System.Buffers.dll",
|
||||||
|
"lib/net461/System.Buffers.xml",
|
||||||
|
"lib/netcoreapp2.0/_._",
|
||||||
|
"lib/netstandard1.1/System.Buffers.dll",
|
||||||
|
"lib/netstandard1.1/System.Buffers.xml",
|
||||||
|
"lib/netstandard2.0/System.Buffers.dll",
|
||||||
|
"lib/netstandard2.0/System.Buffers.xml",
|
||||||
|
"lib/uap10.0.16299/_._",
|
||||||
|
"ref/net45/System.Buffers.dll",
|
||||||
|
"ref/net45/System.Buffers.xml",
|
||||||
|
"ref/netcoreapp2.0/_._",
|
||||||
|
"ref/netstandard1.1/System.Buffers.dll",
|
||||||
|
"ref/netstandard1.1/System.Buffers.xml",
|
||||||
|
"ref/netstandard2.0/System.Buffers.dll",
|
||||||
|
"ref/netstandard2.0/System.Buffers.xml",
|
||||||
|
"ref/uap10.0.16299/_._",
|
||||||
|
"system.buffers.4.5.1.nupkg.sha512",
|
||||||
|
"system.buffers.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Configuration.ConfigurationManager/4.4.1": {
|
||||||
|
"sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.configuration.configurationmanager/4.4.1",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/System.Configuration.ConfigurationManager.dll",
|
||||||
|
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
|
||||||
|
"ref/net461/System.Configuration.ConfigurationManager.dll",
|
||||||
|
"ref/net461/System.Configuration.ConfigurationManager.xml",
|
||||||
|
"ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
|
||||||
|
"ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
|
||||||
|
"system.configuration.configurationmanager.4.4.1.nupkg.sha512",
|
||||||
|
"system.configuration.configurationmanager.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Drawing.Common/4.7.0": {
|
||||||
|
"sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.drawing.common/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/MonoAndroid10/_._",
|
||||||
|
"lib/MonoTouch10/_._",
|
||||||
|
"lib/net461/System.Drawing.Common.dll",
|
||||||
|
"lib/netstandard2.0/System.Drawing.Common.dll",
|
||||||
|
"lib/xamarinios10/_._",
|
||||||
|
"lib/xamarinmac20/_._",
|
||||||
|
"lib/xamarintvos10/_._",
|
||||||
|
"lib/xamarinwatchos10/_._",
|
||||||
|
"ref/MonoAndroid10/_._",
|
||||||
|
"ref/MonoTouch10/_._",
|
||||||
|
"ref/net461/System.Drawing.Common.dll",
|
||||||
|
"ref/netcoreapp3.0/System.Drawing.Common.dll",
|
||||||
|
"ref/netcoreapp3.0/System.Drawing.Common.xml",
|
||||||
|
"ref/netstandard2.0/System.Drawing.Common.dll",
|
||||||
|
"ref/xamarinios10/_._",
|
||||||
|
"ref/xamarinmac20/_._",
|
||||||
|
"ref/xamarintvos10/_._",
|
||||||
|
"ref/xamarinwatchos10/_._",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
|
||||||
|
"system.drawing.common.4.7.0.nupkg.sha512",
|
||||||
|
"system.drawing.common.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Memory/4.5.3": {
|
||||||
|
"sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.memory/4.5.3",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/netcoreapp2.1/_._",
|
||||||
|
"lib/netstandard1.1/System.Memory.dll",
|
||||||
|
"lib/netstandard1.1/System.Memory.xml",
|
||||||
|
"lib/netstandard2.0/System.Memory.dll",
|
||||||
|
"lib/netstandard2.0/System.Memory.xml",
|
||||||
|
"ref/netcoreapp2.1/_._",
|
||||||
|
"system.memory.4.5.3.nupkg.sha512",
|
||||||
|
"system.memory.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/4.5.2": {
|
||||||
|
"sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/4.5.2",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
|
||||||
|
"system.runtime.compilerservices.unsafe.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.security.accesscontrol/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net46/System.Security.AccessControl.dll",
|
||||||
|
"lib/net461/System.Security.AccessControl.dll",
|
||||||
|
"lib/net461/System.Security.AccessControl.xml",
|
||||||
|
"lib/netstandard1.3/System.Security.AccessControl.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.xml",
|
||||||
|
"lib/uap10.0.16299/_._",
|
||||||
|
"ref/net46/System.Security.AccessControl.dll",
|
||||||
|
"ref/net461/System.Security.AccessControl.dll",
|
||||||
|
"ref/net461/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/System.Security.AccessControl.dll",
|
||||||
|
"ref/netstandard1.3/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/de/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/es/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/it/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard2.0/System.Security.AccessControl.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.AccessControl.xml",
|
||||||
|
"ref/uap10.0.16299/_._",
|
||||||
|
"runtimes/win/lib/net46/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.AccessControl.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/uap10.0.16299/_._",
|
||||||
|
"system.security.accesscontrol.4.7.0.nupkg.sha512",
|
||||||
|
"system.security.accesscontrol.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Security.Cryptography.ProtectedData/4.4.0": {
|
||||||
|
"sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.security.cryptography.protecteddata/4.4.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/MonoAndroid10/_._",
|
||||||
|
"lib/MonoTouch10/_._",
|
||||||
|
"lib/net46/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"lib/net461/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"lib/xamarinios10/_._",
|
||||||
|
"lib/xamarinmac20/_._",
|
||||||
|
"lib/xamarintvos10/_._",
|
||||||
|
"lib/xamarinwatchos10/_._",
|
||||||
|
"ref/MonoAndroid10/_._",
|
||||||
|
"ref/MonoTouch10/_._",
|
||||||
|
"ref/net46/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"ref/net461/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"ref/net461/System.Security.Cryptography.ProtectedData.xml",
|
||||||
|
"ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
|
||||||
|
"ref/xamarinios10/_._",
|
||||||
|
"ref/xamarinmac20/_._",
|
||||||
|
"ref/xamarintvos10/_._",
|
||||||
|
"ref/xamarinwatchos10/_._",
|
||||||
|
"runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
|
||||||
|
"system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
|
||||||
|
"system.security.cryptography.protecteddata.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Security.Permissions/4.7.0": {
|
||||||
|
"sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.security.permissions/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net461/System.Security.Permissions.dll",
|
||||||
|
"lib/net461/System.Security.Permissions.xml",
|
||||||
|
"lib/netcoreapp3.0/System.Security.Permissions.dll",
|
||||||
|
"lib/netcoreapp3.0/System.Security.Permissions.xml",
|
||||||
|
"lib/netstandard2.0/System.Security.Permissions.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.Permissions.xml",
|
||||||
|
"ref/net461/System.Security.Permissions.dll",
|
||||||
|
"ref/net461/System.Security.Permissions.xml",
|
||||||
|
"ref/netcoreapp3.0/System.Security.Permissions.dll",
|
||||||
|
"ref/netcoreapp3.0/System.Security.Permissions.xml",
|
||||||
|
"ref/netstandard2.0/System.Security.Permissions.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.Permissions.xml",
|
||||||
|
"system.security.permissions.4.7.0.nupkg.sha512",
|
||||||
|
"system.security.permissions.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.security.principal.windows/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net46/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/net461/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/net461/System.Security.Principal.Windows.xml",
|
||||||
|
"lib/netstandard1.3/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"lib/uap10.0.16299/_._",
|
||||||
|
"ref/net46/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/net461/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/net461/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/netstandard1.3/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/uap10.0.16299/_._",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/uap10.0.16299/_._",
|
||||||
|
"system.security.principal.windows.4.7.0.nupkg.sha512",
|
||||||
|
"system.security.principal.windows.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Text.Encoding.CodePages/4.4.0": {
|
||||||
|
"sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.text.encoding.codepages/4.4.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/MonoAndroid10/_._",
|
||||||
|
"lib/MonoTouch10/_._",
|
||||||
|
"lib/net46/System.Text.Encoding.CodePages.dll",
|
||||||
|
"lib/net461/System.Text.Encoding.CodePages.dll",
|
||||||
|
"lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||||
|
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||||
|
"lib/xamarinios10/_._",
|
||||||
|
"lib/xamarinmac20/_._",
|
||||||
|
"lib/xamarintvos10/_._",
|
||||||
|
"lib/xamarinwatchos10/_._",
|
||||||
|
"ref/MonoAndroid10/_._",
|
||||||
|
"ref/MonoTouch10/_._",
|
||||||
|
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||||
|
"ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||||
|
"ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
|
||||||
|
"ref/xamarinios10/_._",
|
||||||
|
"ref/xamarinmac20/_._",
|
||||||
|
"ref/xamarintvos10/_._",
|
||||||
|
"ref/xamarinwatchos10/_._",
|
||||||
|
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||||
|
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||||
|
"system.text.encoding.codepages.4.4.0.nupkg.sha512",
|
||||||
|
"system.text.encoding.codepages.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Windows.Extensions/4.7.0": {
|
||||||
|
"sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.windows.extensions/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/netcoreapp3.0/System.Windows.Extensions.dll",
|
||||||
|
"lib/netcoreapp3.0/System.Windows.Extensions.xml",
|
||||||
|
"ref/netcoreapp3.0/System.Windows.Extensions.dll",
|
||||||
|
"ref/netcoreapp3.0/System.Windows.Extensions.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
|
||||||
|
"system.windows.extensions.4.7.0.nupkg.sha512",
|
||||||
|
"system.windows.extensions.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net5.0": [
|
||||||
|
"MySql.Data >= 8.0.26",
|
||||||
|
"Newtonsoft.Json >= 13.0.1",
|
||||||
|
"json.net >= 1.0.33"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"/home/rudi/.nuget/packages/": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj",
|
||||||
|
"projectName": "NightmareCoreWeb2",
|
||||||
|
"projectPath": "/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj",
|
||||||
|
"packagesPath": "/home/rudi/.nuget/packages/",
|
||||||
|
"outputPath": "/home/rudi/Projects/NightmareCoreWeb2/obj/",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"/home/rudi/.nuget/NuGet/NuGet.Config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net5.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"/home/rudi/.nuget/NuGet/Newtonsoft": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net5.0": {
|
||||||
|
"targetAlias": "net5.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net5.0": {
|
||||||
|
"targetAlias": "net5.0",
|
||||||
|
"dependencies": {
|
||||||
|
"MySql.Data": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[8.0.26, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.1, )"
|
||||||
|
},
|
||||||
|
"json.net": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[1.0.33, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.205/RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
30
obj/project.nuget.cache
Normal file
30
obj/project.nuget.cache
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "Y4hEy00s85g+aRDNP6izxdqAsyfN1kFZ1KctPfXXHgrLWnM2Z5RCxmyLmVb36sMq937KAFpr2vVWiE8ps1MT6Q==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "/home/rudi/Projects/NightmareCoreWeb2/NightmareCoreWeb2.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"/home/rudi/.nuget/packages/bouncycastle.netcore/1.8.5/bouncycastle.netcore.1.8.5.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/google.protobuf/3.14.0/google.protobuf.3.14.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/json.net/1.0.33/json.net.1.0.33.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/k4os.compression.lz4/1.1.11/k4os.compression.lz4.1.1.11.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/k4os.compression.lz4.streams/1.1.11/k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/k4os.hash.xxhash/1.0.6/k4os.hash.xxhash.1.0.6.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/microsoft.netcore.platforms/3.1.0/microsoft.netcore.platforms.3.1.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/microsoft.win32.systemevents/4.7.0/microsoft.win32.systemevents.4.7.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/mysql.data/8.0.26/mysql.data.8.0.26.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.configuration.configurationmanager/4.4.1/system.configuration.configurationmanager.4.4.1.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.drawing.common/4.7.0/system.drawing.common.4.7.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.security.accesscontrol/4.7.0/system.security.accesscontrol.4.7.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.security.permissions/4.7.0/system.security.permissions.4.7.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.text.encoding.codepages/4.4.0/system.text.encoding.codepages.4.4.0.nupkg.sha512",
|
||||||
|
"/home/rudi/.nuget/packages/system.windows.extensions/4.7.0/system.windows.extensions.4.7.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
352
wwwroot/css/site.css
Normal file
352
wwwroot/css/site.css
Normal file
@ -0,0 +1,352 @@
|
|||||||
|
/**
|
||||||
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
font-family: 'Roboto', 'Helvetica', sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card > * {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card .card__supporting-text {
|
||||||
|
margin: 40px;
|
||||||
|
-webkit-flex-grow: 1;
|
||||||
|
-ms-flex-positive: 1;
|
||||||
|
flex-grow: 1;
|
||||||
|
padding: 0;
|
||||||
|
color: inherit;
|
||||||
|
width: calc(100% - 80px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo.demo .card__supporting-text h4 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card__actions {
|
||||||
|
margin: 0;
|
||||||
|
padding: 4px 40px;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card__actions a {
|
||||||
|
color: #00BCD4;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card__actions a:hover,
|
||||||
|
.demo .card__actions a:active {
|
||||||
|
color: inherit;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card__supporting-text + .card__actions {
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo #add {
|
||||||
|
position: absolute;
|
||||||
|
right: 40px;
|
||||||
|
top: 36px;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__content section:not(:last-of-type) {
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section.section--center {
|
||||||
|
max-width: 860px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo #features section.section--center {
|
||||||
|
max-width: 620px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section > header {
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section > .section__play-btn {
|
||||||
|
min-height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section > header > .material-icons {
|
||||||
|
font-size: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section > button {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 99;
|
||||||
|
top: 8px;
|
||||||
|
right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section .section__circle {
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-justify-content: flex-start;
|
||||||
|
-ms-flex-pack: start;
|
||||||
|
justify-content: flex-start;
|
||||||
|
-webkit-flex-grow: 0;
|
||||||
|
-ms-flex-positive: 0;
|
||||||
|
flex-grow: 0;
|
||||||
|
-webkit-flex-shrink: 1;
|
||||||
|
-ms-flex-negative: 1;
|
||||||
|
flex-shrink: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section .section__text {
|
||||||
|
-webkit-flex-grow: 1;
|
||||||
|
-ms-flex-positive: 1;
|
||||||
|
flex-grow: 1;
|
||||||
|
-webkit-flex-shrink: 0;
|
||||||
|
-ms-flex-negative: 0;
|
||||||
|
flex-shrink: 0;
|
||||||
|
padding-top: 8px;
|
||||||
|
}
|
||||||
|
.demo .layout__header-row {
|
||||||
|
padding-left: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout.is-small-screen .layout__header-row h3 {
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__tab-bar-button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout.is-small-screen .layout__tab-bar .button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout:not(.is-small-screen) .layout__tab-bar,
|
||||||
|
.demo .layout:not(.is-small-screen) .layout__tab-bar-container {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__tab-bar-container {
|
||||||
|
height: 64px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__tab-bar {
|
||||||
|
padding: 0;
|
||||||
|
padding-left: 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__tab-bar .layout__tab {
|
||||||
|
height: 64px;
|
||||||
|
line-height: 64px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__tab-bar .layout__tab.is-active::after {
|
||||||
|
background-color: white;
|
||||||
|
height: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo main > .layout__tab-panel {
|
||||||
|
padding: 8px;
|
||||||
|
padding-top: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card {
|
||||||
|
height: auto;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.demo section .section__text h5 {
|
||||||
|
font-size: inherit;
|
||||||
|
margin: 0;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section .section__text a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section .section__circle-container > .section__circle-container__circle {
|
||||||
|
width: 64px;
|
||||||
|
height: 64px;
|
||||||
|
border-radius: 32px;
|
||||||
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section.section--footer .section__circle--big {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
border-radius: 50px;
|
||||||
|
margin: 8px 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .is-small-screen section.section--footer .section__circle--big {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 25px;
|
||||||
|
margin: 8px 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section.section--footer {
|
||||||
|
padding: 64px 0;
|
||||||
|
margin: 0 -8px -8px -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo section.section--center .section__text:not(:last-child) {
|
||||||
|
border-bottom: 1px solid rgba(0, 0, 0, .13);
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .card .card__supporting-text > h3:first-child {
|
||||||
|
margin-bottom: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .layout__tab-panel:not(#overview) {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo #features section {
|
||||||
|
margin-bottom: 72px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.demo #features h4, #features h5 {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .toc {
|
||||||
|
border-left: 4px solid #C1EEF4;
|
||||||
|
margin: 24px;
|
||||||
|
padding: 0;
|
||||||
|
padding-left: 8px;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .toc h4 {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .toc a {
|
||||||
|
color: #4DD0E1;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 28px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo .menu__container {
|
||||||
|
z-index: 99;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left, .right {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.middle {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
padding: 1px;
|
||||||
|
text-align: center;
|
||||||
|
background: #150ebc;
|
||||||
|
color: white;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* Start Bootstrap - Simple Sidebar (https://startbootstrap.com/template-overviews/simple-sidebar)
|
||||||
|
* Copyright 2013-2019 Start Bootstrap
|
||||||
|
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-simple-sidebar/blob/master/LICENSE)
|
||||||
|
*/
|
||||||
|
body {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar-wrapper {
|
||||||
|
min-height: 100vh;
|
||||||
|
margin-left: -15rem;
|
||||||
|
-webkit-transition: margin .25s ease-out;
|
||||||
|
-moz-transition: margin .25s ease-out;
|
||||||
|
-o-transition: margin .25s ease-out;
|
||||||
|
transition: margin .25s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar-wrapper .sidebar-heading {
|
||||||
|
padding: 0.875rem 1.25rem;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidebar-wrapper .list-group {
|
||||||
|
width: 15rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-content-wrapper {
|
||||||
|
min-width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wrapper.toggled #sidebar-wrapper {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
#sidebar-wrapper {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-content-wrapper {
|
||||||
|
min-width: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wrapper.toggled #sidebar-wrapper {
|
||||||
|
margin-left: -15rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
wwwroot/favicon.ico
Normal file
BIN
wwwroot/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.3 KiB |
4
wwwroot/js/site.js
Normal file
4
wwwroot/js/site.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||||
|
// for details on configuring this project to bundle and minify static web assets.
|
||||||
|
|
||||||
|
// Write your JavaScript code.
|
||||||
22
wwwroot/lib/bootstrap/LICENSE
Normal file
22
wwwroot/lib/bootstrap/LICENSE
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2011-2018 Twitter, Inc.
|
||||||
|
Copyright (c) 2011-2018 The Bootstrap Authors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
3719
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
vendored
Normal file
3719
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
vendored
Normal file
1
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
7
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
vendored
Normal file
7
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
vendored
Normal file
1
wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
331
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
vendored
Normal file
331
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css
vendored
Normal file
@ -0,0 +1,331 @@
|
|||||||
|
/*!
|
||||||
|
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
|
||||||
|
* Copyright 2011-2019 The Bootstrap Authors
|
||||||
|
* Copyright 2011-2019 Twitter, Inc.
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||||
|
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||||
|
*/
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-family: sans-serif;
|
||||||
|
line-height: 1.15;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #212529;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
[tabindex="-1"]:focus {
|
||||||
|
outline: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
box-sizing: content-box;
|
||||||
|
height: 0;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
abbr[title],
|
||||||
|
abbr[data-original-title] {
|
||||||
|
text-decoration: underline;
|
||||||
|
-webkit-text-decoration: underline dotted;
|
||||||
|
text-decoration: underline dotted;
|
||||||
|
cursor: help;
|
||||||
|
border-bottom: 0;
|
||||||
|
-webkit-text-decoration-skip-ink: none;
|
||||||
|
text-decoration-skip-ink: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
address {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-style: normal;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul,
|
||||||
|
dl {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol ol,
|
||||||
|
ul ul,
|
||||||
|
ol ul,
|
||||||
|
ul ol {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub,
|
||||||
|
sup {
|
||||||
|
position: relative;
|
||||||
|
font-size: 75%;
|
||||||
|
line-height: 0;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub {
|
||||||
|
bottom: -.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
top: -.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #007bff;
|
||||||
|
text-decoration: none;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #0056b3;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]):not([tabindex]) {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]):not([tabindex]):focus {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre,
|
||||||
|
code,
|
||||||
|
kbd,
|
||||||
|
samp {
|
||||||
|
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
vertical-align: middle;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
overflow: hidden;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
caption {
|
||||||
|
padding-top: 0.75rem;
|
||||||
|
padding-bottom: 0.75rem;
|
||||||
|
color: #6c757d;
|
||||||
|
text-align: left;
|
||||||
|
caption-side: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus {
|
||||||
|
outline: 1px dotted;
|
||||||
|
outline: 5px auto -webkit-focus-ring-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
button,
|
||||||
|
select,
|
||||||
|
optgroup,
|
||||||
|
textarea {
|
||||||
|
margin: 0;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
input {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
select {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
word-wrap: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
[type="button"],
|
||||||
|
[type="reset"],
|
||||||
|
[type="submit"] {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:not(:disabled),
|
||||||
|
[type="button"]:not(:disabled),
|
||||||
|
[type="reset"]:not(:disabled),
|
||||||
|
[type="submit"]:not(:disabled) {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
button::-moz-focus-inner,
|
||||||
|
[type="button"]::-moz-focus-inner,
|
||||||
|
[type="reset"]::-moz-focus-inner,
|
||||||
|
[type="submit"]::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="radio"],
|
||||||
|
input[type="checkbox"] {
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="date"],
|
||||||
|
input[type="time"],
|
||||||
|
input[type="datetime-local"],
|
||||||
|
input[type="month"] {
|
||||||
|
-webkit-appearance: listbox;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
overflow: auto;
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
min-width: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: .5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: inherit;
|
||||||
|
color: inherit;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
progress {
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="number"]::-webkit-inner-spin-button,
|
||||||
|
[type="number"]::-webkit-outer-spin-button {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="search"] {
|
||||||
|
outline-offset: -2px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="search"]::-webkit-search-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-file-upload-button {
|
||||||
|
font: inherit;
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
output {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
summary {
|
||||||
|
display: list-item;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
template {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[hidden] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
||||||
1
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
vendored
Normal file
1
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
8
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
vendored
Normal file
8
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/*!
|
||||||
|
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
|
||||||
|
* Copyright 2011-2019 The Bootstrap Authors
|
||||||
|
* Copyright 2011-2019 Twitter, Inc.
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||||
|
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||||
|
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
||||||
|
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
||||||
1
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
vendored
Normal file
1
wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
10038
wwwroot/lib/bootstrap/dist/css/bootstrap.css
vendored
Normal file
10038
wwwroot/lib/bootstrap/dist/css/bootstrap.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
vendored
Normal file
1
wwwroot/lib/bootstrap/dist/css/bootstrap.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user